Text Classification
Transformers
TensorBoard
Safetensors
bert
Generated from Trainer
Eval Results (legacy)
text-embeddings-inference
Instructions to use Sharpaxis/FIN_BERT_sentiment with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Sharpaxis/FIN_BERT_sentiment with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Sharpaxis/FIN_BERT_sentiment")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Sharpaxis/FIN_BERT_sentiment") model = AutoModelForSequenceClassification.from_pretrained("Sharpaxis/FIN_BERT_sentiment") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -80,7 +80,7 @@ The following hyperparameters were used during training:
|
|
| 80 |
- Datasets 3.1.0
|
| 81 |
- Tokenizers 0.20.3
|
| 82 |
|
| 83 |
-
##
|
| 84 |
|
| 85 |
|
| 86 |
```python
|
|
|
|
| 80 |
- Datasets 3.1.0
|
| 81 |
- Tokenizers 0.20.3
|
| 82 |
|
| 83 |
+
## Code to use model as pipeline classifier
|
| 84 |
|
| 85 |
|
| 86 |
```python
|