dokyoungkim commited on
Commit
949a6da
1 Parent(s): a3bc609

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "dokyoungkim/wmt19-finetuned-it-de-to-en-2",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "relu",
5
+ "architectures": [
6
+ "FSMTForConditionalGeneration"
7
+ ],
8
+ "attention_dropout": 0.1,
9
+ "bos_token_id": 0,
10
+ "d_model": 1024,
11
+ "decoder": {
12
+ "bos_token_id": 2,
13
+ "model_type": "fsmt_decoder",
14
+ "vocab_size": 42024
15
+ },
16
+ "decoder_attention_heads": 16,
17
+ "decoder_ffn_dim": 4096,
18
+ "decoder_layerdrop": 0,
19
+ "decoder_layers": 6,
20
+ "decoder_start_token_id": 2,
21
+ "dropout": 0.2,
22
+ "encoder_attention_heads": 16,
23
+ "encoder_ffn_dim": 8192,
24
+ "encoder_layerdrop": 0,
25
+ "encoder_layers": 6,
26
+ "eos_token_id": 2,
27
+ "forced_eos_token_id": 2,
28
+ "init_std": 0.02,
29
+ "is_encoder_decoder": true,
30
+ "langs": [
31
+ "de",
32
+ "en"
33
+ ],
34
+ "length_penalty": 1.1,
35
+ "max_length": 200,
36
+ "max_position_embeddings": 1024,
37
+ "model_type": "fsmt",
38
+ "num_beams": 5,
39
+ "num_hidden_layers": 6,
40
+ "pad_token_id": 1,
41
+ "scale_embedding": true,
42
+ "src_vocab_size": 42024,
43
+ "tgt_vocab_size": 42024,
44
+ "tie_word_embeddings": true,
45
+ "torch_dtype": "float32",
46
+ "transformers_version": "4.37.2",
47
+ "use_cache": true
48
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34af2827767d0dd3acd2cd581d6d1cdf600de63cdf3b28980372e6f628425264
3
+ size 1087419504
runs/Mar20_10-54-39_gpusvr021320/events.out.tfevents.1710899684.gpusvr021320.2621941.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6578c75ddeea879211a462c7082461bcd798d80d488a12682690bd91558cdc5
3
+ size 6790
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "pad_token": {
10
+ "content": "<pad>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "sep_token": {
17
+ "content": "</s>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<s>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "<pad>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "</s>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "<unk>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ }
35
+ },
36
+ "bos_token": "<s>",
37
+ "clean_up_tokenization_spaces": true,
38
+ "do_lower_case": false,
39
+ "langs": [
40
+ "de",
41
+ "en"
42
+ ],
43
+ "model_max_length": 1024,
44
+ "pad_token": "<pad>",
45
+ "sep_token": "</s>",
46
+ "tokenizer_class": "FSMTTokenizer",
47
+ "unk_token": "<unk>"
48
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf7e37a3806adc1197f88d6cef8871d9024b8e5e5fa87f41cd8bbc957781351f
3
+ size 4475
vocab-src.json ADDED
The diff for this file is too large to render. See raw diff
 
vocab-tgt.json ADDED
The diff for this file is too large to render. See raw diff