Views
No views yet

allenai/scibert_scivocab_cased
Fine-tuned using the SciERC Dataset to identify scientific terms:

1from transformers import AutoTokenizer, AutoModelForTokenClassification
2from transformers import pipeline
3
4tokenizer = AutoTokenizer.from_pretrained("RJuro/SciNERTopic")
5model_trf = AutoModelForTokenClassification.from_pretrained("RJuro/SciNERTopic")
6
7nlp = pipeline("ner", model=model_trf, tokenizer=tokenizer, aggregation_strategy='average')1@misc {roman_jurowetzki_2022,
2 author = { {Roman Jurowetzki, Hamid Bekamiri} },
3 title = { SciNERTopic - NER enhanced transformer-based topic modelling for scientific text },
4 year = 2022,
5 url = { https://huggingface.co/RJuro/SciNERTopic },
6 doi = { 10.57967/hf/0095 },
7 publisher = { Hugging Face }
8}