Downloads · 30 days
8
21% of all-time downloads
peanutacake/ajmc_ner_de
ajmc_ner_de is a token classification model from peanutacake. Use it when you need labels on individual words, such as names. It is set up for transformers.
- Problem type: Entity Extraction - Model ID: 53413125973 - CO2 Emissions (in grams): 1.2160
Downloads · 30 days
8
21% of all-time downloads
All-time downloads
39
Public
Repo size
2.7 GB
Likes
0
Public
Click a slice to open those files.
.bin1.3 GB · 100%
From the Hugging Face model README
You can use cURL to access this model:
$ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/peanutacake/autotrain-ajmc_ner_de-53413125973
Or Python API:
from transformers import AutoModelForTokenClassification, AutoTokenizer
model = AutoModelForTokenClassification.from_pretrained("peanutacake/autotrain-ajmc_ner_de-53413125973", use_auth_token=True)
tokenizer = AutoTokenizer.from_pretrained("peanutacake/autotrain-ajmc_ner_de-53413125973", use_auth_token=True)
inputs = tokenizer("I love AutoTrain", return_tensors="pt")
outputs = model(**inputs)