-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathnew_project.py
18 lines (15 loc) · 858 Bytes
/
new_project.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import sys
from pathlib import Path
from shutil import copytree, ignore_patterns
# Code from https://github.com/victoresque/pytorch-template/blob/master/new_project.py
# This script initializes new pytorch project with the template files.
# Run `python new_project.py ../MyNewProject` then new project named
# MyNewProject will be made
current_dir = Path()
assert (current_dir / 'new_project.py').is_file(), 'Script should be executed in the pytorch-template directory'
assert len(sys.argv) == 2, 'Specify a name for the new project. Example: python3 new_project.py MyNewProject'
project_name = Path(sys.argv[1])
target_dir = current_dir / project_name
ignore = [".git", "experiments", "new_project.py", "__pycache__"]
copytree(current_dir, target_dir, ignore=ignore_patterns(*ignore))
print('New project initialized at', target_dir.absolute().resolve())