Views
No views yet
| Group | Tags |
|---|---|
| intergenic | O |
| CDS | B-CDS I-CDS L-CDS U-CDS |
| Intron | B-INTRON I-INTRON L-INTRON U-INTRON |
| 5'UTR | B-UTR5 I-UTR5 L-UTR5 U-UTR5 |
| 3'UTR | B-UTR3 I-UTR3 L-UTR3 U-UTR3 |
1from transformers import AutoModelForTokenClassification, AutoTokenizer
2
3model = AutoModelForTokenClassification.from_pretrained(
4 "zhangtaolab/PlantHelixSeek-Anno", trust_remote_code=True
5)
6tokenizer = AutoTokenizer.from_pretrained(
7 "zhangtaolab/PlantHelixSeek-Anno", trust_remote_code=True
8)scripts/gene_annotation/.