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/animeSEXTILLION",
|
| 3 |
+
"Yntec/lamettaRemix",
|
| 4 |
+
"Yntec/Items",
|
| 5 |
+
"Yntec/AnythingV7",
|
| 6 |
+
"Yntec/Nostalgic",
|
| 7 |
+
"Yntec/JustForKicks",
|
| 8 |
+
"Yntec/365",
|
| 9 |
+
"Yntec/Lunatic",
|
| 10 |
+
"Yntec/NextPhoton",
|
| 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
|