amongusrickroll68
commited on
Commit
•
937782c
1
Parent(s):
24f5c30
Create model_index
Browse files- model_index +38 -0
model_index
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "text-to-image-generator",
|
3 |
+
"description": "Generates realistic images based on text prompts.",
|
4 |
+
"tags": ["image generation", "text-to-image", "deep learning"],
|
5 |
+
"pipeline_tag": "image-generation",
|
6 |
+
"inputs": [
|
7 |
+
{
|
8 |
+
"name": "prompt",
|
9 |
+
"type": "string",
|
10 |
+
"description": "The text prompt to generate an image for."
|
11 |
+
}
|
12 |
+
],
|
13 |
+
"outputs": [
|
14 |
+
{
|
15 |
+
"name": "image",
|
16 |
+
"type": "image/jpeg",
|
17 |
+
"description": "The generated image."
|
18 |
+
}
|
19 |
+
],
|
20 |
+
"example": {
|
21 |
+
"prompt": "A cat sleeping on a windowsill.",
|
22 |
+
"image": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEBLAEsAAD/..."
|
23 |
+
},
|
24 |
+
"language": "python",
|
25 |
+
"dependencies": {
|
26 |
+
"tensorflow": "2.6.0",
|
27 |
+
"pillow": "8.3.2",
|
28 |
+
"numpy": "1.19.5",
|
29 |
+
"scipy": "1.7.0",
|
30 |
+
"scikit-image": "0.18.3"
|
31 |
+
},
|
32 |
+
"model": {
|
33 |
+
"url": "https://huggingface.co/models/text-to-image-generator",
|
34 |
+
"architecture": "CLIP-Guided GAN",
|
35 |
+
"framework": "tensorflow",
|
36 |
+
"tokenizer": "bert-base-uncased"
|
37 |
+
}
|
38 |
+
}
|