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
|
@@ -1,5 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
This model classifies intentions of the scientific text, i.e text from scientific journals based on their context.
|
| 5 |
It categorizes if the context explains the background, result or method of the paper.
|
|
|
|
| 1 |
---
|
| 2 |
+
widget:
|
| 3 |
+
- text: "Is this review positive or negative? Review: Best cast iron skillet you will ever buy."
|
| 4 |
+
example_title: "Sentiment analysis"
|
| 5 |
+
- text: "Barack Obama nominated Hilary Clinton as his secretary of state on Monday. He chose her because she had ..."
|
| 6 |
+
example_title: "Coreference resolution"
|
| 7 |
+
- text: "On a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book ..."
|
| 8 |
+
example_title: "Logic puzzles"
|
| 9 |
+
- text: "The two men running to become New York City's next mayor will face off in their first debate Wednesday night ..."
|
| 10 |
+
example_title: "Reading comprehension"
|
| 11 |
---
|
| 12 |
This model classifies intentions of the scientific text, i.e text from scientific journals based on their context.
|
| 13 |
It categorizes if the context explains the background, result or method of the paper.
|