-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
62 lines (48 loc) · 1.01 KB
/
.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
# Ignore all files in the bags directory except README.md
bags/*
!bags/README.md
# Ignore all files in the datasets directory except README.md
datasets/*
!datasets/README.md
# Ignore all files in the models directory except README.md
models/*
!models/README.md
scripts/clusters*
# Ignore all files ending with _statistics.pkl
*_statistics.pkl
# Ignore logs directory
logs
# Ignore the virtual environment
venv/
# Ignore egg-info directories
*.egg-info/
https://utexas.box.com/s/na28o53qbpucfoxb0v5802i96hv66t2v
# Ignore Python cache files
__pycache__/
*.py[cod]
*.pyo
# Ignore test cache files
tests/__pycache__/
# Ignore Jupyter Notebook checkpoints, if any
.ipynb_checkpoints
# Ignore environment variables, logs, and other generated files
.env
*.log
*.sqlite3
# Ignore compiled code
*.so
# Ignore macOS system files
.DS_Store
# Ignore IDE/editor settings
# VS Code
.vscode/
# PyCharm
.idea/
# Spyder
.spyderproject
# Jupyter Notebook metadata
.ipynb_checkpoints/
# Ignore temporary files and backup files
*.swp
*.swo
*~