-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
64 lines (56 loc) · 894 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ignore any cache folders or files
__pycache__/
data/__pycache__/
models/__pycache__/
.ipynb_checkpoints
*.DS_Store
.Rhistory
#ignore any environments
*.pyc
.env
.venv
env/
venv/
psp_venv/
/psp_gcp/venv
/psp_aws
/*venv
#ignore dataset files and models
/psp_gcp/*.npy
/psp_gcp/*.gz
/psp_gcp/*.json
/data/*.npy
/data/*.gz
/models/*.npy
/models/*.h5
/psp_gcp/*.h5
**/saved_models
*.npy
*.gz
*.csv
*.pckl
*.pkl
*.ipynb
*.docx
#ignore local folder used to store models
/saved_models
/old_stuff
/psp_gcp.egg-info
/psp/checkpoints/
/checkpoints
/output
/psp/output/
/psp_gcp/output/
/psp/logs/
/psp_gcp/data/*.h5
#ignore json files, specifically json storing cloud credentials
*.json
#dont ignore config files
!/config/*json
!/psp_gcp/config/*json
#dont ignore results directory and its files
!/results/*.pckl
!/results/*.json
!/results/*.csv
#ignore secrets script
/psp_gcp/config/secrets.sh