How to use slone/bert-small-from-nllb-200-raw with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="slone/bert-small-from-nllb-200-raw")
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("slone/bert-small-from-nllb-200-raw") model = AutoModel.from_pretrained("slone/bert-small-from-nllb-200-raw")
No model card