YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

ProPrime

from transformers import AutoModel, AutoTokenizer
model_path = "AI4Protein/ProPrime_650M_OGT_Prediction"

model = AutoModel.from_pretrained(model_path, trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)

seqs = [
    "ADHJSJHSLGJSGLSGGAD",
    "MSJKFHLSKGJSG",
    "SDKHF"
]

inputs = tokenizer(seqs, padding=True, return_tensors="pt")
outputs = model(**inputs)
print(outputs.predicted_values)
Downloads last month
8
Safetensors
Model size
669M params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support