Skip to content

Commit

Permalink
avoid directory conflict on windows (#2345)
Browse files Browse the repository at this point in the history
CVS-150697
  • Loading branch information
eaidova authored Sep 2, 2024
1 parent 1feed47 commit 593da6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
"outputs": [],
"source": [
"# Create directories for models files\n",
"model_dir = Path(\"model\")\n",
"model_dir = Path(\"is-model\")\n",
"model_dir.mkdir(exist_ok=True)\n",
"\n",
"# Create directory for TensorFlow model\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
"outputs": [],
"source": [
"# Create directories for models files\n",
"model_dir = Path(\"model\")\n",
"model_dir = Path(\"od-model\")\n",
"model_dir.mkdir(exist_ok=True)\n",
"\n",
"# Create directory for TensorFlow model\n",
Expand Down

0 comments on commit 593da6b

Please sign in to comment.