update model card README.md 80885e0
RocioUrquijo commited on
How to use RocioUrquijo/languagedetectionclassification with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="RocioUrquijo/languagedetectionclassification") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("RocioUrquijo/languagedetectionclassification")
model = AutoModelForSequenceClassification.from_pretrained("RocioUrquijo/languagedetectionclassification")