Instructions to use dany0407/multiple_choice_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dany0407/multiple_choice_model with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForMultipleChoice tokenizer = AutoTokenizer.from_pretrained("dany0407/multiple_choice_model") model = AutoModelForMultipleChoice.from_pretrained("dany0407/multiple_choice_model") - Notebooks
- Google Colab
- Kaggle
End of training
Browse files
README.md
CHANGED
|
@@ -18,8 +18,8 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [google-bert/bert-base-uncased](https://huggingface.co/google-bert/bert-base-uncased) on an unknown dataset.
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
-
- Loss: 0.
|
| 22 |
-
- Accuracy: 0.
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
@@ -42,7 +42,7 @@ The following hyperparameters were used during training:
|
|
| 42 |
- train_batch_size: 16
|
| 43 |
- eval_batch_size: 16
|
| 44 |
- seed: 42
|
| 45 |
-
- optimizer: Use OptimizerNames.
|
| 46 |
- lr_scheduler_type: linear
|
| 47 |
- num_epochs: 1
|
| 48 |
|
|
@@ -50,12 +50,12 @@ The following hyperparameters were used during training:
|
|
| 50 |
|
| 51 |
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|
| 52 |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
|
| 53 |
-
| 0.
|
| 54 |
|
| 55 |
|
| 56 |
### Framework versions
|
| 57 |
|
| 58 |
- Transformers 4.54.0
|
| 59 |
-
- Pytorch 2.
|
| 60 |
- Datasets 4.0.0
|
| 61 |
-
- Tokenizers 0.21.
|
|
|
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [google-bert/bert-base-uncased](https://huggingface.co/google-bert/bert-base-uncased) on an unknown dataset.
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
+
- Loss: 0.7528
|
| 22 |
+
- Accuracy: 0.7
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
|
|
| 42 |
- train_batch_size: 16
|
| 43 |
- eval_batch_size: 16
|
| 44 |
- seed: 42
|
| 45 |
+
- optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 46 |
- lr_scheduler_type: linear
|
| 47 |
- num_epochs: 1
|
| 48 |
|
|
|
|
| 50 |
|
| 51 |
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|
| 52 |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
|
| 53 |
+
| 0.9095 | 1.0 | 563 | 0.7528 | 0.7 |
|
| 54 |
|
| 55 |
|
| 56 |
### Framework versions
|
| 57 |
|
| 58 |
- Transformers 4.54.0
|
| 59 |
+
- Pytorch 2.10.0+cu128
|
| 60 |
- Datasets 4.0.0
|
| 61 |
+
- Tokenizers 0.21.4
|