Upload gitignore
Browse files
gitignore
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
working.ipynb
|
2 |
+
training.py
|
3 |
+
|
4 |
+
# Compiled source #
|
5 |
+
###################
|
6 |
+
*.com
|
7 |
+
*.class
|
8 |
+
*.dll
|
9 |
+
*.exe
|
10 |
+
*.o
|
11 |
+
*.so
|
12 |
+
|
13 |
+
# Packages #
|
14 |
+
############
|
15 |
+
# it's better to unpack these files and commit the raw source because
|
16 |
+
# git has its own built in compression methods
|
17 |
+
*.7z
|
18 |
+
*.dmg
|
19 |
+
*.gz
|
20 |
+
*.iso
|
21 |
+
*.jar
|
22 |
+
*.rar
|
23 |
+
*.tar
|
24 |
+
*.zip
|
25 |
+
|
26 |
+
# Logs and databases #
|
27 |
+
######################
|
28 |
+
*.log
|
29 |
+
*.sql
|
30 |
+
*.sqlite
|
31 |
+
|
32 |
+
# OS generated files #
|
33 |
+
######################
|
34 |
+
.DS_Store
|
35 |
+
.DS_Store?
|
36 |
+
._*
|
37 |
+
.Spotlight-V100
|
38 |
+
.Trashes
|
39 |
+
ehthumbs.db
|
40 |
+
Thumbs.db
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
___pycache__/
|
45 |
+
*.pyc
|