Spaces:
Running
Running
Create all_models.py
Browse files- all_models.py +23 -0
all_models.py
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
models = [
|
2 |
+
"Yntec/InsaneSurreality",
|
3 |
+
"Yntec/WinningBlunder",
|
4 |
+
"Yntec/HellSKitchen",
|
5 |
+
"Yntec/Hyperlink",
|
6 |
+
"Yntec/HyperRemix",
|
7 |
+
"Yntec/HyperPhotoGASM",
|
8 |
+
"Yntec/Emoticons",
|
9 |
+
"Yntec/Looking-Glass",
|
10 |
+
"Yntec/ArtisticVision",
|
11 |
+
]
|
12 |
+
|
13 |
+
#from externalmod import find_model_list
|
14 |
+
|
15 |
+
#models = find_model_list("Yntec", [], "", "last_modified", 20)
|
16 |
+
|
17 |
+
# Examples:
|
18 |
+
#models = ['yodayo-ai/kivotos-xl-2.0', 'yodayo-ai/holodayo-xl-2.1'] # specific models
|
19 |
+
#models = find_model_list("Yntec", [], "", "last_modified", 20) # Yntec's latest 20 models
|
20 |
+
#models = find_model_list("Yntec", ["anime"], "", "last_modified", 20) # Yntec's latest 20 models with 'anime' tag
|
21 |
+
#models = find_model_list("Yntec", [], "anime", "last_modified", 20) # Yntec's latest 20 models without 'anime' tag
|
22 |
+
#models = find_model_list("", [], "", "last_modified", 20) # latest 20 text-to-image models of huggingface
|
23 |
+
#models = find_model_list("", [], "", "downloads", 20) # monthly most downloaded 20 text-to-image models of huggingface
|