Spaces:
Build error
Build error
Zai commited on
Commit ·
0106647
1
Parent(s): c3aa918
added license gitigore and examples
Browse files- .gitignore +34 -0
- LICENSE +21 -0
- README.md +5 -0
- examples/finetune.py +0 -0
- examples/sample.py +0 -0
- examples/train.py +1 -0
- umi/umi.py +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
*.pyc
|
| 3 |
+
__pycache__/
|
| 4 |
+
|
| 5 |
+
# Virtual environments
|
| 6 |
+
venv/
|
| 7 |
+
env/
|
| 8 |
+
*.env/
|
| 9 |
+
|
| 10 |
+
# Jupyter Notebook
|
| 11 |
+
.ipynb_checkpoints/
|
| 12 |
+
|
| 13 |
+
# Model artifacts and data files
|
| 14 |
+
*.h5
|
| 15 |
+
*.pkl
|
| 16 |
+
*.npy
|
| 17 |
+
*.npz
|
| 18 |
+
*.csv
|
| 19 |
+
|
| 20 |
+
# Logs
|
| 21 |
+
*.log
|
| 22 |
+
|
| 23 |
+
# Ignore data directory if you store large datasets
|
| 24 |
+
data/
|
| 25 |
+
|
| 26 |
+
# Ignore model outputs
|
| 27 |
+
models/
|
| 28 |
+
|
| 29 |
+
# Ignore environment configuration files
|
| 30 |
+
.env
|
| 31 |
+
|
| 32 |
+
# Ignore system files
|
| 33 |
+
.DS_Store
|
| 34 |
+
Thumbs.db
|
LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2023 Zai
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
README.md
CHANGED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 海 (Sea)
|
| 2 |
+
|
| 3 |
+
As someone who grew up in the mountains I love sea even tough I've only been to the beach once (it was 10 years ago).
|
| 4 |
+
|
| 5 |
+
I made a diffusion model from scratch to generate images of sea and everything that's been made by mother nature.
|
examples/finetune.py
ADDED
|
File without changes
|
examples/sample.py
ADDED
|
File without changes
|
examples/train.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
from umi import Umi
|
umi/umi.py
ADDED
|
File without changes
|