Florian valade commited on
Commit
43e76c1
·
1 Parent(s): 72b2f6d

Add .gitignore and clean up repository

Browse files
.gitignore ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ build/
9
+ develop-eggs/
10
+ dist/
11
+ downloads/
12
+ eggs/
13
+ .eggs/
14
+ lib/
15
+ lib64/
16
+ parts/
17
+ sdist/
18
+ var/
19
+ wheels/
20
+ *.egg-info/
21
+ .installed.cfg
22
+ *.egg
23
+
24
+ # Virtual Environment
25
+ venv/
26
+ ENV/
27
+
28
+ # IDEs
29
+ .vscode/
30
+ .idea/
31
+
32
+ # Models and large files
33
+ *.pt
34
+ *.bin
35
+ *.pth
36
+ checkpoints/
37
+
38
+ # OS
39
+ .DS_Store
__pycache__/app.cpython-310.pyc DELETED
Binary file (7.34 kB)
 
src/__pycache__/__init__.cpython-310.pyc DELETED
Binary file (150 Bytes)
 
src/__pycache__/inference.cpython-310.pyc DELETED
Binary file (15 kB)
 
src/__pycache__/model_adapters.cpython-310.pyc DELETED
Binary file (5.12 kB)
 
src/__pycache__/model_config.cpython-310.pyc DELETED
Binary file (3.05 kB)