gitignore and git lfs
Browse files- .gitattributes +1 -0
- .gitignore +21 -0
.gitattributes
CHANGED
|
@@ -25,3 +25,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.ipynb_checkpoints
|
| 2 |
+
*.pyc
|
| 3 |
+
*.png
|
| 4 |
+
*.jpg
|
| 5 |
+
*.gif
|
| 6 |
+
|
| 7 |
+
!example_input.png
|
| 8 |
+
|
| 9 |
+
# Ignore chessboard input images and tile outputs
|
| 10 |
+
chessboards/
|
| 11 |
+
tiles/
|
| 12 |
+
|
| 13 |
+
# Ignore reddit username/password config file
|
| 14 |
+
auth_config.py
|
| 15 |
+
praw.ini
|
| 16 |
+
|
| 17 |
+
# Ignore tracking files
|
| 18 |
+
*.txt
|
| 19 |
+
!requirements.txt
|
| 20 |
+
|
| 21 |
+
!readme_images/*
|