How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-classification", model="autonomous019/bert_small_uncased_512")
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("autonomous019/bert_small_uncased_512")
model = AutoModelForSequenceClassification.from_pretrained("autonomous019/bert_small_uncased_512")
Quick Links

a lightweight solution for the Kaggle ELL competition using google/bert_uncased_L-4_H-256_A-4

Info about the Kaggle ELL competition: https://www.kaggle.com/competitions/feedback-prize-english-language-learning/code

Downloads last month
12
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support