Instructions to use Jean-Baptiste/roberta-large-ner-english with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jean-Baptiste/roberta-large-ner-english with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="Jean-Baptiste/roberta-large-ner-english")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Jean-Baptiste/roberta-large-ner-english") model = AutoModelForTokenClassification.from_pretrained("Jean-Baptiste/roberta-large-ner-english", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Repo License?
#2
by KshitizM - opened
I want to use this NER model in my ongoing project but not sure what the license of this project is. Can someone provide me more info on the license so that I know if I'm permitted to use and modify the code in this repo? Thanks
Licence is mit. I added the info in the readme file. Thank you