YAML Metadata
Warning:
empty or missing yaml metadata in repo card
(https://huggingface.co/docs/hub/model-cards#model-card-metadata)
Tokenizer
Genie
Use This Model
You can use this model by running the following code:
from transformers import AutoModelForTokenClassification, AutoTokenizer
# Load model and tokenizer
model_name = "your-username/your-model-name" # replace with your model name
model = AutoModelForTokenClassification.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)
# Example usage
inputs = tokenizer("Your input text here", return_tensors="pt")
outputs = model(**inputs)
print(outputs)
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
๐
Ask for provider support