Mrttbn commited on
Commit
4bb2899
·
verified ·
1 Parent(s): ca45fd0

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +53 -0
.gitignore ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ venv/
9
+ ENV/
10
+ build/
11
+ develop-eggs/
12
+ dist/
13
+ downloads/
14
+ eggs/
15
+ .eggs/
16
+ lib/
17
+ lib64/
18
+ parts/
19
+ sdist/
20
+ var/
21
+ wheels/
22
+ *.egg-info/
23
+ .installed.cfg
24
+ *.egg
25
+
26
+ # Jupyter Notebook
27
+ .ipynb_checkpoints
28
+ *.ipynb
29
+
30
+ # Model dosyaları (çok büyük olabilir)
31
+ models/
32
+ *.bin
33
+ *.pt
34
+ *.pth
35
+
36
+ # Data dosyaları
37
+ *.csv
38
+ *.json
39
+ data/
40
+
41
+ # IDE
42
+ .vscode/
43
+ .idea/
44
+ *.swp
45
+ *.swo
46
+
47
+ # OS
48
+ .DS_Store
49
+ Thumbs.db
50
+
51
+ # Gradio
52
+ gradio_cached_examples/
53
+ flagged/