Feature Extraction
Transformers
Safetensors
English
bert
token-classification
text-embeddings-inference
Instructions to use noystl/scibert_token_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use noystl/scibert_token_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="noystl/scibert_token_classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("noystl/scibert_token_classifier") model = AutoModelForTokenClassification.from_pretrained("noystl/scibert_token_classifier") - Notebooks
- Google Colab
- Kaggle
Add pipeline tag
#1
by nielsr HF Staff - opened
This PR adds the pipeline_tag to the model card.
noystl changed pull request status to merged