Instructions to use puzzz21/sci-intent-classify with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use puzzz21/sci-intent-classify with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="puzzz21/sci-intent-classify")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("puzzz21/sci-intent-classify") model = AutoModelForSequenceClassification.from_pretrained("puzzz21/sci-intent-classify") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,7 +14,10 @@ It categorizes if the context explains the background, result or method of the p
|
|
| 14 |
The output classes based on the text are as follows:
|
| 15 |
</br>
|
| 16 |
Text describing related work, introduction and uses are classified as <b>background</b>
|
|
|
|
| 17 |
Methods and implementation details are classified as <b>method</b>
|
|
|
|
| 18 |
Results and analysis are classified as <b>result</b>
|
| 19 |
-
|
|
|
|
| 20 |
For finetuning, I have used dataset from Cohan et al. https://aclanthology.org/N19-1361.pdf
|
|
|
|
| 14 |
The output classes based on the text are as follows:
|
| 15 |
</br>
|
| 16 |
Text describing related work, introduction and uses are classified as <b>background</b>
|
| 17 |
+
</br>
|
| 18 |
Methods and implementation details are classified as <b>method</b>
|
| 19 |
+
</br>
|
| 20 |
Results and analysis are classified as <b>result</b>
|
| 21 |
+
</br>
|
| 22 |
+
</br>
|
| 23 |
For finetuning, I have used dataset from Cohan et al. https://aclanthology.org/N19-1361.pdf
|