File size: 943 Bytes
74edc1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
models = [
"Yntec/beLIEve",
"digiplay/ZHMix-Dramatic-v2.0",
"Yntec/realisticStockPhoto3",
"Yntec/ICantBelieveItSNotPhotography",
"John6666/wai-real-mix-v8-sdxl-spo"
]
from externalmod import find_model_list
#models = find_model_list("Yntec", [], "", "last_modified", 20)
# Examples:
#models = ['yodayo-ai/kivotos-xl-2.0', 'yodayo-ai/holodayo-xl-2.1'] # specific models
#models = find_model_list("Yntec", [], "", "last_modified", 20) # Yntec's latest 20 models
#models = find_model_list("Yntec", ["anime"], "", "last_modified", 20) # Yntec's latest 20 models with 'anime' tag
#models = find_model_list("Yntec", [], "anime", "last_modified", 20) # Yntec's latest 20 models without 'anime' tag
#models = find_model_list("", [], "", "last_modified", 20) # latest 20 text-to-image models of huggingface
#models = find_model_list("", [], "", "downloads", 20) # monthly most downloaded 20 text-to-image models of huggingface
|