Text Classification
Transformers
PyTorch
English
distilbert
seq2seq
Eval Results (legacy)
text-embeddings-inference
Instructions to use knkarthick/Action_Decisions with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use knkarthick/Action_Decisions with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="knkarthick/Action_Decisions")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("knkarthick/Action_Decisions") model = AutoModelForSequenceClassification.from_pretrained("knkarthick/Action_Decisions") - Notebooks
- Google Colab
- Kaggle
Commit ·
10b8832
1
Parent(s): 2867ed3
Update README.md
Browse files
README.md
CHANGED
|
@@ -48,7 +48,7 @@ Model obtained by Fine Tuning 'distilbert' using Custom Dataset!
|
|
| 48 |
|
| 49 |
LABEL_0 - Not an Action Decision
|
| 50 |
|
| 51 |
-
LABEL_1 - Action
|
| 52 |
|
| 53 |
## Usage
|
| 54 |
# Example 1
|
|
|
|
| 48 |
|
| 49 |
LABEL_0 - Not an Action Decision
|
| 50 |
|
| 51 |
+
LABEL_1 - Action Decision
|
| 52 |
|
| 53 |
## Usage
|
| 54 |
# Example 1
|