Instructions to use EndLessTime/fine_tuned_per_domain_balanced_32B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EndLessTime/fine_tuned_per_domain_balanced_32B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="EndLessTime/fine_tuned_per_domain_balanced_32B")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("EndLessTime/fine_tuned_per_domain_balanced_32B") model = AutoModelForSequenceClassification.from_pretrained("EndLessTime/fine_tuned_per_domain_balanced_32B") - Notebooks
- Google Colab
- Kaggle
Arihant Tripathi commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -38,7 +38,7 @@ More information needed
|
|
| 38 |
### Training hyperparameters
|
| 39 |
|
| 40 |
The following hyperparameters were used during training:
|
| 41 |
-
- learning_rate:
|
| 42 |
- train_batch_size: 1
|
| 43 |
- eval_batch_size: 1
|
| 44 |
- seed: 42
|
|
|
|
| 38 |
### Training hyperparameters
|
| 39 |
|
| 40 |
The following hyperparameters were used during training:
|
| 41 |
+
- learning_rate: 5e-06
|
| 42 |
- train_batch_size: 1
|
| 43 |
- eval_batch_size: 1
|
| 44 |
- seed: 42
|