JoeArmani
commited on
Commit
·
2831200
1
Parent(s):
9b5daff
improve batched processes, update gitignore
Browse files- .gitignore +18 -1
.gitignore
CHANGED
@@ -162,4 +162,21 @@ processed_outputs/*
|
|
162 |
|
163 |
chatbot_training/
|
164 |
checkpoints/
|
165 |
-
.DS_Store
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
chatbot_training/
|
164 |
checkpoints/
|
165 |
+
.DS_Store
|
166 |
+
__pycache__/
|
167 |
+
*.pyc
|
168 |
+
*.pyo
|
169 |
+
*.pyd
|
170 |
+
|
171 |
+
checkpoints/*
|
172 |
+
!checkpoints/.gitkeep
|
173 |
+
models/*
|
174 |
+
!models/.gitkeep
|
175 |
+
logs/*
|
176 |
+
!logs/.gitkeep
|
177 |
+
tensorboard/*
|
178 |
+
!tensorboard/.gitkeep
|
179 |
+
cache/*
|
180 |
+
!cache/.gitkeep
|
181 |
+
training_data/*
|
182 |
+
!training_data/.gitkeep
|