Instructions to use Taykhoom/RNA-FM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Taykhoom/RNA-FM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="Taykhoom/RNA-FM", trust_remote_code=True)# Load model directly from transformers import AutoModelForMaskedLM model = AutoModelForMaskedLM.from_pretrained("Taykhoom/RNA-FM", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 316 Bytes
6af52a6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | {
"<cls>": 0,
"<pad>": 1,
"<eos>": 2,
"<unk>": 3,
"A": 4,
"C": 5,
"G": 6,
"U": 7,
"R": 8,
"Y": 9,
"K": 10,
"M": 11,
"S": 12,
"W": 13,
"B": 14,
"D": 15,
"H": 16,
"V": 17,
"N": 18,
"-": 19,
"<null_1>": 20,
"<null_2>": 21,
"<null_3>": 22,
"<null_4>": 23,
"<mask>": 24
} |