kaikaikaikaikaikaikaikai
commited on
Commit
•
76ef8a0
1
Parent(s):
2e24f5c
Training in progress, epoch 1
Browse files- .gitattributes +2 -0
- .gitignore +1 -0
- config.json +61 -0
- pytorch_model.bin +3 -0
- runs/Jul20_13-34-28_adnis01/1689827841.06385/events.out.tfevents.1689827841.adnis01.2636845.1 +3 -0
- runs/Jul20_13-34-28_adnis01/events.out.tfevents.1689827816.adnis01.2636845.0 +3 -0
- runs/Jul20_14-16-08_adnis01/1689830292.183458/events.out.tfevents.1689830292.adnis01.2698604.1 +3 -0
- runs/Jul20_14-16-08_adnis01/1689830347.7741122/events.out.tfevents.1689830347.adnis01.2698604.2 +3 -0
- runs/Jul20_14-16-08_adnis01/events.out.tfevents.1689830275.adnis01.2698604.0 +3 -0
- runs/Jul20_18-13-13_adnis01/1689844514.9219208/events.out.tfevents.1689844514.adnis01.2709962.1 +3 -0
- runs/Jul20_18-13-13_adnis01/events.out.tfevents.1689844498.adnis01.2709962.0 +3 -0
- source.spm +3 -0
- special_tokens_map.json +5 -0
- target.spm +3 -0
- tokenizer_config.json +13 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
source.spm filter=lfs diff=lfs merge=lfs -text
|
37 |
+
target.spm filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Helsinki-NLP/opus-mt-ja-en",
|
3 |
+
"_num_labels": 3,
|
4 |
+
"activation_dropout": 0.0,
|
5 |
+
"activation_function": "swish",
|
6 |
+
"add_bias_logits": false,
|
7 |
+
"add_final_layer_norm": false,
|
8 |
+
"architectures": [
|
9 |
+
"MarianMTModel"
|
10 |
+
],
|
11 |
+
"attention_dropout": 0.0,
|
12 |
+
"bad_words_ids": [
|
13 |
+
[
|
14 |
+
60715
|
15 |
+
]
|
16 |
+
],
|
17 |
+
"bos_token_id": 0,
|
18 |
+
"classif_dropout": 0.0,
|
19 |
+
"classifier_dropout": 0.0,
|
20 |
+
"d_model": 512,
|
21 |
+
"decoder_attention_heads": 8,
|
22 |
+
"decoder_ffn_dim": 2048,
|
23 |
+
"decoder_layerdrop": 0.0,
|
24 |
+
"decoder_layers": 6,
|
25 |
+
"decoder_start_token_id": 60715,
|
26 |
+
"decoder_vocab_size": 60716,
|
27 |
+
"dropout": 0.1,
|
28 |
+
"encoder_attention_heads": 8,
|
29 |
+
"encoder_ffn_dim": 2048,
|
30 |
+
"encoder_layerdrop": 0.0,
|
31 |
+
"encoder_layers": 6,
|
32 |
+
"eos_token_id": 0,
|
33 |
+
"forced_eos_token_id": 0,
|
34 |
+
"id2label": {
|
35 |
+
"0": "LABEL_0",
|
36 |
+
"1": "LABEL_1",
|
37 |
+
"2": "LABEL_2"
|
38 |
+
},
|
39 |
+
"init_std": 0.02,
|
40 |
+
"is_encoder_decoder": true,
|
41 |
+
"label2id": {
|
42 |
+
"LABEL_0": 0,
|
43 |
+
"LABEL_1": 1,
|
44 |
+
"LABEL_2": 2
|
45 |
+
},
|
46 |
+
"max_length": 512,
|
47 |
+
"max_position_embeddings": 512,
|
48 |
+
"model_type": "marian",
|
49 |
+
"normalize_before": false,
|
50 |
+
"normalize_embedding": false,
|
51 |
+
"num_beams": 6,
|
52 |
+
"num_hidden_layers": 6,
|
53 |
+
"pad_token_id": 60715,
|
54 |
+
"scale_embedding": true,
|
55 |
+
"share_encoder_decoder_embeddings": true,
|
56 |
+
"static_position_embeddings": true,
|
57 |
+
"torch_dtype": "float32",
|
58 |
+
"transformers_version": "4.27.4",
|
59 |
+
"use_cache": true,
|
60 |
+
"vocab_size": 60716
|
61 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d18d4f10fc3ae0b2dbbbf578236d7c5ec04a823e5b01fe12eebcc839924f4950
|
3 |
+
size 301229701
|
runs/Jul20_13-34-28_adnis01/1689827841.06385/events.out.tfevents.1689827841.adnis01.2636845.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c55c30d6e2b2397d00cb8eadd4ce06ef36e34661bd443c3b73c072339c28bfe8
|
3 |
+
size 6096
|
runs/Jul20_13-34-28_adnis01/events.out.tfevents.1689827816.adnis01.2636845.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3428876027831768aa9d2fd4a7c776abe5d9a481818d1075acef7d1e517285b6
|
3 |
+
size 8255
|
runs/Jul20_14-16-08_adnis01/1689830292.183458/events.out.tfevents.1689830292.adnis01.2698604.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b6a3f11f8889fe0a23dd20bb40f1d1171fec7a05bcba2884fc24635aedc9d03
|
3 |
+
size 6096
|
runs/Jul20_14-16-08_adnis01/1689830347.7741122/events.out.tfevents.1689830347.adnis01.2698604.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e38946e3a092c0dc41c10fac67f07d220228578448684933289a37623911e970
|
3 |
+
size 6096
|
runs/Jul20_14-16-08_adnis01/events.out.tfevents.1689830275.adnis01.2698604.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65ad621627de462b00d2688925f0d92caa74c855e247aa7df1a91003b90345eb
|
3 |
+
size 9892
|
runs/Jul20_18-13-13_adnis01/1689844514.9219208/events.out.tfevents.1689844514.adnis01.2709962.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8aa8c586803e3dfa414fef74db67936e150f2ddc790c1d6708d3d7edbbd303a5
|
3 |
+
size 6096
|
runs/Jul20_18-13-13_adnis01/events.out.tfevents.1689844498.adnis01.2709962.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ec7f20a0f9a9ae91e07a8ed3b2fb2ab2f0b64eb17f5b2d58496776eca6d46a74
|
3 |
+
size 9356
|
source.spm
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d0b5c3b10b5959f056ff2c86e2f2356129242ff1fc72d3a4a34d6a8c0eee4e57
|
3 |
+
size 781853
|
special_tokens_map.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"eos_token": "</s>",
|
3 |
+
"pad_token": "<pad>",
|
4 |
+
"unk_token": "<unk>"
|
5 |
+
}
|
target.spm
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:35d89c704e270d441fade716a3931d49c43179400682edcca7f180694982a2f6
|
3 |
+
size 801883
|
tokenizer_config.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"eos_token": "</s>",
|
3 |
+
"model_max_length": 512,
|
4 |
+
"pad_token": "<pad>",
|
5 |
+
"return_tensors": "pt",
|
6 |
+
"separate_vocabs": false,
|
7 |
+
"source_lang": "ja",
|
8 |
+
"sp_model_kwargs": {},
|
9 |
+
"special_tokens_map_file": null,
|
10 |
+
"target_lang": "en",
|
11 |
+
"tokenizer_class": "MarianTokenizer",
|
12 |
+
"unk_token": "<unk>"
|
13 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3b91beacb4f4c442da00d98a83fca1d16074cc0c54850d1bf9605f5be94c4030
|
3 |
+
size 3771
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|