We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 612393b commit 2770711Copy full SHA for 2770711
scripts/update_ml_tutorials.py
@@ -57,7 +57,9 @@ def create_tutorial_files():
57
files_and_headers = []
58
for file in readme_files:
59
model_name = file.parts[-2]
60
- tutorial_path = Path(__file__).resolve().parent.parent / 'docs' / 'source' / 'guide' / 'ml_tutorials' / f'{model_name}.md'
+ tutorial_path = (
61
+ Path(__file__).resolve().parent.parent / 'docs' / 'source' / 'guide' / 'ml_tutorials' / f'{model_name}.md'
62
+ )
63
tutorial_dir = os.path.dirname(tutorial_path)
64
os.makedirs(tutorial_dir, exist_ok=True)
65
0 commit comments