How to use RJuro/SciNERTopic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="RJuro/SciNERTopic")
# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("RJuro/SciNERTopic") model = AutoModelForTokenClassification.from_pretrained("RJuro/SciNERTopic")