HDLTex/web_of_science
Updated • 584 • 13
How to use terran-ai/WOS46985Bert with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="terran-ai/WOS46985Bert") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("terran-ai/WOS46985Bert")
model = AutoModelForSequenceClassification.from_pretrained("terran-ai/WOS46985Bert")This is a model to classify scientific papers by the Web-of-Science nomenclature.
It's a fine-tuned model to predict the 134 classes from the WOS-46985 model published by https://arxiv.org/pdf/1709.08267.pdf.
10/90 validation/training split (like https://arxiv.org/pdf/1709.08267.pdf)
Accuracy on the final layer was 83% (previous state-of-the-art 77% https://arxiv.org/pdf/1709.08267.pdf). However, the previous SOTA did not use test-data set, so the difference is probably more significant.
Useful model to annotate scientific text.