Text Classification
Transformers
PyTorch
TensorBoard
Safetensors
bert
Generated from Trainer
text-embeddings-inference
Instructions to use lschlessinger/bert-finetuned-math-prob-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lschlessinger/bert-finetuned-math-prob-classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="lschlessinger/bert-finetuned-math-prob-classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("lschlessinger/bert-finetuned-math-prob-classification") model = AutoModelForSequenceClassification.from_pretrained("lschlessinger/bert-finetuned-math-prob-classification") - Notebooks
- Google Colab
- Kaggle
Commit ·
fbabe61
1
Parent(s): 3048db3
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,7 +22,7 @@ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co
|
|
| 22 |
|
| 23 |
## Model description
|
| 24 |
|
| 25 |
-
See the [bert-base-uncased](https://huggingface.co/bert-base-uncased) for more details. The only architectural modification made was to the classification head. Here, 7 classes were used.
|
| 26 |
|
| 27 |
## Intended uses & limitations
|
| 28 |
|
|
|
|
| 22 |
|
| 23 |
## Model description
|
| 24 |
|
| 25 |
+
See the [bert-base-uncased](https://huggingface.co/bert-base-uncased) model for more details. The only architectural modification made was to the classification head. Here, 7 classes were used.
|
| 26 |
|
| 27 |
## Intended uses & limitations
|
| 28 |
|