Skip to content

Commit

Permalink
[examples/flax/language-modeling] set loglevel (#15129)
Browse files Browse the repository at this point in the history
  • Loading branch information
stas00 authored Jan 13, 2022
1 parent 7483717 commit 762416f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/flax/language-modeling/run_mlm_flax.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def main():
# Setup logging
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
level="NOTSET",
level=logging.INFO,
datefmt="[%X]",
)

Expand Down
2 changes: 1 addition & 1 deletion examples/flax/language-modeling/run_t5_mlm_flax.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def main():
# Setup logging
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
level="NOTSET",
level=logging.INFO,
datefmt="[%X]",
)

Expand Down

0 comments on commit 762416f

Please sign in to comment.