Instructions to use Jean-Baptiste/camembert-ner-with-dates with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jean-Baptiste/camembert-ner-with-dates with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="Jean-Baptiste/camembert-ner-with-dates")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Jean-Baptiste/camembert-ner-with-dates") model = AutoModelForTokenClassification.from_pretrained("Jean-Baptiste/camembert-ner-with-dates", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Case sensitive
#5
by pysapien93 - opened
Hello, thank you for this version and the share !
I am just wondering if the model is case sentivie like the basic camembert or not ?
Thank you in advance
Hello,
Yes it is case sensitive as the basic camembert model (same vocabulary..).
However, from my experience it was performing correctly on entity without upper case.
Thanks