Text Classification
Transformers
Safetensors
English
bert
arxiv
scientific-text-classification
scibert
streamlit-demo
text-embeddings-inference
Instructions to use Ian-Khalzov/article-topic-service-scibert with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Ian-Khalzov/article-topic-service-scibert with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Ian-Khalzov/article-topic-service-scibert")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Ian-Khalzov/article-topic-service-scibert") model = AutoModelForSequenceClassification.from_pretrained("Ian-Khalzov/article-topic-service-scibert") - Notebooks
- Google Colab
- Kaggle