End of training
Browse files- README.md +14 -4
- generation_config.json +1 -1
README.md
CHANGED
@@ -17,6 +17,9 @@ should probably proofread and complete it, then remove this comment. -->
|
|
17 |
# blip-image-captioning-large-shyam
|
18 |
|
19 |
This model is a fine-tuned version of [shyamgv/blip-image-captioning-large-shyam](https://huggingface.co/shyamgv/blip-image-captioning-large-shyam) on the imagefolder dataset.
|
|
|
|
|
|
|
20 |
|
21 |
## Model description
|
22 |
|
@@ -39,14 +42,21 @@ The following hyperparameters were used during training:
|
|
39 |
- train_batch_size: 2
|
40 |
- eval_batch_size: 2
|
41 |
- seed: 42
|
42 |
-
- optimizer:
|
43 |
- lr_scheduler_type: linear
|
44 |
-
- num_epochs:
|
45 |
- mixed_precision_training: Native AMP
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
### Framework versions
|
48 |
|
49 |
-
- Transformers 4.
|
50 |
- Pytorch 2.4.1+cu121
|
51 |
- Datasets 3.0.1
|
52 |
-
- Tokenizers 0.
|
|
|
17 |
# blip-image-captioning-large-shyam
|
18 |
|
19 |
This model is a fine-tuned version of [shyamgv/blip-image-captioning-large-shyam](https://huggingface.co/shyamgv/blip-image-captioning-large-shyam) on the imagefolder dataset.
|
20 |
+
It achieves the following results on the evaluation set:
|
21 |
+
- Loss: 0.0220
|
22 |
+
- Wer Score: 0.5556
|
23 |
|
24 |
## Model description
|
25 |
|
|
|
42 |
- train_batch_size: 2
|
43 |
- eval_batch_size: 2
|
44 |
- seed: 42
|
45 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
46 |
- lr_scheduler_type: linear
|
47 |
+
- num_epochs: 5
|
48 |
- mixed_precision_training: Native AMP
|
49 |
|
50 |
+
### Training results
|
51 |
+
|
52 |
+
| Training Loss | Epoch | Step | Validation Loss | Wer Score |
|
53 |
+
|:-------------:|:-----:|:----:|:---------------:|:---------:|
|
54 |
+
| 0.006 | 5.0 | 50 | 0.0220 | 0.5556 |
|
55 |
+
|
56 |
+
|
57 |
### Framework versions
|
58 |
|
59 |
+
- Transformers 4.44.2
|
60 |
- Pytorch 2.4.1+cu121
|
61 |
- Datasets 3.0.1
|
62 |
+
- Tokenizers 0.19.1
|
generation_config.json
CHANGED
@@ -3,5 +3,5 @@
|
|
3 |
"bos_token_id": 30522,
|
4 |
"eos_token_id": 2,
|
5 |
"pad_token_id": 0,
|
6 |
-
"transformers_version": "4.
|
7 |
}
|
|
|
3 |
"bos_token_id": 30522,
|
4 |
"eos_token_id": 2,
|
5 |
"pad_token_id": 0,
|
6 |
+
"transformers_version": "4.44.2"
|
7 |
}
|