DuyguJones commited on
Commit
d7a5dd5
·
1 Parent(s): beebceb

thinkforge

Browse files
Files changed (1) hide show
  1. .gitignore +105 -0
.gitignore ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Virtual Environment
2
+ venv/
3
+ env/
4
+ .env
5
+
6
+ # Python cache files
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+ *.so
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+
28
+ # IDE files
29
+ .idea/
30
+ .vscode/
31
+ *.swp
32
+ *.swo
33
+
34
+ # Jupyter Notebook
35
+ .ipynb_checkpoints
36
+
37
+ # OS specific
38
+ .DS_Store
39
+ Thumbs.db
40
+
41
+ # Project specific
42
+ logs/
43
+ data/
44
+ *.log
45
+ *.sqlite
46
+ *.db
47
+
48
+ # Hugging Face specific
49
+ *.safetensors
50
+ *.bin
51
+ *.h5
52
+
53
+ # Unit test / coverage reports
54
+ htmlcov/
55
+ .tox/
56
+ .nox/
57
+ .coverage
58
+ .coverage.*
59
+ .cache
60
+ nosetests.xml
61
+ coverage.xml
62
+ *.cover
63
+ .hypothesis/
64
+ .pytest_cache/
65
+ pytest-*.xml
66
+
67
+ # Logs
68
+ *.log
69
+ logs/
70
+ log/
71
+
72
+ # Environment variables
73
+ .env
74
+ .env.local
75
+ .env.development.local
76
+ .env.test.local
77
+ .env.production.local
78
+
79
+ # macOS specific
80
+ .AppleDouble
81
+ .LSOverride
82
+ Icon
83
+ ._*
84
+ .DocumentRevisions-V100
85
+ .fseventsd
86
+ .Spotlight-V100
87
+ .TemporaryItems
88
+ .Trashes
89
+ .VolumeIcon.icns
90
+ .com.apple.timemachine.donotpresent
91
+
92
+ # AI/model files
93
+ *.h5
94
+ *.pb
95
+ *.onnx
96
+ *.tflite
97
+ *.pt
98
+ *.pth
99
+ *.weights
100
+
101
+ # Temporary files
102
+ tmp/
103
+ temp/
104
+ .tmp
105
+ *.tmp