Spaces:
Runtime error
Runtime error
Duplicate from abidlabs/min-dalle
Browse filesCo-authored-by: Abubakar Abid <[email protected]>
- .gitattributes +27 -0
- .gitignore +19 -0
- README.md +16 -0
- app.py +6 -0
- examples/astronaut-horse.jpg +0 -0
- examples/astronaut-mars.jpg +0 -0
- examples/cleopatra-iphone.jpg +0 -0
- examples/dali-walle.jpg +0 -0
- examples/elmo-riot.jpg +0 -0
- examples/funeral-whole-foods.jpg +0 -0
- examples/godzilla-trial.jpg +0 -0
- examples/gollum.jpg +0 -0
- examples/jesus-talent.jpg +0 -0
- examples/lofi-nuclear-war.jpg +0 -0
- examples/marx-slimed.jpg +0 -0
- examples/moai-statue.jpg +0 -0
- examples/nuclear-broccoli.jpg +0 -0
- examples/rusty-iron-man.jpg +0 -0
- examples/scientists-rhyme.jpg +0 -0
- examples/singularity.jpg +0 -0
- requirements.txt +0 -0
.gitattributes
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
6 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
7 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
8 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
9 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
10 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
11 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
12 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
13 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
14 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
15 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
16 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
17 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
18 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
19 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
20 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
21 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
22 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
23 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
24 |
+
*.xz 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
|
.gitignore
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
**/__pycache__/
|
2 |
+
**/.cache/
|
3 |
+
**/*.pkl
|
4 |
+
**/.DS*
|
5 |
+
**/*.pt
|
6 |
+
*.mlpackage
|
7 |
+
**/*.ckpt
|
8 |
+
.vscode
|
9 |
+
**/.ipynb_checkpoints
|
10 |
+
**/generated
|
11 |
+
**/pretrained
|
12 |
+
**/*.msgpack
|
13 |
+
*.egg-info/
|
14 |
+
*.egg
|
15 |
+
dist
|
16 |
+
build
|
17 |
+
README
|
18 |
+
.cog
|
19 |
+
cog
|
README.md
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: min(DALL·E)
|
3 |
+
metaTitle: min(DALL·E)
|
4 |
+
emoji: ⚡️ 🥑 ⚡️
|
5 |
+
colorFrom: yellow
|
6 |
+
colorTo: green
|
7 |
+
sdk: gradio
|
8 |
+
sdk_version: 3.3.1
|
9 |
+
app_file: app.py
|
10 |
+
pinned: true
|
11 |
+
license: mit
|
12 |
+
python_version: 3.10.5
|
13 |
+
models:
|
14 |
+
- kuprel/min-dalle
|
15 |
+
duplicated_from: abidlabs/min-dalle
|
16 |
+
---
|
app.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
with gr.Blocks() as demo:
|
4 |
+
gr.Gallery(["examples/dali-walle.jpg"])
|
5 |
+
|
6 |
+
demo.launch()
|
examples/astronaut-horse.jpg
ADDED
![]() |
examples/astronaut-mars.jpg
ADDED
![]() |
examples/cleopatra-iphone.jpg
ADDED
![]() |
examples/dali-walle.jpg
ADDED
![]() |
examples/elmo-riot.jpg
ADDED
![]() |
examples/funeral-whole-foods.jpg
ADDED
![]() |
examples/godzilla-trial.jpg
ADDED
![]() |
examples/gollum.jpg
ADDED
![]() |
examples/jesus-talent.jpg
ADDED
![]() |
examples/lofi-nuclear-war.jpg
ADDED
![]() |
examples/marx-slimed.jpg
ADDED
![]() |
examples/moai-statue.jpg
ADDED
![]() |
examples/nuclear-broccoli.jpg
ADDED
![]() |
examples/rusty-iron-man.jpg
ADDED
![]() |
examples/scientists-rhyme.jpg
ADDED
![]() |
examples/singularity.jpg
ADDED
![]() |
requirements.txt
ADDED
File without changes
|