essential files only
Browse files- .DS_Store +0 -0
- .gitattributes +1 -0
- .gitignore +13 -0
.DS_Store
ADDED
Binary file (8.2 kB). View file
|
|
.gitattributes
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
demo_audio/1st-page.wav filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
cat > .gitignore << EOF
|
2 |
+
# Binary and large files
|
3 |
+
*.pkl
|
4 |
+
*.mp4
|
5 |
+
*.npy
|
6 |
+
# Demo binary files
|
7 |
+
demo/**/*.mp4
|
8 |
+
demo/**/*.npy
|
9 |
+
# Large model files
|
10 |
+
experiments/
|
11 |
+
# Any other large files
|
12 |
+
visualise/teaser_01.png
|
13 |
+
EOF
|