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

pipe = pipeline("token-classification", model="webmichaelnosenko/rust-bert-base-NER")
# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification

tokenizer = AutoTokenizer.from_pretrained("webmichaelnosenko/rust-bert-base-NER")
model = AutoModelForTokenClassification.from_pretrained("webmichaelnosenko/rust-bert-base-NER")
Quick Links

This is a rust-adapted ready to use version of https://huggingface.co/dslim/bert-base-NER

I've generated the rust_model.ot file using the convert_model.py script provided by the rust_bert crate

Downloads last month
4
Safetensors
Model size
0.1B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train webmichaelnosenko/rust-bert-base-NER