Instructions to use Taykhoom/SpliceBERT-human-510nt with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Taykhoom/SpliceBERT-human-510nt with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="Taykhoom/SpliceBERT-human-510nt", trust_remote_code=True)# Load model directly from transformers import AutoModelForMaskedLM model = AutoModelForMaskedLM.from_pretrained("Taykhoom/SpliceBERT-human-510nt", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 123 Bytes
049dd62 | 1 2 3 4 5 6 7 8 9 10 11 12 | {
"[PAD]": 0,
"[UNK]": 1,
"[CLS]": 2,
"[SEP]": 3,
"[MASK]": 4,
"N": 5,
"A": 6,
"C": 7,
"G": 8,
"T": 9
} |