dennissulejmanvisma
commited on
Commit
•
3c75bcd
1
Parent(s):
325a41c
SWAB-IntEco/confluence-model-test
Browse files- README.md +52 -0
- config.json +37 -0
- generation_config.json +8 -0
- model.safetensors +3 -0
- runs/Dec20_06-58-18_d85ef0b1f8ab/events.out.tfevents.1703055499.d85ef0b1f8ab.228.0 +3 -0
- runs/Dec20_07-01-14_d85ef0b1f8ab/events.out.tfevents.1703055675.d85ef0b1f8ab.228.1 +3 -0
- runs/Dec20_07-07-07_d85ef0b1f8ab/events.out.tfevents.1703056028.d85ef0b1f8ab.228.2 +3 -0
- training_args.bin +3 -0
README.md
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
base_model: AI-Sweden-Models/gpt-sw3-126m-instruct
|
4 |
+
tags:
|
5 |
+
- generated_from_trainer
|
6 |
+
model-index:
|
7 |
+
- name: test_trainer
|
8 |
+
results: []
|
9 |
+
---
|
10 |
+
|
11 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
12 |
+
should probably proofread and complete it, then remove this comment. -->
|
13 |
+
|
14 |
+
# test_trainer
|
15 |
+
|
16 |
+
This model is a fine-tuned version of [AI-Sweden-Models/gpt-sw3-126m-instruct](https://huggingface.co/AI-Sweden-Models/gpt-sw3-126m-instruct) on an unknown dataset.
|
17 |
+
|
18 |
+
## Model description
|
19 |
+
|
20 |
+
More information needed
|
21 |
+
|
22 |
+
## Intended uses & limitations
|
23 |
+
|
24 |
+
More information needed
|
25 |
+
|
26 |
+
## Training and evaluation data
|
27 |
+
|
28 |
+
More information needed
|
29 |
+
|
30 |
+
## Training procedure
|
31 |
+
|
32 |
+
### Training hyperparameters
|
33 |
+
|
34 |
+
The following hyperparameters were used during training:
|
35 |
+
- learning_rate: 5e-05
|
36 |
+
- train_batch_size: 1
|
37 |
+
- eval_batch_size: 8
|
38 |
+
- seed: 42
|
39 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
40 |
+
- lr_scheduler_type: linear
|
41 |
+
- num_epochs: 3.0
|
42 |
+
|
43 |
+
### Training results
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
### Framework versions
|
48 |
+
|
49 |
+
- Transformers 4.35.2
|
50 |
+
- Pytorch 2.1.0+cu121
|
51 |
+
- Datasets 2.15.0
|
52 |
+
- Tokenizers 0.15.0
|
config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "AI-Sweden-Models/gpt-sw3-126m-instruct",
|
3 |
+
"activation_function": "gelu",
|
4 |
+
"apply_query_key_layer_scaling": true,
|
5 |
+
"architectures": [
|
6 |
+
"GPT2LMHeadModel"
|
7 |
+
],
|
8 |
+
"attn_pdrop": 0.1,
|
9 |
+
"bos_token_id": 2,
|
10 |
+
"embd_pdrop": 0.1,
|
11 |
+
"eos_token_id": 3,
|
12 |
+
"initializer_range": 0.023,
|
13 |
+
"layer_norm_epsilon": 1e-05,
|
14 |
+
"max_length": 2048,
|
15 |
+
"model_type": "gpt2",
|
16 |
+
"n_embd": 768,
|
17 |
+
"n_head": 12,
|
18 |
+
"n_inner": 3072,
|
19 |
+
"n_layer": 12,
|
20 |
+
"n_positions": 2048,
|
21 |
+
"normalize_attention_scores": true,
|
22 |
+
"pad_token_id": 0,
|
23 |
+
"reorder_and_upcast_attn": false,
|
24 |
+
"resid_pdrop": 0.1,
|
25 |
+
"scale_attn_by_inverse_layer_idx": false,
|
26 |
+
"scale_attn_weights": true,
|
27 |
+
"summary_activation": null,
|
28 |
+
"summary_first_dropout": 0.1,
|
29 |
+
"summary_proj_to_labels": true,
|
30 |
+
"summary_type": "cls_index",
|
31 |
+
"summary_use_proj": true,
|
32 |
+
"tokenizer_class": "GPTSw3Tokenizer",
|
33 |
+
"torch_dtype": "float32",
|
34 |
+
"transformers_version": "4.35.2",
|
35 |
+
"use_cache": true,
|
36 |
+
"vocab_size": 64000
|
37 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 2,
|
4 |
+
"eos_token_id": 3,
|
5 |
+
"max_length": 2048,
|
6 |
+
"pad_token_id": 0,
|
7 |
+
"transformers_version": "4.35.2"
|
8 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8628a176d9a0f56f0fade2c680d697dece1cc6a35c5f7e134110ca1643fa0111
|
3 |
+
size 543138432
|
runs/Dec20_06-58-18_d85ef0b1f8ab/events.out.tfevents.1703055499.d85ef0b1f8ab.228.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c8cbaede1a76937e66d082e1385f39e4dc2f8fd42a9b99207c92942b13cf86d7
|
3 |
+
size 4864
|
runs/Dec20_07-01-14_d85ef0b1f8ab/events.out.tfevents.1703055675.d85ef0b1f8ab.228.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1e4f3bd9a9bb6f3b3cec964c43262bc4db1764e21b596b309787e1110ce87a18
|
3 |
+
size 4864
|
runs/Dec20_07-07-07_d85ef0b1f8ab/events.out.tfevents.1703056028.d85ef0b1f8ab.228.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2080ef70f55ecee95d153f4a5428cb3e1910eb65406b6857b44f55673188c0c7
|
3 |
+
size 4864
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1aa00ea5368283d1435026e2ccef930f81ea9d2ad72160a111a26584ac09d315
|
3 |
+
size 4536
|