Upload 2 files
Browse files- model.py +37 -0
- requirements.txt +2 -0
model.py
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from multit2i import find_model_list
|
2 |
+
|
3 |
+
models = [
|
4 |
+
'stabilityai/stable-diffusion-3.5-large-turbo',
|
5 |
+
'black-forest-labs/FLUX.1-dev',
|
6 |
+
'votepurchase/kivotos-xl-2.',
|
7 |
+
'stabilityai/stable-diffusion-3.5-large',
|
8 |
+
'yodayo-ai/clandestine-xl-1.0',
|
9 |
+
'yodayo-ai/kivotos-xl-2.0',
|
10 |
+
'yodayo-ai/holodayo-xl-2.1',
|
11 |
+
'cagliostrolab/animagine-xl-3.1',
|
12 |
+
'votepurchase/ponyDiffusionV6XL',
|
13 |
+
'eienmojiki/Anything-XL',
|
14 |
+
'eienmojiki/Starry-XL-v5.2',
|
15 |
+
"digiplay/MilkyWonderland_v1",
|
16 |
+
'digiplay/majicMIX_sombre_v2',
|
17 |
+
'digiplay/majicMIX_realistic_v7',
|
18 |
+
'votepurchase/counterfeitV30_v30',
|
19 |
+
'Meina/MeinaMix_V11',
|
20 |
+
'KBlueLeaf/Kohaku-XL-Epsilon-rev3',
|
21 |
+
'KBlueLeaf/Kohaku-XL-Zeta',
|
22 |
+
'kayfahaarukku/UrangDiffusion-1.4',
|
23 |
+
'Eugeoter/artiwaifu-diffusion-2.0',
|
24 |
+
'Raelina/Rae-Diffusion-XL-V2',
|
25 |
+
'Raelina/Raemu-XL-V4',
|
26 |
+
]
|
27 |
+
|
28 |
+
#models = find_model_list("Disty0", [], "", "last_modified", 100)
|
29 |
+
|
30 |
+
|
31 |
+
# Examples:
|
32 |
+
#models = ['yodayo-ai/kivotos-xl-2.0', 'yodayo-ai/holodayo-xl-2.1'] # specific models
|
33 |
+
#models = find_model_list("John6666", [], "", "last_modified", 20) # John6666's latest 20 models
|
34 |
+
models = find_model_list("John6666", ["anime"], "", "last_modified", 20) # John6666's latest 20 models with 'anime' tag
|
35 |
+
models = find_model_list("John6666", [], "anime", "last_modified", 20) # John6666's latest 20 models without 'anime' tag
|
36 |
+
models = find_model_list("", [], "", "last_modified", 20) # latest 20 text-to-image models of huggingface
|
37 |
+
models = find_model_list("", [], "", "downloads", 20) # monthly most downloaded 20 text-to-image models of huggingface
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
huggingface_hub
|
2 |
+
translatepy
|