AshutoshAdhikari
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
4 |
---
|
5 |
|
6 |
# Model Card for Research Paper Annotation Classifier
|
@@ -25,7 +30,7 @@ This model is part of the 🤗 Transformers library and has been fine-tuned to e
|
|
25 |
- **Model type:** Fine-tuned text classification model
|
26 |
- **Language(s) (NLP):** English
|
27 |
- **License:** Apache 2.0
|
28 |
-
- **Finetuned from model:** `
|
29 |
|
30 |
### Model Sources
|
31 |
|
@@ -62,4 +67,4 @@ from transformers import pipeline
|
|
62 |
|
63 |
classifier = pipeline("text-classification", model="your-model-name")
|
64 |
result = classifier("This paper introduces a novel technique for...")
|
65 |
-
print(result)
|
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
+
tags:
|
4 |
+
- text-classification
|
5 |
+
- quantization
|
6 |
+
- fine-tuning
|
7 |
+
base_model:
|
8 |
+
- allenai/scibert_scivocab_uncased
|
9 |
---
|
10 |
|
11 |
# Model Card for Research Paper Annotation Classifier
|
|
|
30 |
- **Model type:** Fine-tuned text classification model
|
31 |
- **Language(s) (NLP):** English
|
32 |
- **License:** Apache 2.0
|
33 |
+
- **Finetuned from model:** `allenai/scibert_scivocab_uncased`
|
34 |
|
35 |
### Model Sources
|
36 |
|
|
|
67 |
|
68 |
classifier = pipeline("text-classification", model="your-model-name")
|
69 |
result = classifier("This paper introduces a novel technique for...")
|
70 |
+
print(result)
|