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