Skip to content

Commit 41e1d66

Browse files
committed
fix docs building
1 parent a7ee305 commit 41e1d66

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

user_guides/basic_usage/03_automl.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,14 @@
117117
"""
118118
## Logging Settings
119119
120-
The important thing is what assets you want to save during the pipeline auto-configuration process. You can control it with %mddoclink(class,configs,LoggingConfig). Default settings are the following:
120+
The important thing is what assets you want to save during the pipeline auto-configuration process. You can control it with %mddoclink(class,configs,LoggingConfig):
121121
"""
122122

123123
# %%
124+
from pathlib import Path
124125
from autointent.configs import LoggingConfig
125126

126-
logging_config = LoggingConfig(run_name=None, dirpath=None, dump_dir=None, dump_modules=False, clear_ram=False)
127+
logging_config = LoggingConfig(project_dir=Path.cwd() / "runs", dump_modules=False, clear_ram=False)
127128
custom_pipeline.set_config(logging_config)
128129

129130
# %% [markdown]

0 commit comments

Comments
 (0)