End of training
Browse files- README.md +56 -0
- config.json +26 -0
- model.safetensors +3 -0
- runs/Oct31_13-15-32_50e17f58da41/events.out.tfevents.1730380532.50e17f58da41.1802.5 +3 -0
- runs/Oct31_13-16-40_50e17f58da41/events.out.tfevents.1730380600.50e17f58da41.1802.6 +3 -0
- runs/Oct31_13-16-55_50e17f58da41/events.out.tfevents.1730380616.50e17f58da41.1802.7 +3 -0
- runs/Oct31_13-17-07_50e17f58da41/events.out.tfevents.1730380628.50e17f58da41.1802.8 +3 -0
- runs/Oct31_13-21-08_50e17f58da41/events.out.tfevents.1730380870.50e17f58da41.1802.9 +3 -0
- runs/Oct31_13-28-44_50e17f58da41/events.out.tfevents.1730381325.50e17f58da41.1802.10 +3 -0
- training_args.bin +3 -0
README.md
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: transformers
|
3 |
+
license: apache-2.0
|
4 |
+
base_model: bert-base-uncased
|
5 |
+
tags:
|
6 |
+
- generated_from_trainer
|
7 |
+
model-index:
|
8 |
+
- name: checkpoints
|
9 |
+
results: []
|
10 |
+
---
|
11 |
+
|
12 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
13 |
+
should probably proofread and complete it, then remove this comment. -->
|
14 |
+
|
15 |
+
# checkpoints
|
16 |
+
|
17 |
+
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the None dataset.
|
18 |
+
It achieves the following results on the evaluation set:
|
19 |
+
- eval_loss: 0.0131
|
20 |
+
- eval_runtime: 1367.6796
|
21 |
+
- eval_samples_per_second: 139.329
|
22 |
+
- eval_steps_per_second: 17.416
|
23 |
+
- epoch: 0.0420
|
24 |
+
- step: 1000
|
25 |
+
|
26 |
+
## Model description
|
27 |
+
|
28 |
+
More information needed
|
29 |
+
|
30 |
+
## Intended uses & limitations
|
31 |
+
|
32 |
+
More information needed
|
33 |
+
|
34 |
+
## Training and evaluation data
|
35 |
+
|
36 |
+
More information needed
|
37 |
+
|
38 |
+
## Training procedure
|
39 |
+
|
40 |
+
### Training hyperparameters
|
41 |
+
|
42 |
+
The following hyperparameters were used during training:
|
43 |
+
- learning_rate: 2e-05
|
44 |
+
- train_batch_size: 8
|
45 |
+
- eval_batch_size: 8
|
46 |
+
- seed: 42
|
47 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
48 |
+
- lr_scheduler_type: linear
|
49 |
+
- num_epochs: 3
|
50 |
+
|
51 |
+
### Framework versions
|
52 |
+
|
53 |
+
- Transformers 4.44.2
|
54 |
+
- Pytorch 2.4.1+cu121
|
55 |
+
- Datasets 3.0.2
|
56 |
+
- Tokenizers 0.19.1
|
config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-base-uncased",
|
3 |
+
"architectures": [
|
4 |
+
"BertForQuestionAnswering"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"gradient_checkpointing": false,
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.1,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 3072,
|
14 |
+
"layer_norm_eps": 1e-12,
|
15 |
+
"max_position_embeddings": 512,
|
16 |
+
"model_type": "bert",
|
17 |
+
"num_attention_heads": 12,
|
18 |
+
"num_hidden_layers": 12,
|
19 |
+
"pad_token_id": 0,
|
20 |
+
"position_embedding_type": "absolute",
|
21 |
+
"torch_dtype": "float32",
|
22 |
+
"transformers_version": "4.44.2",
|
23 |
+
"type_vocab_size": 2,
|
24 |
+
"use_cache": true,
|
25 |
+
"vocab_size": 30522
|
26 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:53e497fedb85fde671da7e5e599a0b293bacb64e4b3b51a5e0f42693be540985
|
3 |
+
size 435596088
|
runs/Oct31_13-15-32_50e17f58da41/events.out.tfevents.1730380532.50e17f58da41.1802.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3556a105987b745bf676964c45bba30c72fcfc3a55ae6a716e7611dc337c0561
|
3 |
+
size 4986
|
runs/Oct31_13-16-40_50e17f58da41/events.out.tfevents.1730380600.50e17f58da41.1802.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:89a12ca9d58757ae12ba8c68df60b700219913cbdc21865cdcc4c0a104c94698
|
3 |
+
size 4985
|
runs/Oct31_13-16-55_50e17f58da41/events.out.tfevents.1730380616.50e17f58da41.1802.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:634f5c41f4efaed1c474e8842a69ccc37af78e18cb3dc908ad884320929b382e
|
3 |
+
size 4986
|
runs/Oct31_13-17-07_50e17f58da41/events.out.tfevents.1730380628.50e17f58da41.1802.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8c7c0beb744355bd378abfc9dd1cc02e2359fa080416acc457789a4379083e25
|
3 |
+
size 5196
|
runs/Oct31_13-21-08_50e17f58da41/events.out.tfevents.1730380870.50e17f58da41.1802.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:525c6540e07a7918d3983901b210e171f5a7b54efde184c423725dd00449690d
|
3 |
+
size 5196
|
runs/Oct31_13-28-44_50e17f58da41/events.out.tfevents.1730381325.50e17f58da41.1802.10
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:29dc6a7e9303ea0ffc7126700642f9fe262364cd7d7678a28c6a55bd9f541669
|
3 |
+
size 5949
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b5222615ba48b12e344b3c124b0193b1fbb209275052e8d2cc228b9d83dd17a
|
3 |
+
size 5240
|