Transformers How to use dnagpt/dnagpt_unigram with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="dnagpt/dnagpt_unigram") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("dnagpt/dnagpt_unigram")
model = AutoModel.from_pretrained("dnagpt/dnagpt_unigram")