Skip to content

Commit

Permalink
folder script added
Browse files Browse the repository at this point in the history
  • Loading branch information
Yondijr committed Jan 11, 2021
1 parent a4e1f25 commit 89f630d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions create_empty_folders.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import os

path1 = "trained_models"
path2 = "build_data"
path3 = "LAMBADA"
path4 = "original_data"
path5 = "saves"

try:
os.mkdir(path1)
except:
pass
try:
os.mkdir(path2)
except:
pass
try:
os.mkdir(path3)
except:
pass
try:
os.mkdir(path4)
except:
pass
try:
os.mkdir(path5)
except:
pass

0 comments on commit 89f630d

Please sign in to comment.