Namely, I need a model that satisfies a few conditions, and one of them is that it has LlamaForCausalLM architecture. But I can’t find any interface that allows me to filter for such models, or list them. Any good ways to do this?
1 Like
Since pipeline_tag
is automatically assigned by Hugging Face Hub, it is possible to search by pipeline, but in the case of Transformers, pipeline_tag
is determined by the task name, so there is currently no established method for searching by model architecture. Incidentally, in the case of Diffusers models, the architecture name is included in diffusers:
, so it is possible.
If the model author has assigned tags themselves, you can search by specifying them with other=
.
Searching with other=llama
worked well enough for me, thank you so much!
1 Like
There no direct filter for architecture. yet, search llama in the hub, it might work
1 Like
This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.