PlantHelixSeek
Collection
25 items • Updated
How to use zhangtaolab/PlantHelixSeek-sequence_conservation with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="zhangtaolab/PlantHelixSeek-sequence_conservation", trust_remote_code=True) # Load model directly
from transformers import AutoModelForSequenceClassification
model = AutoModelForSequenceClassification.from_pretrained("zhangtaolab/PlantHelixSeek-sequence_conservation", trust_remote_code=True, device_map="auto")Fine-tuned checkpoint of PlantHelixSeek (470M params) for Sequence conservation prediction.
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model = AutoModelForSequenceClassification.from_pretrained(
"zhangtaolab/PlantHelixSeek-sequence_conservation", trust_remote_code=True
)
tokenizer = AutoTokenizer.from_pretrained(
"zhangtaolab/PlantHelixSeek-sequence_conservation", trust_remote_code=True
)
Always pass trust_remote_code=True — the HelixSeek architecture is registered via HuggingFace auto_map.
CC-BY-NC 4.0 (research use; contact authors for commercial licensing)
Base model
zhangtaolab/PlantHelixSeek