File size: 370 Bytes
6a1b091 39dbdf0 6a1b091 4a6742e 39dbdf0 6a1b091 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from transformers import AutoModelForSequenceClassification
def get_model_list():
# List of popular pre-trained models
models = [
"Qwen/Qwen2.5-Coder-32B-Instruct",
"microsoft/Phi-3-mini-4k-instruct",
"bigcode/starcoder2-3b",
"codellama/CodeLlama-34b-Instruct-hf"
"microsoft/Phi-3.5-mini-instruct"
]
return models |