Spaces:
Runtime error
Runtime error
nesterus
commited on
Commit
·
ddcd8a1
1
Parent(s):
d90acf0
added .gitignore, .gitmodules
Browse files- .gitignore +109 -0
- .gitmodules +3 -0
.gitignore
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / optimized / DLL files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
ngrok-v3-stable-linux-s390x.tgz
|
| 6 |
+
|
| 7 |
+
# C extensions
|
| 8 |
+
*.so
|
| 9 |
+
|
| 10 |
+
# Distribution / packaging
|
| 11 |
+
.Python
|
| 12 |
+
build/
|
| 13 |
+
develop-eggs/
|
| 14 |
+
dist/
|
| 15 |
+
downloads/
|
| 16 |
+
eggs/
|
| 17 |
+
.eggs/
|
| 18 |
+
lib/
|
| 19 |
+
lib64/
|
| 20 |
+
parts/
|
| 21 |
+
sdist/
|
| 22 |
+
var/
|
| 23 |
+
wheels/
|
| 24 |
+
*.egg-info/
|
| 25 |
+
.installed.cfg
|
| 26 |
+
*.egg
|
| 27 |
+
|
| 28 |
+
# Jupyter Notebook checkpoints
|
| 29 |
+
**/.ipynb_checkpoints/
|
| 30 |
+
|
| 31 |
+
# Images and model weights
|
| 32 |
+
images/
|
| 33 |
+
*.png
|
| 34 |
+
*.jpg
|
| 35 |
+
*.jpeg
|
| 36 |
+
*.bmp
|
| 37 |
+
*.gif
|
| 38 |
+
*.tiff
|
| 39 |
+
*.ico
|
| 40 |
+
*.svg
|
| 41 |
+
*.eps
|
| 42 |
+
|
| 43 |
+
# Model weights and checkpoints
|
| 44 |
+
*.h5
|
| 45 |
+
*.hdf5
|
| 46 |
+
*.ckpt
|
| 47 |
+
*.pth
|
| 48 |
+
*.pt
|
| 49 |
+
*.onnx
|
| 50 |
+
|
| 51 |
+
# Python virtual environment
|
| 52 |
+
venv/
|
| 53 |
+
ENV/
|
| 54 |
+
env/
|
| 55 |
+
env.bak/
|
| 56 |
+
venv.bak/
|
| 57 |
+
|
| 58 |
+
# Editor directories and files
|
| 59 |
+
.vscode/
|
| 60 |
+
.idea/
|
| 61 |
+
*.sublime-project
|
| 62 |
+
*.sublime-workspace
|
| 63 |
+
|
| 64 |
+
# OS-specific files
|
| 65 |
+
.DS_Store
|
| 66 |
+
Thumbs.db
|
| 67 |
+
|
| 68 |
+
# Logs
|
| 69 |
+
logs/
|
| 70 |
+
*.log
|
| 71 |
+
|
| 72 |
+
# Generated files
|
| 73 |
+
*.bak
|
| 74 |
+
*.tmp
|
| 75 |
+
*.swp
|
| 76 |
+
*.swo
|
| 77 |
+
|
| 78 |
+
# Secret files
|
| 79 |
+
.env
|
| 80 |
+
.secret
|
| 81 |
+
|
| 82 |
+
# TensorBoard log files
|
| 83 |
+
runs/
|
| 84 |
+
events.out.tfevents.*
|
| 85 |
+
|
| 86 |
+
# Dataset files
|
| 87 |
+
*.csv
|
| 88 |
+
*.tsv
|
| 89 |
+
*.json
|
| 90 |
+
*.xml
|
| 91 |
+
*.zip
|
| 92 |
+
*.tar
|
| 93 |
+
*.tar.gz
|
| 94 |
+
*.tgz
|
| 95 |
+
*.bz2
|
| 96 |
+
*.7z
|
| 97 |
+
|
| 98 |
+
# Miscellaneous
|
| 99 |
+
*.ipynb
|
| 100 |
+
|
| 101 |
+
# Ignore data directories
|
| 102 |
+
data/
|
| 103 |
+
dataset/
|
| 104 |
+
datasets/
|
| 105 |
+
|
| 106 |
+
# Ignore model directories
|
| 107 |
+
models/
|
| 108 |
+
weights/
|
| 109 |
+
checkpoints/
|
.gitmodules
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[submodule "Kandinsky-3"]
|
| 2 |
+
path = Kandinsky-3
|
| 3 |
+
url = https://github.com/ai-forever/Kandinsky-3.git
|