Skip to content

Commit 3bdbb3d

Browse files
authored
Merge pull request #115 from openvinotoolkit/rhecker/add-flux-models
Adds flux models
2 parents 9374a0c + e2b4d94 commit 3bdbb3d

File tree

2 files changed

+70
-4
lines changed

2 files changed

+70
-4
lines changed

assets/manifest.json

+69-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"description": "Generate images with Dreamshaper V7",
4444
"task": "text-to-image",
4545
"author": "OpenVINO",
46-
"collection": "image-generation-6763eab8ac097237330c78c5"
46+
"collection": "image-generation-67697d9952fb1eee4a252aa8"
4747
}
4848
],
4949
"all_models": [
@@ -1710,7 +1710,7 @@
17101710
"author": "OpenVINO",
17111711
"collection": "llm-6687aaa2abca3bbcec71a9bd"
17121712
},
1713-
{
1713+
{
17141714
"name": "LCM Dreamshaper V7",
17151715
"id": "LCM_Dreamshaper_v7-int8-ov",
17161716
"fileSize": 2292848281,
@@ -1719,7 +1719,73 @@
17191719
"description": "Generate images with Dreamshaper V7",
17201720
"task": "text-to-image",
17211721
"author": "OpenVINO",
1722-
"collection": "image-generation-6763eab8ac097237330c78c5"
1722+
"collection": "image-generation-67697d9952fb1eee4a252aa8"
1723+
},
1724+
{
1725+
"name": "Stable Diffusion V1 5",
1726+
"id": "stable-diffusion-v1-5-int8-ov",
1727+
"fileSize": 2292743197,
1728+
"optimizationPrecision": "int8",
1729+
"contextWindow": 0,
1730+
"description": "Generate images with Stable Diffusion V1 5",
1731+
"task": "text-to-image",
1732+
"author": "OpenVINO",
1733+
"collection": "image-generation-67697d9952fb1eee4a252aa8"
1734+
},
1735+
{
1736+
"name": "Stable Diffusion V1 5",
1737+
"id": "stable-diffusion-v1-5-fp16-ov",
1738+
"fileSize": 3354879591,
1739+
"optimizationPrecision": "fp16",
1740+
"contextWindow": 0,
1741+
"description": "Generate images with Stable Diffusion V1 5",
1742+
"task": "text-to-image",
1743+
"author": "OpenVINO",
1744+
"collection": "image-generation-67697d9952fb1eee4a252aa8"
1745+
},
1746+
{
1747+
"name": "LCM Dreamshaper V7",
1748+
"id": "LCM_Dreamshaper_v7-fp16-ov",
1749+
"fileSize": 3355059343,
1750+
"optimizationPrecision": "fp16",
1751+
"contextWindow": 0,
1752+
"description": "Generate images with LCM Dreamshaper V7",
1753+
"task": "text-to-image",
1754+
"author": "OpenVINO",
1755+
"collection": "image-generation-67697d9952fb1eee4a252aa8"
1756+
},
1757+
{
1758+
"name": "FLUX.1 Schnell",
1759+
"id": "FLUX.1-schnell-fp16-ov",
1760+
"fileSize": 33737052523,
1761+
"optimizationPrecision": "fp16",
1762+
"contextWindow": 0,
1763+
"description": "Generate images with FLUX.1 Schnell",
1764+
"task": "text-to-image",
1765+
"author": "OpenVINO",
1766+
"collection": "image-generation-67697d9952fb1eee4a252aa8"
1767+
},
1768+
{
1769+
"name": "FLUX.1 Schnell",
1770+
"id": "FLUX.1-schnell-int8-ov",
1771+
"fileSize": 16894933898,
1772+
"optimizationPrecision": "int8",
1773+
"contextWindow": 0,
1774+
"description": "Generate images with FLUX.1 Schnell",
1775+
"task": "text-to-image",
1776+
"author": "OpenVINO",
1777+
"collection": "image-generation-67697d9952fb1eee4a252aa8"
1778+
},
1779+
{
1780+
"name": "FLUX.1 Schnell",
1781+
"id": "FLUX.1-schnell-int4-ov",
1782+
"fileSize": 9249942180,
1783+
"optimizationPrecision": "int4",
1784+
"contextWindow": 0,
1785+
"description": "Generate images with FLUX.1 Schnell",
1786+
"task": "text-to-image",
1787+
"author": "OpenVINO",
1788+
"collection": "image-generation-67697d9952fb1eee4a252aa8"
17231789
}
17241790
]
17251791
}

scripts/create_manifest.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ void generate() async {
205205
Collection("speech-to-text-672321d5c070537a178a8aeb", "OpenVINO", "OpenVINO", "speech", (String name) => "Transcribe video with $name"),
206206
Collection("visual-language-models-6792248a0eed57085d2b094b", "OpenVINO", "OpenVINO", "vlm", (String name) => "Understand images with $name"),
207207
Collection("llm-6687aaa2abca3bbcec71a9bd", "OpenVINO", "OpenVINO", "text-generation", (String name) => "Chat with $name"),
208-
Collection("image-generation-6763eab8ac097237330c78c5", "arendjan", "OpenVINO", "text-to-image", (String name) => "Generate images with $name"),
208+
Collection("image-generation-67697d9952fb1eee4a252aa8", "OpenVINO", "OpenVINO", "text-to-image", (String name) => "Generate images with $name"),
209209
];
210210
List<ModelInfo> models = [];
211211
for (final collection in collections) {

0 commit comments

Comments
 (0)