-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
58 lines (49 loc) · 808 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
# I have included a wide range of files that typically need to be ignored
# Note that there is nothing stopping you from tracking one of these filetypes explicitly:
# `git add -f file.filetype`
# From that point the file will be tracked in git and treated like a normal file, even if the filetype is in .gitignore
# Machine Learning artifacts
*.pkl
*.joblib
*.model
results/checkpoint*
runs/
wandb/
# Environment and Config
venv/
.venv/
*.env
# Data files
*.csv
*.tsv
*.xlsx
~$*
*.h5
*.bak
*.tmp
*.arrow
*dataset_info.json
*state.json
# OS files
Thumbs.db
# Jupyter Notebook
.ipynb_checkpoints/
dev.ipynb
# Visual Studio Code settings
.vscode/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*.pyc
*.pyo
*.egg
*.egg-info/
dist/
build/
*.so
# Logs
logs/
*.log
# Archive
archive/
*.zip