Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mmengine/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def __init__(
cfg_text: Optional[str] = None,
filename: Optional[Union[str, Path]] = None,
env_variables: Optional[dict] = None,
format_python_code: bool = True,
format_python_code: bool = False
):
filename = str(filename) if isinstance(filename, Path) else filename
if cfg_dict is None:
Expand Down
2 changes: 1 addition & 1 deletion mmengine/runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def __init__(
self.logger = self.build_logger(log_level=log_level)

# Collect and log environment information.
self._log_env(env_cfg)
# self._log_env(env_cfg)

# Build `message_hub` for communication among components.
# `message_hub` can store log scalars (loss, learning rate) and
Expand Down