AlaBoussoffara commited on
Commit
5e5e771
·
verified ·
1 Parent(s): 564a1ad
Files changed (25) hide show
  1. .gitattributes +1 -0
  2. test_model_v1/checkpoints/best/checkpoint.pt +3 -0
  3. test_model_v1/configs/config_inference.yaml +58 -0
  4. test_model_v1/configs/config_train.yaml +81 -0
  5. test_model_v1/debug/attention/attention_context_0.json +71 -0
  6. test_model_v1/debug/attention/batch0_sample0_attention_all_layers.pdf +3 -0
  7. test_model_v1/debug/attention/batch0_sample0_dec_cross_L0_H0-1-2-3-4-5-6-7.png +0 -0
  8. test_model_v1/debug/attention/batch0_sample0_dec_cross_L1_H0-1-2-3-4-5-6-7.png +0 -0
  9. test_model_v1/debug/attention/batch0_sample0_dec_cross_L2_H0-1-2-3-4-5-6-7.png +0 -0
  10. test_model_v1/debug/attention/batch0_sample0_dec_cross_L3_H0-1-2-3-4-5-6-7.png +0 -0
  11. test_model_v1/debug/attention/batch0_sample0_dec_self_L0_H0-1-2-3-4-5-6-7.png +0 -0
  12. test_model_v1/debug/attention/batch0_sample0_dec_self_L1_H0-1-2-3-4-5-6-7.png +0 -0
  13. test_model_v1/debug/attention/batch0_sample0_dec_self_L2_H0-1-2-3-4-5-6-7.png +0 -0
  14. test_model_v1/debug/attention/batch0_sample0_dec_self_L3_H0-1-2-3-4-5-6-7.png +0 -0
  15. test_model_v1/debug/attention/batch0_sample0_enc_self_L0_H0-1-2-3-4-5-6-7.png +0 -0
  16. test_model_v1/debug/attention/batch0_sample0_enc_self_L1_H0-1-2-3-4-5-6-7.png +0 -0
  17. test_model_v1/debug/attention/batch0_sample0_enc_self_L2_H0-1-2-3-4-5-6-7.png +0 -0
  18. test_model_v1/debug/attention/batch0_sample0_enc_self_L3_H0-1-2-3-4-5-6-7.png +0 -0
  19. test_model_v1/debug/attention/diagnostics/attention_entropy.png +0 -0
  20. test_model_v1/debug/attention/diagnostics/attention_report.json +1280 -0
  21. test_model_v1/debug/attention/diagnostics/encoder_activation_std.png +0 -0
  22. test_model_v1/debug/attention/diagnostics/gradient_norms.png +0 -0
  23. test_model_v1/manifest.json +48 -0
  24. test_model_v1/plots/loss_curves.png +0 -0
  25. test_model_v1/tokenizer/bpe_8k_old.json +0 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ 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
+ test_model_v1/debug/attention/batch0_sample0_attention_all_layers.pdf filter=lfs diff=lfs merge=lfs -text
test_model_v1/checkpoints/best/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e35dd1a13a10efae348d9c1acdada6b8055a25318e5b6ad0d6f30994aad2bc4
3
+ size 302889894
test_model_v1/configs/config_inference.yaml ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model:
2
+ name: test_model
3
+ best_checkpoint_path: trained_models/test_model_v1/checkpoints/best/checkpoint.pt
4
+ latest_checkpoint_path: trained_models/test_model_v1/checkpoints/best/checkpoint.pt
5
+ tokenizer: bpe_8k_old
6
+ d_model: 512
7
+ num_heads: 8
8
+ num_layers: 4
9
+ d_ff: 1024
10
+ dropout_rate: 0.1
11
+ vocab_size: 8192
12
+ max_seq_len: 128
13
+ pad_id: 0
14
+ bos_id: 1
15
+ eos_id: 2
16
+ tokenizer:
17
+ name: bpe_8k_old
18
+ path: trained_models/test_model_v1/tokenizer/bpe_8k_old.json
19
+ corpus: ./data/corpus/corpus.txt
20
+ dataset: concatenated_dataset
21
+ vocab_size: 8192
22
+ max_seq_len: 128
23
+ pad_token: <pad>
24
+ bos_token: <bos>
25
+ eos_token: <eos>
26
+ unk_token: <unk>
27
+ special_tokens:
28
+ - <pad>
29
+ - <bos>
30
+ - <eos>
31
+ - <unk>
32
+ pad_id: 0
33
+ bos_id: 1
34
+ eos_id: 2
35
+ unk_id: 3
36
+ runtime:
37
+ seed: 42
38
+ device: cuda
39
+ output_dir: ./outputs/
40
+ data_dir: ./data/
41
+ tokenizer_dir: ./tokenizer/
42
+ cache_dir: ./data/raw
43
+ checkpoint_path: ./outputs/checkpoints/
44
+ generation:
45
+ max_new_tokens: 50
46
+ temperature: 1
47
+ top_k: 10
48
+ top_p: 0.6
49
+ do_sample: false
50
+ presence_penalty: 0.6
51
+ frequency_penalty: 0.2
52
+ no_repeat_ngram: 4
53
+ min_steps_before_eos: 1
54
+ input_text: i am sorry to hear that.
55
+ hydra:
56
+ run:
57
+ dir: .
58
+ output_subdir: null
test_model_v1/configs/config_train.yaml ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model:
2
+ name: test_model
3
+ best_checkpoint_path: trained_models/test_model_v1/checkpoints/best/checkpoint.pt
4
+ latest_checkpoint_path: trained_models/test_model_v1/checkpoints/best/checkpoint.pt
5
+ tokenizer: bpe_8k_old
6
+ d_model: 512
7
+ num_heads: 8
8
+ num_layers: 4
9
+ d_ff: 1024
10
+ dropout_rate: 0.1
11
+ vocab_size: 8192
12
+ max_seq_len: 128
13
+ pad_id: 0
14
+ bos_id: 1
15
+ eos_id: 2
16
+ tokenizer:
17
+ name: bpe_8k_old
18
+ path: trained_models/test_model_v1/tokenizer/bpe_8k_old.json
19
+ corpus: ./data/corpus/corpus.txt
20
+ dataset: concatenated_dataset
21
+ vocab_size: 8192
22
+ max_seq_len: 128
23
+ pad_token: <pad>
24
+ bos_token: <bos>
25
+ eos_token: <eos>
26
+ unk_token: <unk>
27
+ special_tokens:
28
+ - <pad>
29
+ - <bos>
30
+ - <eos>
31
+ - <unk>
32
+ pad_id: 0
33
+ bos_id: 1
34
+ eos_id: 2
35
+ unk_id: 3
36
+ dataset:
37
+ name: medium_dataset
38
+ path: ./data/processed/processed_medium_dataset
39
+ optim:
40
+ name: AdamW
41
+ lr: 0.0008
42
+ betas:
43
+ - 0.9
44
+ - 0.98
45
+ eps: 1.0e-08
46
+ weight_decay: 0.08
47
+ no_decay_on_bias_norm_embed: true
48
+ sched:
49
+ name: cosine_warmup
50
+ warmup_ratio: 0.08
51
+ min_lr_ratio: 0.05
52
+ max_lr_ratio: 1
53
+ hold_min: true
54
+ runtime:
55
+ seed: 42
56
+ device: cuda
57
+ output_dir: ./outputs/
58
+ data_dir: ./data/
59
+ tokenizer_dir: ./tokenizer/
60
+ cache_dir: ./data/raw
61
+ checkpoint_path: ./outputs/checkpoints/
62
+ trainer:
63
+ epochs: 10
64
+ batch_size: 128
65
+ shuffle: true
66
+ precision: bf16
67
+ gradient_accumulation: 4
68
+ clip_grad_norm: 0.5
69
+ eval_interval: 1
70
+ save_interval: 1
71
+ debug_interval: 1000
72
+ mixed_precision: true
73
+ gradient_checkpointing: true
74
+ label_smoothing: 0.05
75
+ export_best_to_model_path: false
76
+ resume: best
77
+ hydra:
78
+ run:
79
+ dir: .
80
+ output_subdir: null
81
+
test_model_v1/debug/attention/attention_context_0.json ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "src": [
3
+ "i have decided to go to the park. i will take my dog with me. we will have a great time together."
4
+ ],
5
+ "tgt": [
6
+ "j'ai d\u00e9cid\u00e9 d'aller au parc. je vais prendre mon chien avec moi. nous allons passer un bon moment ensemble."
7
+ ],
8
+ "src_padd_mask": [
9
+ false,
10
+ false,
11
+ false,
12
+ false,
13
+ false,
14
+ false,
15
+ false,
16
+ false,
17
+ false,
18
+ false,
19
+ false,
20
+ false,
21
+ false,
22
+ false,
23
+ false,
24
+ false,
25
+ false,
26
+ false,
27
+ false,
28
+ false,
29
+ false,
30
+ false,
31
+ false,
32
+ false,
33
+ false,
34
+ false,
35
+ false
36
+ ],
37
+ "tgt_padd_mask": [
38
+ false,
39
+ false,
40
+ false,
41
+ false,
42
+ false,
43
+ false,
44
+ false,
45
+ false,
46
+ false,
47
+ false,
48
+ false,
49
+ false,
50
+ false,
51
+ false,
52
+ false,
53
+ false,
54
+ false,
55
+ false,
56
+ false,
57
+ false,
58
+ false,
59
+ false,
60
+ false,
61
+ false,
62
+ false,
63
+ false,
64
+ false,
65
+ false,
66
+ false,
67
+ false
68
+ ],
69
+ "pred_text": "j ' ai décidé d ' aller au par c , je vais me mon do ien avec moi , aurons avoir un grand temps ensemble .",
70
+ "batch_accuracy": 0.6551724137931034
71
+ }
test_model_v1/debug/attention/batch0_sample0_attention_all_layers.pdf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8687aa82dcc82aaa5da58bb317496c2b1969cd7387d80744bf1df84db7176c8b
3
+ size 165785
test_model_v1/debug/attention/batch0_sample0_dec_cross_L0_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_dec_cross_L1_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_dec_cross_L2_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_dec_cross_L3_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_dec_self_L0_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_dec_self_L1_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_dec_self_L2_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_dec_self_L3_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_enc_self_L0_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_enc_self_L1_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_enc_self_L2_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/batch0_sample0_enc_self_L3_H0-1-2-3-4-5-6-7.png ADDED
test_model_v1/debug/attention/diagnostics/attention_entropy.png ADDED
test_model_v1/debug/attention/diagnostics/attention_report.json ADDED
@@ -0,0 +1,1280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "config": {
3
+ "model": {
4
+ "name": "test_model",
5
+ "best_checkpoint_path": "test_model_v1/checkpoints/best/checkpoint.pt",
6
+ "latest_checkpoint_path": "test_model_v1/checkpoints/best/checkpoint.pt",
7
+ "tokenizer": "bpe_8k_old",
8
+ "d_model": 512,
9
+ "num_layers": 4,
10
+ "num_heads": 8,
11
+ "d_ff": 1024,
12
+ "dropout_rate": 0.1,
13
+ "max_seq_len": 128,
14
+ "vocab_size": 8192,
15
+ "pad_id": 0,
16
+ "bos_id": 1,
17
+ "eos_id": 2,
18
+ "layer_norm_style": null
19
+ },
20
+ "dataset": {
21
+ "name": "medium_dataset",
22
+ "path": "./data/processed/processed_medium_dataset"
23
+ },
24
+ "optim": {
25
+ "name": "AdamW",
26
+ "lr": 0.0008,
27
+ "betas": [
28
+ 0.9,
29
+ 0.98
30
+ ],
31
+ "weight_decay": 0.08,
32
+ "eps": 1e-08,
33
+ "no_decay_on_bias_norm_embed": true
34
+ },
35
+ "sched": {
36
+ "name": "cosine_warmup",
37
+ "warmup_ratio": 0.08,
38
+ "min_lr_ratio": 0.05,
39
+ "max_lr_ratio": 1,
40
+ "hold_min": true
41
+ },
42
+ "trainer": {
43
+ "epochs": 10,
44
+ "batch_size": 8,
45
+ "shuffle": true,
46
+ "precision": "bf16",
47
+ "gradient_accumulation": 4,
48
+ "clip_grad_norm": 0.5,
49
+ "eval_interval": 1,
50
+ "save_interval": 1,
51
+ "debug_interval": 1000,
52
+ "mixed_precision": true,
53
+ "gradient_checkpointing": true,
54
+ "label_smoothing": 0.05,
55
+ "export_best_to_model_path": false,
56
+ "resume": "best"
57
+ },
58
+ "runtime": {
59
+ "seed": 42,
60
+ "device": "cuda",
61
+ "output_dir": "./outputs/",
62
+ "data_dir": "./data/",
63
+ "cache_dir": "./data/raw",
64
+ "tokenizer_dir": "./tokenizer/",
65
+ "checkpoint_path": "./outputs/checkpoints/"
66
+ },
67
+ "tokenizer": {
68
+ "name": "bpe_8k_old",
69
+ "path": "test_model_v1/tokenizer/bpe_8k_old.json",
70
+ "corpus": "./data/corpus/corpus.txt",
71
+ "dataset": "concatenated_dataset",
72
+ "vocab_size": 8192,
73
+ "max_seq_len": 128,
74
+ "pad_token": "<pad>",
75
+ "bos_token": "<bos>",
76
+ "eos_token": "<eos>",
77
+ "unk_token": "<unk>",
78
+ "special_tokens": [
79
+ "<pad>",
80
+ "<bos>",
81
+ "<eos>",
82
+ "<unk>"
83
+ ],
84
+ "pad_id": 0,
85
+ "bos_id": 1,
86
+ "eos_id": 2,
87
+ "unk_id": 3
88
+ }
89
+ },
90
+ "device": "cuda",
91
+ "reports": [
92
+ {
93
+ "loss": 1.7494174242019653,
94
+ "gradients": {
95
+ "per_parameter": {
96
+ "embed.token_embed.weight": {
97
+ "grad_norm": 1.3044230937957764,
98
+ "param_norm": 108.40128326416016,
99
+ "grad_to_weight_ratio": 0.01203328092174934
100
+ },
101
+ "encoder.layers.0.attention_layer.query_linear.weight": {
102
+ "grad_norm": 0.21280944347381592,
103
+ "param_norm": 24.398685455322266,
104
+ "grad_to_weight_ratio": 0.008722168407945334
105
+ },
106
+ "encoder.layers.0.attention_layer.key_linear.weight": {
107
+ "grad_norm": 0.22556814551353455,
108
+ "param_norm": 24.673677444458008,
109
+ "grad_to_weight_ratio": 0.009142056186042531
110
+ },
111
+ "encoder.layers.0.attention_layer.value_linear.weight": {
112
+ "grad_norm": 0.3686007559299469,
113
+ "param_norm": 19.429746627807617,
114
+ "grad_to_weight_ratio": 0.018970950213133043
115
+ },
116
+ "encoder.layers.0.attention_layer.output_linear.weight": {
117
+ "grad_norm": 0.37529751658439636,
118
+ "param_norm": 18.044166564941406,
119
+ "grad_to_weight_ratio": 0.02079882798873921
120
+ },
121
+ "encoder.layers.0.attention_layer.output_linear.bias": {
122
+ "grad_norm": 0.027566326782107353,
123
+ "param_norm": 1.4551786184310913,
124
+ "grad_to_weight_ratio": 0.01894360350883192
125
+ },
126
+ "encoder.layers.0.feed_forward.fc1.weight": {
127
+ "grad_norm": 0.2714630365371704,
128
+ "param_norm": 40.89385986328125,
129
+ "grad_to_weight_ratio": 0.006638234626047404
130
+ },
131
+ "encoder.layers.0.feed_forward.fc1.bias": {
132
+ "grad_norm": 0.013187435455620289,
133
+ "param_norm": 2.7436025142669678,
134
+ "grad_to_weight_ratio": 0.004806612979482155
135
+ },
136
+ "encoder.layers.0.feed_forward.fc2.weight": {
137
+ "grad_norm": 0.2072729468345642,
138
+ "param_norm": 38.14583969116211,
139
+ "grad_to_weight_ratio": 0.005433697318310211
140
+ },
141
+ "encoder.layers.0.feed_forward.fc2.bias": {
142
+ "grad_norm": 0.03970116749405861,
143
+ "param_norm": 1.5145164728164673,
144
+ "grad_to_weight_ratio": 0.026213757464256696
145
+ },
146
+ "encoder.layers.0.norm1.weight": {
147
+ "grad_norm": 0.036068517714738846,
148
+ "param_norm": 20.266429901123047,
149
+ "grad_to_weight_ratio": 0.001779717389333499
150
+ },
151
+ "encoder.layers.0.norm1.bias": {
152
+ "grad_norm": 0.04475417360663414,
153
+ "param_norm": 2.927133560180664,
154
+ "grad_to_weight_ratio": 0.015289419729742909
155
+ },
156
+ "encoder.layers.0.norm2.weight": {
157
+ "grad_norm": 0.04418084770441055,
158
+ "param_norm": 17.73204231262207,
159
+ "grad_to_weight_ratio": 0.002491582578333864
160
+ },
161
+ "encoder.layers.0.norm2.bias": {
162
+ "grad_norm": 0.05286872386932373,
163
+ "param_norm": 1.6395295858383179,
164
+ "grad_to_weight_ratio": 0.032246276203828826
165
+ },
166
+ "encoder.layers.1.attention_layer.query_linear.weight": {
167
+ "grad_norm": 0.12787117063999176,
168
+ "param_norm": 31.757823944091797,
169
+ "grad_to_weight_ratio": 0.004026446234638088
170
+ },
171
+ "encoder.layers.1.attention_layer.key_linear.weight": {
172
+ "grad_norm": 0.1463305950164795,
173
+ "param_norm": 32.2238883972168,
174
+ "grad_to_weight_ratio": 0.0045410595149998605
175
+ },
176
+ "encoder.layers.1.attention_layer.value_linear.weight": {
177
+ "grad_norm": 0.4261511266231537,
178
+ "param_norm": 19.251535415649414,
179
+ "grad_to_weight_ratio": 0.0221359552587539
180
+ },
181
+ "encoder.layers.1.attention_layer.output_linear.weight": {
182
+ "grad_norm": 0.41516169905662537,
183
+ "param_norm": 18.684219360351562,
184
+ "grad_to_weight_ratio": 0.022219911415597482
185
+ },
186
+ "encoder.layers.1.attention_layer.output_linear.bias": {
187
+ "grad_norm": 0.03609948605298996,
188
+ "param_norm": 1.0489388704299927,
189
+ "grad_to_weight_ratio": 0.03441524293799622
190
+ },
191
+ "encoder.layers.1.feed_forward.fc1.weight": {
192
+ "grad_norm": 0.2787674069404602,
193
+ "param_norm": 42.02549362182617,
194
+ "grad_to_weight_ratio": 0.006633292863826689
195
+ },
196
+ "encoder.layers.1.feed_forward.fc1.bias": {
197
+ "grad_norm": 0.013572012074291706,
198
+ "param_norm": 2.7236733436584473,
199
+ "grad_to_weight_ratio": 0.004982980835747634
200
+ },
201
+ "encoder.layers.1.feed_forward.fc2.weight": {
202
+ "grad_norm": 0.22472964227199554,
203
+ "param_norm": 39.663970947265625,
204
+ "grad_to_weight_ratio": 0.005665838212991188
205
+ },
206
+ "encoder.layers.1.feed_forward.fc2.bias": {
207
+ "grad_norm": 0.03622201085090637,
208
+ "param_norm": 1.5143930912017822,
209
+ "grad_to_weight_ratio": 0.02391849980122243
210
+ },
211
+ "encoder.layers.1.norm1.weight": {
212
+ "grad_norm": 0.03555092588067055,
213
+ "param_norm": 20.03695297241211,
214
+ "grad_to_weight_ratio": 0.001774268070081169
215
+ },
216
+ "encoder.layers.1.norm1.bias": {
217
+ "grad_norm": 0.04127884283661842,
218
+ "param_norm": 3.8686933517456055,
219
+ "grad_to_weight_ratio": 0.010669970215649735
220
+ },
221
+ "encoder.layers.1.norm2.weight": {
222
+ "grad_norm": 0.04897938296198845,
223
+ "param_norm": 16.989957809448242,
224
+ "grad_to_weight_ratio": 0.0028828431189362796
225
+ },
226
+ "encoder.layers.1.norm2.bias": {
227
+ "grad_norm": 0.05488703399896622,
228
+ "param_norm": 1.776807188987732,
229
+ "grad_to_weight_ratio": 0.030890821659836438
230
+ },
231
+ "encoder.layers.2.attention_layer.query_linear.weight": {
232
+ "grad_norm": 0.1271914839744568,
233
+ "param_norm": 30.094524383544922,
234
+ "grad_to_weight_ratio": 0.004226399538781158
235
+ },
236
+ "encoder.layers.2.attention_layer.key_linear.weight": {
237
+ "grad_norm": 0.13454079627990723,
238
+ "param_norm": 30.392127990722656,
239
+ "grad_to_weight_ratio": 0.004426830405589633
240
+ },
241
+ "encoder.layers.2.attention_layer.value_linear.weight": {
242
+ "grad_norm": 0.39241737127304077,
243
+ "param_norm": 18.98895835876465,
244
+ "grad_to_weight_ratio": 0.020665555416940172
245
+ },
246
+ "encoder.layers.2.attention_layer.output_linear.weight": {
247
+ "grad_norm": 0.3735000491142273,
248
+ "param_norm": 17.741331100463867,
249
+ "grad_to_weight_ratio": 0.021052538109975337
250
+ },
251
+ "encoder.layers.2.attention_layer.output_linear.bias": {
252
+ "grad_norm": 0.04274407774209976,
253
+ "param_norm": 1.0758063793182373,
254
+ "grad_to_weight_ratio": 0.03973212890701384
255
+ },
256
+ "encoder.layers.2.feed_forward.fc1.weight": {
257
+ "grad_norm": 0.3147575855255127,
258
+ "param_norm": 42.78855895996094,
259
+ "grad_to_weight_ratio": 0.0073561155873474796
260
+ },
261
+ "encoder.layers.2.feed_forward.fc1.bias": {
262
+ "grad_norm": 0.014651515521109104,
263
+ "param_norm": 2.453015089035034,
264
+ "grad_to_weight_ratio": 0.005972859925157141
265
+ },
266
+ "encoder.layers.2.feed_forward.fc2.weight": {
267
+ "grad_norm": 0.25934258103370667,
268
+ "param_norm": 40.715431213378906,
269
+ "grad_to_weight_ratio": 0.006369638569577067
270
+ },
271
+ "encoder.layers.2.feed_forward.fc2.bias": {
272
+ "grad_norm": 0.03659326210618019,
273
+ "param_norm": 1.8184162378311157,
274
+ "grad_to_weight_ratio": 0.020123699593557327
275
+ },
276
+ "encoder.layers.2.norm1.weight": {
277
+ "grad_norm": 0.03604165092110634,
278
+ "param_norm": 19.945579528808594,
279
+ "grad_to_weight_ratio": 0.001806999434087509
280
+ },
281
+ "encoder.layers.2.norm1.bias": {
282
+ "grad_norm": 0.04253522679209709,
283
+ "param_norm": 4.029062271118164,
284
+ "grad_to_weight_ratio": 0.010557103348090463
285
+ },
286
+ "encoder.layers.2.norm2.weight": {
287
+ "grad_norm": 0.04806182160973549,
288
+ "param_norm": 17.368209838867188,
289
+ "grad_to_weight_ratio": 0.002767229441354301
290
+ },
291
+ "encoder.layers.2.norm2.bias": {
292
+ "grad_norm": 0.06715068221092224,
293
+ "param_norm": 1.7655342817306519,
294
+ "grad_to_weight_ratio": 0.03803419899899097
295
+ },
296
+ "encoder.layers.3.attention_layer.query_linear.weight": {
297
+ "grad_norm": 0.14690318703651428,
298
+ "param_norm": 29.45256805419922,
299
+ "grad_to_weight_ratio": 0.004987788730890123
300
+ },
301
+ "encoder.layers.3.attention_layer.key_linear.weight": {
302
+ "grad_norm": 0.13842861354351044,
303
+ "param_norm": 29.43021011352539,
304
+ "grad_to_weight_ratio": 0.00470362301218799
305
+ },
306
+ "encoder.layers.3.attention_layer.value_linear.weight": {
307
+ "grad_norm": 0.4884301722049713,
308
+ "param_norm": 19.081523895263672,
309
+ "grad_to_weight_ratio": 0.025597021227753286
310
+ },
311
+ "encoder.layers.3.attention_layer.output_linear.weight": {
312
+ "grad_norm": 0.37156692147254944,
313
+ "param_norm": 17.314102172851562,
314
+ "grad_to_weight_ratio": 0.02146036322086301
315
+ },
316
+ "encoder.layers.3.attention_layer.output_linear.bias": {
317
+ "grad_norm": 0.057290252298116684,
318
+ "param_norm": 1.1777573823928833,
319
+ "grad_to_weight_ratio": 0.04864350939721541
320
+ },
321
+ "encoder.layers.3.feed_forward.fc1.weight": {
322
+ "grad_norm": 0.3993653655052185,
323
+ "param_norm": 43.03874969482422,
324
+ "grad_to_weight_ratio": 0.009279204631570335
325
+ },
326
+ "encoder.layers.3.feed_forward.fc1.bias": {
327
+ "grad_norm": 0.01603385992348194,
328
+ "param_norm": 1.9775564670562744,
329
+ "grad_to_weight_ratio": 0.008107915091467051
330
+ },
331
+ "encoder.layers.3.feed_forward.fc2.weight": {
332
+ "grad_norm": 0.25355541706085205,
333
+ "param_norm": 40.18751907348633,
334
+ "grad_to_weight_ratio": 0.006309307538920178
335
+ },
336
+ "encoder.layers.3.feed_forward.fc2.bias": {
337
+ "grad_norm": 0.050069790333509445,
338
+ "param_norm": 1.1833248138427734,
339
+ "grad_to_weight_ratio": 0.042312803507321556
340
+ },
341
+ "encoder.layers.3.norm1.weight": {
342
+ "grad_norm": 0.040389370173215866,
343
+ "param_norm": 19.57526206970215,
344
+ "grad_to_weight_ratio": 0.0020632863064309597
345
+ },
346
+ "encoder.layers.3.norm1.bias": {
347
+ "grad_norm": 0.056045182049274445,
348
+ "param_norm": 3.980025291442871,
349
+ "grad_to_weight_ratio": 0.014081614548972478
350
+ },
351
+ "encoder.layers.3.norm2.weight": {
352
+ "grad_norm": 0.18994024395942688,
353
+ "param_norm": 11.451133728027344,
354
+ "grad_to_weight_ratio": 0.01658702522131237
355
+ },
356
+ "encoder.layers.3.norm2.bias": {
357
+ "grad_norm": 0.15254758298397064,
358
+ "param_norm": 2.4655158519744873,
359
+ "grad_to_weight_ratio": 0.06187248111251945
360
+ },
361
+ "decoder.layers.0.self_attention_layer.query_linear.weight": {
362
+ "grad_norm": 0.2506406009197235,
363
+ "param_norm": 25.307010650634766,
364
+ "grad_to_weight_ratio": 0.009903998713235097
365
+ },
366
+ "decoder.layers.0.self_attention_layer.key_linear.weight": {
367
+ "grad_norm": 0.26672789454460144,
368
+ "param_norm": 25.357986450195312,
369
+ "grad_to_weight_ratio": 0.010518496611253475
370
+ },
371
+ "decoder.layers.0.self_attention_layer.value_linear.weight": {
372
+ "grad_norm": 0.2856094539165497,
373
+ "param_norm": 21.773256301879883,
374
+ "grad_to_weight_ratio": 0.013117443250409784
375
+ },
376
+ "decoder.layers.0.self_attention_layer.output_linear.weight": {
377
+ "grad_norm": 0.30432453751564026,
378
+ "param_norm": 21.417236328125,
379
+ "grad_to_weight_ratio": 0.014209328078244564
380
+ },
381
+ "decoder.layers.0.self_attention_layer.output_linear.bias": {
382
+ "grad_norm": 0.01952493004500866,
383
+ "param_norm": 1.893370509147644,
384
+ "grad_to_weight_ratio": 0.010312260569532196
385
+ },
386
+ "decoder.layers.0.cross_attention_layer.query_linear.weight": {
387
+ "grad_norm": 0.09001103788614273,
388
+ "param_norm": 30.34445571899414,
389
+ "grad_to_weight_ratio": 0.0029663091907032387
390
+ },
391
+ "decoder.layers.0.cross_attention_layer.key_linear.weight": {
392
+ "grad_norm": 0.08555619418621063,
393
+ "param_norm": 30.103914260864258,
394
+ "grad_to_weight_ratio": 0.0028420288951404803
395
+ },
396
+ "decoder.layers.0.cross_attention_layer.value_linear.weight": {
397
+ "grad_norm": 0.13360156118869781,
398
+ "param_norm": 25.03641128540039,
399
+ "grad_to_weight_ratio": 0.005336290399838584
400
+ },
401
+ "decoder.layers.0.cross_attention_layer.output_linear.weight": {
402
+ "grad_norm": 0.14034530520439148,
403
+ "param_norm": 23.730072021484375,
404
+ "grad_to_weight_ratio": 0.005914238485130676
405
+ },
406
+ "decoder.layers.0.cross_attention_layer.output_linear.bias": {
407
+ "grad_norm": 0.02972015179693699,
408
+ "param_norm": 0.9056278467178345,
409
+ "grad_to_weight_ratio": 0.03281717971086643
410
+ },
411
+ "decoder.layers.0.feed_forward.fc1.weight": {
412
+ "grad_norm": 0.2960856854915619,
413
+ "param_norm": 43.673343658447266,
414
+ "grad_to_weight_ratio": 0.006779551568277654
415
+ },
416
+ "decoder.layers.0.feed_forward.fc1.bias": {
417
+ "grad_norm": 0.01381844561547041,
418
+ "param_norm": 2.0766494274139404,
419
+ "grad_to_weight_ratio": 0.00665420240558943
420
+ },
421
+ "decoder.layers.0.feed_forward.fc2.weight": {
422
+ "grad_norm": 0.2579648792743683,
423
+ "param_norm": 41.12253952026367,
424
+ "grad_to_weight_ratio": 0.006273077545399316
425
+ },
426
+ "decoder.layers.0.feed_forward.fc2.bias": {
427
+ "grad_norm": 0.02883533388376236,
428
+ "param_norm": 1.8753615617752075,
429
+ "grad_to_weight_ratio": 0.01537587976179463
430
+ },
431
+ "decoder.layers.0.norm1.weight": {
432
+ "grad_norm": 0.025097748264670372,
433
+ "param_norm": 22.931339263916016,
434
+ "grad_to_weight_ratio": 0.0010944737233102757
435
+ },
436
+ "decoder.layers.0.norm1.bias": {
437
+ "grad_norm": 0.029502904042601585,
438
+ "param_norm": 2.445063352584839,
439
+ "grad_to_weight_ratio": 0.012066314769063157
440
+ },
441
+ "decoder.layers.0.norm2.weight": {
442
+ "grad_norm": 0.030590059235692024,
443
+ "param_norm": 20.280179977416992,
444
+ "grad_to_weight_ratio": 0.0015083721776509922
445
+ },
446
+ "decoder.layers.0.norm2.bias": {
447
+ "grad_norm": 0.03403147682547569,
448
+ "param_norm": 2.343634605407715,
449
+ "grad_to_weight_ratio": 0.01452081171140619
450
+ },
451
+ "decoder.layers.0.norm3.weight": {
452
+ "grad_norm": 0.05133355036377907,
453
+ "param_norm": 16.039201736450195,
454
+ "grad_to_weight_ratio": 0.0032005053123757917
455
+ },
456
+ "decoder.layers.0.norm3.bias": {
457
+ "grad_norm": 0.06990908831357956,
458
+ "param_norm": 1.2945226430892944,
459
+ "grad_to_weight_ratio": 0.05400375859528578
460
+ },
461
+ "decoder.layers.1.self_attention_layer.query_linear.weight": {
462
+ "grad_norm": 0.1352008730173111,
463
+ "param_norm": 29.16192054748535,
464
+ "grad_to_weight_ratio": 0.0046362129269625525
465
+ },
466
+ "decoder.layers.1.self_attention_layer.key_linear.weight": {
467
+ "grad_norm": 0.12783995270729065,
468
+ "param_norm": 29.16992950439453,
469
+ "grad_to_weight_ratio": 0.004382593817651387
470
+ },
471
+ "decoder.layers.1.self_attention_layer.value_linear.weight": {
472
+ "grad_norm": 0.2795604467391968,
473
+ "param_norm": 23.656097412109375,
474
+ "grad_to_weight_ratio": 0.011817690884045825
475
+ },
476
+ "decoder.layers.1.self_attention_layer.output_linear.weight": {
477
+ "grad_norm": 0.2718953788280487,
478
+ "param_norm": 22.97449493408203,
479
+ "grad_to_weight_ratio": 0.011834661854728635
480
+ },
481
+ "decoder.layers.1.self_attention_layer.output_linear.bias": {
482
+ "grad_norm": 0.0436825305223465,
483
+ "param_norm": 0.9426340460777283,
484
+ "grad_to_weight_ratio": 0.04634092170133451
485
+ },
486
+ "decoder.layers.1.cross_attention_layer.query_linear.weight": {
487
+ "grad_norm": 0.1602097749710083,
488
+ "param_norm": 33.56377410888672,
489
+ "grad_to_weight_ratio": 0.004773294399231003
490
+ },
491
+ "decoder.layers.1.cross_attention_layer.key_linear.weight": {
492
+ "grad_norm": 0.14686958491802216,
493
+ "param_norm": 33.025421142578125,
494
+ "grad_to_weight_ratio": 0.004447167661661266
495
+ },
496
+ "decoder.layers.1.cross_attention_layer.value_linear.weight": {
497
+ "grad_norm": 0.20628413558006287,
498
+ "param_norm": 28.058584213256836,
499
+ "grad_to_weight_ratio": 0.007351908207919931
500
+ },
501
+ "decoder.layers.1.cross_attention_layer.output_linear.weight": {
502
+ "grad_norm": 0.19977344572544098,
503
+ "param_norm": 27.102577209472656,
504
+ "grad_to_weight_ratio": 0.007371012881225574
505
+ },
506
+ "decoder.layers.1.cross_attention_layer.output_linear.bias": {
507
+ "grad_norm": 0.03229990974068642,
508
+ "param_norm": 1.3018608093261719,
509
+ "grad_to_weight_ratio": 0.02481057076860595
510
+ },
511
+ "decoder.layers.1.feed_forward.fc1.weight": {
512
+ "grad_norm": 0.33991485834121704,
513
+ "param_norm": 43.57281494140625,
514
+ "grad_to_weight_ratio": 0.007801076400464454
515
+ },
516
+ "decoder.layers.1.feed_forward.fc1.bias": {
517
+ "grad_norm": 0.01567891240119934,
518
+ "param_norm": 1.973999261856079,
519
+ "grad_to_weight_ratio": 0.007942714419482149
520
+ },
521
+ "decoder.layers.1.feed_forward.fc2.weight": {
522
+ "grad_norm": 0.29842454195022583,
523
+ "param_norm": 41.970638275146484,
524
+ "grad_to_weight_ratio": 0.00711031697907094
525
+ },
526
+ "decoder.layers.1.feed_forward.fc2.bias": {
527
+ "grad_norm": 0.03726514056324959,
528
+ "param_norm": 2.216982364654541,
529
+ "grad_to_weight_ratio": 0.01680894767470989
530
+ },
531
+ "decoder.layers.1.norm1.weight": {
532
+ "grad_norm": 0.027726951986551285,
533
+ "param_norm": 24.06261444091797,
534
+ "grad_to_weight_ratio": 0.0011522834334826491
535
+ },
536
+ "decoder.layers.1.norm1.bias": {
537
+ "grad_norm": 0.03225488215684891,
538
+ "param_norm": 2.7702667713165283,
539
+ "grad_to_weight_ratio": 0.011643240460018443
540
+ },
541
+ "decoder.layers.1.norm2.weight": {
542
+ "grad_norm": 0.03624362498521805,
543
+ "param_norm": 20.215980529785156,
544
+ "grad_to_weight_ratio": 0.0017928205328362292
545
+ },
546
+ "decoder.layers.1.norm2.bias": {
547
+ "grad_norm": 0.04329323396086693,
548
+ "param_norm": 2.4272446632385254,
549
+ "grad_to_weight_ratio": 0.017836370027521475
550
+ },
551
+ "decoder.layers.1.norm3.weight": {
552
+ "grad_norm": 0.0731615498661995,
553
+ "param_norm": 15.708695411682129,
554
+ "grad_to_weight_ratio": 0.0046573918424687635
555
+ },
556
+ "decoder.layers.1.norm3.bias": {
557
+ "grad_norm": 0.103321373462677,
558
+ "param_norm": 1.133062720298767,
559
+ "grad_to_weight_ratio": 0.09118769121213513
560
+ },
561
+ "decoder.layers.2.self_attention_layer.query_linear.weight": {
562
+ "grad_norm": 0.1640961915254593,
563
+ "param_norm": 28.673992156982422,
564
+ "grad_to_weight_ratio": 0.005722823338552612
565
+ },
566
+ "decoder.layers.2.self_attention_layer.key_linear.weight": {
567
+ "grad_norm": 0.15322871506214142,
568
+ "param_norm": 28.582561492919922,
569
+ "grad_to_weight_ratio": 0.005360916134129258
570
+ },
571
+ "decoder.layers.2.self_attention_layer.value_linear.weight": {
572
+ "grad_norm": 0.3782458007335663,
573
+ "param_norm": 24.852397918701172,
574
+ "grad_to_weight_ratio": 0.015219690348226922
575
+ },
576
+ "decoder.layers.2.self_attention_layer.output_linear.weight": {
577
+ "grad_norm": 0.2884204685688019,
578
+ "param_norm": 23.534637451171875,
579
+ "grad_to_weight_ratio": 0.012255148147796437
580
+ },
581
+ "decoder.layers.2.self_attention_layer.output_linear.bias": {
582
+ "grad_norm": 0.05033516138792038,
583
+ "param_norm": 0.7505745887756348,
584
+ "grad_to_weight_ratio": 0.06706217095620291
585
+ },
586
+ "decoder.layers.2.cross_attention_layer.query_linear.weight": {
587
+ "grad_norm": 0.15913651883602142,
588
+ "param_norm": 35.03413772583008,
589
+ "grad_to_weight_ratio": 0.004542327260382042
590
+ },
591
+ "decoder.layers.2.cross_attention_layer.key_linear.weight": {
592
+ "grad_norm": 0.14329305291175842,
593
+ "param_norm": 34.63029861450195,
594
+ "grad_to_weight_ratio": 0.004137794320137574
595
+ },
596
+ "decoder.layers.2.cross_attention_layer.value_linear.weight": {
597
+ "grad_norm": 0.21875277161598206,
598
+ "param_norm": 30.684757232666016,
599
+ "grad_to_weight_ratio": 0.007129037064145246
600
+ },
601
+ "decoder.layers.2.cross_attention_layer.output_linear.weight": {
602
+ "grad_norm": 0.23608684539794922,
603
+ "param_norm": 29.766456604003906,
604
+ "grad_to_weight_ratio": 0.007931304976561608
605
+ },
606
+ "decoder.layers.2.cross_attention_layer.output_linear.bias": {
607
+ "grad_norm": 0.029830699786543846,
608
+ "param_norm": 1.054974913597107,
609
+ "grad_to_weight_ratio": 0.02827621718966093
610
+ },
611
+ "decoder.layers.2.feed_forward.fc1.weight": {
612
+ "grad_norm": 0.42240867018699646,
613
+ "param_norm": 43.39973068237305,
614
+ "grad_to_weight_ratio": 0.009732979065663868
615
+ },
616
+ "decoder.layers.2.feed_forward.fc1.bias": {
617
+ "grad_norm": 0.018086126074194908,
618
+ "param_norm": 2.058098316192627,
619
+ "grad_to_weight_ratio": 0.008787785273370466
620
+ },
621
+ "decoder.layers.2.feed_forward.fc2.weight": {
622
+ "grad_norm": 0.30871498584747314,
623
+ "param_norm": 41.78953170776367,
624
+ "grad_to_weight_ratio": 0.007387376054039691
625
+ },
626
+ "decoder.layers.2.feed_forward.fc2.bias": {
627
+ "grad_norm": 0.03709905594587326,
628
+ "param_norm": 2.4397153854370117,
629
+ "grad_to_weight_ratio": 0.015206304869538181
630
+ },
631
+ "decoder.layers.2.norm1.weight": {
632
+ "grad_norm": 0.029964420944452286,
633
+ "param_norm": 23.67780876159668,
634
+ "grad_to_weight_ratio": 0.0012655065021494165
635
+ },
636
+ "decoder.layers.2.norm1.bias": {
637
+ "grad_norm": 0.03235355392098427,
638
+ "param_norm": 2.7067246437072754,
639
+ "grad_to_weight_ratio": 0.011953027433429339
640
+ },
641
+ "decoder.layers.2.norm2.weight": {
642
+ "grad_norm": 0.038857363164424896,
643
+ "param_norm": 19.991548538208008,
644
+ "grad_to_weight_ratio": 0.0019436895091022315
645
+ },
646
+ "decoder.layers.2.norm2.bias": {
647
+ "grad_norm": 0.042886484414339066,
648
+ "param_norm": 2.711909055709839,
649
+ "grad_to_weight_ratio": 0.01581413075929929
650
+ },
651
+ "decoder.layers.2.norm3.weight": {
652
+ "grad_norm": 0.04816955327987671,
653
+ "param_norm": 17.58161735534668,
654
+ "grad_to_weight_ratio": 0.00273976803762171
655
+ },
656
+ "decoder.layers.2.norm3.bias": {
657
+ "grad_norm": 0.08085499703884125,
658
+ "param_norm": 1.0881868600845337,
659
+ "grad_to_weight_ratio": 0.07430249344536827
660
+ },
661
+ "decoder.layers.3.self_attention_layer.query_linear.weight": {
662
+ "grad_norm": 0.17428232729434967,
663
+ "param_norm": 31.422555923461914,
664
+ "grad_to_weight_ratio": 0.0055464083736172076
665
+ },
666
+ "decoder.layers.3.self_attention_layer.key_linear.weight": {
667
+ "grad_norm": 0.15520748496055603,
668
+ "param_norm": 31.094215393066406,
669
+ "grad_to_weight_ratio": 0.004991522796074804
670
+ },
671
+ "decoder.layers.3.self_attention_layer.value_linear.weight": {
672
+ "grad_norm": 0.44218549132347107,
673
+ "param_norm": 23.444210052490234,
674
+ "grad_to_weight_ratio": 0.018861181090487775
675
+ },
676
+ "decoder.layers.3.self_attention_layer.output_linear.weight": {
677
+ "grad_norm": 0.3175715208053589,
678
+ "param_norm": 21.424062728881836,
679
+ "grad_to_weight_ratio": 0.014823123178090076
680
+ },
681
+ "decoder.layers.3.self_attention_layer.output_linear.bias": {
682
+ "grad_norm": 0.04501575604081154,
683
+ "param_norm": 0.7656175494194031,
684
+ "grad_to_weight_ratio": 0.058796661694719386
685
+ },
686
+ "decoder.layers.3.cross_attention_layer.query_linear.weight": {
687
+ "grad_norm": 0.17294764518737793,
688
+ "param_norm": 35.09070587158203,
689
+ "grad_to_weight_ratio": 0.004928588379506878
690
+ },
691
+ "decoder.layers.3.cross_attention_layer.key_linear.weight": {
692
+ "grad_norm": 0.15117591619491577,
693
+ "param_norm": 34.5621223449707,
694
+ "grad_to_weight_ratio": 0.004374034519234601
695
+ },
696
+ "decoder.layers.3.cross_attention_layer.value_linear.weight": {
697
+ "grad_norm": 0.27421149611473083,
698
+ "param_norm": 32.42921447753906,
699
+ "grad_to_weight_ratio": 0.008455693439773114
700
+ },
701
+ "decoder.layers.3.cross_attention_layer.output_linear.weight": {
702
+ "grad_norm": 0.2784635126590729,
703
+ "param_norm": 31.322601318359375,
704
+ "grad_to_weight_ratio": 0.00889017836765192
705
+ },
706
+ "decoder.layers.3.cross_attention_layer.output_linear.bias": {
707
+ "grad_norm": 0.030515627935528755,
708
+ "param_norm": 2.5462377071380615,
709
+ "grad_to_weight_ratio": 0.011984595094939484
710
+ },
711
+ "decoder.layers.3.feed_forward.fc1.weight": {
712
+ "grad_norm": 0.5449442863464355,
713
+ "param_norm": 40.63393020629883,
714
+ "grad_to_weight_ratio": 0.013411065175820677
715
+ },
716
+ "decoder.layers.3.feed_forward.fc1.bias": {
717
+ "grad_norm": 0.02406179904937744,
718
+ "param_norm": 3.274101734161377,
719
+ "grad_to_weight_ratio": 0.0073491299302992615
720
+ },
721
+ "decoder.layers.3.feed_forward.fc2.weight": {
722
+ "grad_norm": 0.38977277278900146,
723
+ "param_norm": 38.438724517822266,
724
+ "grad_to_weight_ratio": 0.010140106823999106
725
+ },
726
+ "decoder.layers.3.feed_forward.fc2.bias": {
727
+ "grad_norm": 0.04156862571835518,
728
+ "param_norm": 1.3945589065551758,
729
+ "grad_to_weight_ratio": 0.029807723089308385
730
+ },
731
+ "decoder.layers.3.norm1.weight": {
732
+ "grad_norm": 0.033089529722929,
733
+ "param_norm": 22.777145385742188,
734
+ "grad_to_weight_ratio": 0.001452751394546597
735
+ },
736
+ "decoder.layers.3.norm1.bias": {
737
+ "grad_norm": 0.033036645501852036,
738
+ "param_norm": 3.332117795944214,
739
+ "grad_to_weight_ratio": 0.009914609123979247
740
+ },
741
+ "decoder.layers.3.norm2.weight": {
742
+ "grad_norm": 0.04525093361735344,
743
+ "param_norm": 19.743022918701172,
744
+ "grad_to_weight_ratio": 0.0022919962056311112
745
+ },
746
+ "decoder.layers.3.norm2.bias": {
747
+ "grad_norm": 0.041699592024087906,
748
+ "param_norm": 4.823736190795898,
749
+ "grad_to_weight_ratio": 0.008644666784150769
750
+ },
751
+ "decoder.layers.3.norm3.weight": {
752
+ "grad_norm": 0.034289825707674026,
753
+ "param_norm": 31.38285255432129,
754
+ "grad_to_weight_ratio": 0.0010926293474539926
755
+ },
756
+ "decoder.layers.3.norm3.bias": {
757
+ "grad_norm": 0.033960916101932526,
758
+ "param_norm": 3.2170767784118652,
759
+ "grad_to_weight_ratio": 0.010556451847781836
760
+ }
761
+ },
762
+ "grouped": {
763
+ "embedding": {
764
+ "sum": 1.3044230937957764,
765
+ "count": 1.0,
766
+ "max": 1.3044230937957764,
767
+ "avg": 1.3044230937957764
768
+ },
769
+ "encoder.layer0.self_attn": {
770
+ "sum": 1.209842188283801,
771
+ "count": 5.0,
772
+ "max": 0.37529751658439636,
773
+ "avg": 0.2419684376567602
774
+ },
775
+ "encoder.layer0.ff": {
776
+ "sum": 0.5316245863214135,
777
+ "count": 4.0,
778
+ "max": 0.2714630365371704,
779
+ "avg": 0.13290614658035338
780
+ },
781
+ "encoder.layer0.norm": {
782
+ "sum": 0.17787226289510727,
783
+ "count": 4.0,
784
+ "max": 0.05286872386932373,
785
+ "avg": 0.04446806572377682
786
+ },
787
+ "encoder.layer1.self_attn": {
788
+ "sum": 1.1516140773892403,
789
+ "count": 5.0,
790
+ "max": 0.4261511266231537,
791
+ "avg": 0.23032281547784805
792
+ },
793
+ "encoder.layer1.ff": {
794
+ "sum": 0.5532910721376538,
795
+ "count": 4.0,
796
+ "max": 0.2787674069404602,
797
+ "avg": 0.13832276803441346
798
+ },
799
+ "encoder.layer1.norm": {
800
+ "sum": 0.18069618567824364,
801
+ "count": 4.0,
802
+ "max": 0.05488703399896622,
803
+ "avg": 0.04517404641956091
804
+ },
805
+ "encoder.layer2.self_attn": {
806
+ "sum": 1.0703937783837318,
807
+ "count": 5.0,
808
+ "max": 0.39241737127304077,
809
+ "avg": 0.21407875567674636
810
+ },
811
+ "encoder.layer2.ff": {
812
+ "sum": 0.6253449441865087,
813
+ "count": 4.0,
814
+ "max": 0.3147575855255127,
815
+ "avg": 0.15633623604662716
816
+ },
817
+ "encoder.layer2.norm": {
818
+ "sum": 0.19378938153386116,
819
+ "count": 4.0,
820
+ "max": 0.06715068221092224,
821
+ "avg": 0.04844734538346529
822
+ },
823
+ "encoder.layer3.self_attn": {
824
+ "sum": 1.2026191465556622,
825
+ "count": 5.0,
826
+ "max": 0.4884301722049713,
827
+ "avg": 0.24052382931113242
828
+ },
829
+ "encoder.layer3.ff": {
830
+ "sum": 0.7190244328230619,
831
+ "count": 4.0,
832
+ "max": 0.3993653655052185,
833
+ "avg": 0.17975610820576549
834
+ },
835
+ "encoder.layer3.norm": {
836
+ "sum": 0.43892237916588783,
837
+ "count": 4.0,
838
+ "max": 0.18994024395942688,
839
+ "avg": 0.10973059479147196
840
+ },
841
+ "decoder.layer0.self_attn": {
842
+ "sum": 1.1268274169415236,
843
+ "count": 5.0,
844
+ "max": 0.30432453751564026,
845
+ "avg": 0.2253654833883047
846
+ },
847
+ "decoder.layer0.cross_attn": {
848
+ "sum": 0.47923425026237965,
849
+ "count": 5.0,
850
+ "max": 0.14034530520439148,
851
+ "avg": 0.09584685005247592
852
+ },
853
+ "decoder.layer0.ff": {
854
+ "sum": 0.596704344265163,
855
+ "count": 4.0,
856
+ "max": 0.2960856854915619,
857
+ "avg": 0.14917608606629074
858
+ },
859
+ "decoder.layer0.norm": {
860
+ "sum": 0.2404648270457983,
861
+ "count": 6.0,
862
+ "max": 0.06990908831357956,
863
+ "avg": 0.04007747117429972
864
+ },
865
+ "decoder.layer1.self_attn": {
866
+ "sum": 0.8581791818141937,
867
+ "count": 5.0,
868
+ "max": 0.2795604467391968,
869
+ "avg": 0.17163583636283875
870
+ },
871
+ "decoder.layer1.cross_attn": {
872
+ "sum": 0.7454368509352207,
873
+ "count": 5.0,
874
+ "max": 0.20628413558006287,
875
+ "avg": 0.14908737018704415
876
+ },
877
+ "decoder.layer1.ff": {
878
+ "sum": 0.6912834532558918,
879
+ "count": 4.0,
880
+ "max": 0.33991485834121704,
881
+ "avg": 0.17282086331397295
882
+ },
883
+ "decoder.layer1.norm": {
884
+ "sum": 0.31600161641836166,
885
+ "count": 6.0,
886
+ "max": 0.103321373462677,
887
+ "avg": 0.052666936069726944
888
+ },
889
+ "decoder.layer2.self_attn": {
890
+ "sum": 1.0343263372778893,
891
+ "count": 5.0,
892
+ "max": 0.3782458007335663,
893
+ "avg": 0.20686526745557784
894
+ },
895
+ "decoder.layer2.cross_attn": {
896
+ "sum": 0.787099888548255,
897
+ "count": 5.0,
898
+ "max": 0.23608684539794922,
899
+ "avg": 0.157419977709651
900
+ },
901
+ "decoder.layer2.ff": {
902
+ "sum": 0.7863088380545378,
903
+ "count": 4.0,
904
+ "max": 0.42240867018699646,
905
+ "avg": 0.19657720951363444
906
+ },
907
+ "decoder.layer2.norm": {
908
+ "sum": 0.2730863727629185,
909
+ "count": 6.0,
910
+ "max": 0.08085499703884125,
911
+ "avg": 0.04551439546048641
912
+ },
913
+ "decoder.layer3.self_attn": {
914
+ "sum": 1.1342625804245472,
915
+ "count": 5.0,
916
+ "max": 0.44218549132347107,
917
+ "avg": 0.22685251608490944
918
+ },
919
+ "decoder.layer3.cross_attn": {
920
+ "sum": 0.9073141980916262,
921
+ "count": 5.0,
922
+ "max": 0.2784635126590729,
923
+ "avg": 0.18146283961832524
924
+ },
925
+ "decoder.layer3.ff": {
926
+ "sum": 1.0003474839031696,
927
+ "count": 4.0,
928
+ "max": 0.5449442863464355,
929
+ "avg": 0.2500868709757924
930
+ },
931
+ "decoder.layer3.norm": {
932
+ "sum": 0.22132744267582893,
933
+ "count": 6.0,
934
+ "max": 0.04525093361735344,
935
+ "avg": 0.03688790711263815
936
+ }
937
+ },
938
+ "missing": []
939
+ },
940
+ "attention": {
941
+ "summary": {
942
+ "encoder": [
943
+ {
944
+ "layer": 0,
945
+ "mean_entropy": 1.3633646965026855,
946
+ "mean_normalised_entropy": 0.38838931918144226
947
+ },
948
+ {
949
+ "layer": 1,
950
+ "mean_entropy": 0.6433506011962891,
951
+ "mean_normalised_entropy": 0.18644404411315918
952
+ },
953
+ {
954
+ "layer": 2,
955
+ "mean_entropy": 1.0018328428268433,
956
+ "mean_normalised_entropy": 0.2915217876434326
957
+ },
958
+ {
959
+ "layer": 3,
960
+ "mean_entropy": 1.1001973152160645,
961
+ "mean_normalised_entropy": 0.3180953860282898
962
+ }
963
+ ],
964
+ "decoder_self": [
965
+ {
966
+ "layer": 0,
967
+ "mean_entropy": 0.3746384084224701,
968
+ "mean_normalised_entropy": 0.10358868539333344
969
+ },
970
+ {
971
+ "layer": 1,
972
+ "mean_entropy": 0.7695723176002502,
973
+ "mean_normalised_entropy": 0.21214483678340912
974
+ },
975
+ {
976
+ "layer": 2,
977
+ "mean_entropy": 0.7980881333351135,
978
+ "mean_normalised_entropy": 0.22028915584087372
979
+ },
980
+ {
981
+ "layer": 3,
982
+ "mean_entropy": 0.6095401048660278,
983
+ "mean_normalised_entropy": 0.16934041678905487
984
+ }
985
+ ],
986
+ "decoder_cross": [
987
+ {
988
+ "layer": 0,
989
+ "mean_entropy": 0.9926103949546814,
990
+ "mean_normalised_entropy": 0.2929244041442871
991
+ },
992
+ {
993
+ "layer": 1,
994
+ "mean_entropy": 1.1003278493881226,
995
+ "mean_normalised_entropy": 0.3237256407737732
996
+ },
997
+ {
998
+ "layer": 2,
999
+ "mean_entropy": 0.7252426147460938,
1000
+ "mean_normalised_entropy": 0.21367527544498444
1001
+ },
1002
+ {
1003
+ "layer": 3,
1004
+ "mean_entropy": 0.626167356967926,
1005
+ "mean_normalised_entropy": 0.18314598500728607
1006
+ }
1007
+ ]
1008
+ },
1009
+ "flagged_layers": {}
1010
+ },
1011
+ "activations": {
1012
+ "encoder_layers": {
1013
+ "0": {
1014
+ "mean": -0.006741917226463556,
1015
+ "std": 0.7567456960678101,
1016
+ "max_abs": 6.33781623840332
1017
+ },
1018
+ "1": {
1019
+ "mean": -0.0020844819955527782,
1020
+ "std": 0.7163907885551453,
1021
+ "max_abs": 7.352891445159912
1022
+ },
1023
+ "2": {
1024
+ "mean": -0.0032328872475773096,
1025
+ "std": 0.7347663044929504,
1026
+ "max_abs": 9.826601028442383
1027
+ },
1028
+ "3": {
1029
+ "mean": -0.0013982581440359354,
1030
+ "std": 0.3635603189468384,
1031
+ "max_abs": 2.6102705001831055
1032
+ }
1033
+ },
1034
+ "decoder_cross_attention": {
1035
+ "0": {
1036
+ "query_std": 1.0075185298919678,
1037
+ "key_std": 0.3680627942085266,
1038
+ "value_std": 0.3680627942085266,
1039
+ "output_std": 0.2537617087364197
1040
+ },
1041
+ "1": {
1042
+ "query_std": 1.0873469114303589,
1043
+ "key_std": 0.3680627942085266,
1044
+ "value_std": 0.3680627942085266,
1045
+ "output_std": 0.31841492652893066
1046
+ },
1047
+ "2": {
1048
+ "query_std": 1.1087111234664917,
1049
+ "key_std": 0.3680627942085266,
1050
+ "value_std": 0.3680627942085266,
1051
+ "output_std": 0.39632153511047363
1052
+ },
1053
+ "3": {
1054
+ "query_std": 1.0010381937026978,
1055
+ "key_std": 0.3680627942085266,
1056
+ "value_std": 0.3680627942085266,
1057
+ "output_std": 0.40245166420936584
1058
+ }
1059
+ },
1060
+ "decoder_self_attention": {
1061
+ "0": {
1062
+ "mean": 0.17315351963043213,
1063
+ "std": 1.3055107593536377,
1064
+ "max_abs": 7.235065937042236
1065
+ },
1066
+ "1": {
1067
+ "mean": -0.011658968403935432,
1068
+ "std": 0.6399785280227661,
1069
+ "max_abs": 3.6515018939971924
1070
+ },
1071
+ "2": {
1072
+ "mean": -0.007804906461387873,
1073
+ "std": 0.6082821488380432,
1074
+ "max_abs": 5.065135478973389
1075
+ },
1076
+ "3": {
1077
+ "mean": -0.006232936400920153,
1078
+ "std": 0.6916216015815735,
1079
+ "max_abs": 11.009607315063477
1080
+ }
1081
+ }
1082
+ },
1083
+ "mask_usage": {
1084
+ "src_pad_fraction": 0.590625,
1085
+ "tgt_pad_fraction": 0.5855263157894737
1086
+ },
1087
+ "batch_index": 0,
1088
+ "missing_from_optimizer": []
1089
+ }
1090
+ ],
1091
+ "summary": {
1092
+ "gradient_groups": {
1093
+ "embedding": {
1094
+ "mean_grad_norm": 1.3044230937957764,
1095
+ "max_grad_norm": 1.3044230937957764
1096
+ },
1097
+ "encoder.layer0.self_attn": {
1098
+ "mean_grad_norm": 0.24196843802928925,
1099
+ "max_grad_norm": 0.24196843802928925
1100
+ },
1101
+ "encoder.layer0.ff": {
1102
+ "mean_grad_norm": 0.13290615379810333,
1103
+ "max_grad_norm": 0.13290615379810333
1104
+ },
1105
+ "encoder.layer0.norm": {
1106
+ "mean_grad_norm": 0.04446806758642197,
1107
+ "max_grad_norm": 0.04446806758642197
1108
+ },
1109
+ "encoder.layer1.self_attn": {
1110
+ "mean_grad_norm": 0.23032280802726746,
1111
+ "max_grad_norm": 0.23032280802726746
1112
+ },
1113
+ "encoder.layer1.ff": {
1114
+ "mean_grad_norm": 0.13832277059555054,
1115
+ "max_grad_norm": 0.13832277059555054
1116
+ },
1117
+ "encoder.layer1.norm": {
1118
+ "mean_grad_norm": 0.045174047350883484,
1119
+ "max_grad_norm": 0.045174047350883484
1120
+ },
1121
+ "encoder.layer2.self_attn": {
1122
+ "mean_grad_norm": 0.21407875418663025,
1123
+ "max_grad_norm": 0.21407875418663025
1124
+ },
1125
+ "encoder.layer2.ff": {
1126
+ "mean_grad_norm": 0.1563362330198288,
1127
+ "max_grad_norm": 0.1563362330198288
1128
+ },
1129
+ "encoder.layer2.norm": {
1130
+ "mean_grad_norm": 0.048447344452142715,
1131
+ "max_grad_norm": 0.048447344452142715
1132
+ },
1133
+ "encoder.layer3.self_attn": {
1134
+ "mean_grad_norm": 0.2405238300561905,
1135
+ "max_grad_norm": 0.2405238300561905
1136
+ },
1137
+ "encoder.layer3.ff": {
1138
+ "mean_grad_norm": 0.17975610494613647,
1139
+ "max_grad_norm": 0.17975610494613647
1140
+ },
1141
+ "encoder.layer3.norm": {
1142
+ "mean_grad_norm": 0.10973059386014938,
1143
+ "max_grad_norm": 0.10973059386014938
1144
+ },
1145
+ "decoder.layer0.self_attn": {
1146
+ "mean_grad_norm": 0.22536548972129822,
1147
+ "max_grad_norm": 0.22536548972129822
1148
+ },
1149
+ "decoder.layer0.cross_attn": {
1150
+ "mean_grad_norm": 0.09584684669971466,
1151
+ "max_grad_norm": 0.09584684669971466
1152
+ },
1153
+ "decoder.layer0.ff": {
1154
+ "mean_grad_norm": 0.14917609095573425,
1155
+ "max_grad_norm": 0.14917609095573425
1156
+ },
1157
+ "decoder.layer0.norm": {
1158
+ "mean_grad_norm": 0.04007747024297714,
1159
+ "max_grad_norm": 0.04007747024297714
1160
+ },
1161
+ "decoder.layer1.self_attn": {
1162
+ "mean_grad_norm": 0.17163583636283875,
1163
+ "max_grad_norm": 0.17163583636283875
1164
+ },
1165
+ "decoder.layer1.cross_attn": {
1166
+ "mean_grad_norm": 0.14908736944198608,
1167
+ "max_grad_norm": 0.14908736944198608
1168
+ },
1169
+ "decoder.layer1.ff": {
1170
+ "mean_grad_norm": 0.17282086610794067,
1171
+ "max_grad_norm": 0.17282086610794067
1172
+ },
1173
+ "decoder.layer1.norm": {
1174
+ "mean_grad_norm": 0.052666936069726944,
1175
+ "max_grad_norm": 0.052666936069726944
1176
+ },
1177
+ "decoder.layer2.self_attn": {
1178
+ "mean_grad_norm": 0.20686526596546173,
1179
+ "max_grad_norm": 0.20686526596546173
1180
+ },
1181
+ "decoder.layer2.cross_attn": {
1182
+ "mean_grad_norm": 0.15741997957229614,
1183
+ "max_grad_norm": 0.15741997957229614
1184
+ },
1185
+ "decoder.layer2.ff": {
1186
+ "mean_grad_norm": 0.19657720625400543,
1187
+ "max_grad_norm": 0.19657720625400543
1188
+ },
1189
+ "decoder.layer2.norm": {
1190
+ "mean_grad_norm": 0.04551439732313156,
1191
+ "max_grad_norm": 0.04551439732313156
1192
+ },
1193
+ "decoder.layer3.self_attn": {
1194
+ "mean_grad_norm": 0.22685252130031586,
1195
+ "max_grad_norm": 0.22685252130031586
1196
+ },
1197
+ "decoder.layer3.cross_attn": {
1198
+ "mean_grad_norm": 0.1814628392457962,
1199
+ "max_grad_norm": 0.1814628392457962
1200
+ },
1201
+ "decoder.layer3.ff": {
1202
+ "mean_grad_norm": 0.25008687376976013,
1203
+ "max_grad_norm": 0.25008687376976013
1204
+ },
1205
+ "decoder.layer3.norm": {
1206
+ "mean_grad_norm": 0.03688790649175644,
1207
+ "max_grad_norm": 0.03688790649175644
1208
+ }
1209
+ },
1210
+ "attention_normalised_entropy": {
1211
+ "encoder": [
1212
+ {
1213
+ "layer": 0,
1214
+ "mean_normalised_entropy": 0.38838931918144226,
1215
+ "max_normalised_entropy": 0.38838931918144226
1216
+ },
1217
+ {
1218
+ "layer": 1,
1219
+ "mean_normalised_entropy": 0.18644404411315918,
1220
+ "max_normalised_entropy": 0.18644404411315918
1221
+ },
1222
+ {
1223
+ "layer": 2,
1224
+ "mean_normalised_entropy": 0.2915217876434326,
1225
+ "max_normalised_entropy": 0.2915217876434326
1226
+ },
1227
+ {
1228
+ "layer": 3,
1229
+ "mean_normalised_entropy": 0.3180953860282898,
1230
+ "max_normalised_entropy": 0.3180953860282898
1231
+ }
1232
+ ],
1233
+ "decoder_self": [
1234
+ {
1235
+ "layer": 0,
1236
+ "mean_normalised_entropy": 0.10358868539333344,
1237
+ "max_normalised_entropy": 0.10358868539333344
1238
+ },
1239
+ {
1240
+ "layer": 1,
1241
+ "mean_normalised_entropy": 0.21214483678340912,
1242
+ "max_normalised_entropy": 0.21214483678340912
1243
+ },
1244
+ {
1245
+ "layer": 2,
1246
+ "mean_normalised_entropy": 0.22028915584087372,
1247
+ "max_normalised_entropy": 0.22028915584087372
1248
+ },
1249
+ {
1250
+ "layer": 3,
1251
+ "mean_normalised_entropy": 0.16934041678905487,
1252
+ "max_normalised_entropy": 0.16934041678905487
1253
+ }
1254
+ ],
1255
+ "decoder_cross": [
1256
+ {
1257
+ "layer": 0,
1258
+ "mean_normalised_entropy": 0.2929244041442871,
1259
+ "max_normalised_entropy": 0.2929244041442871
1260
+ },
1261
+ {
1262
+ "layer": 1,
1263
+ "mean_normalised_entropy": 0.3237256407737732,
1264
+ "max_normalised_entropy": 0.3237256407737732
1265
+ },
1266
+ {
1267
+ "layer": 2,
1268
+ "mean_normalised_entropy": 0.21367527544498444,
1269
+ "max_normalised_entropy": 0.21367527544498444
1270
+ },
1271
+ {
1272
+ "layer": 3,
1273
+ "mean_normalised_entropy": 0.18314598500728607,
1274
+ "max_normalised_entropy": 0.18314598500728607
1275
+ }
1276
+ ]
1277
+ },
1278
+ "flagged_attention_layers": {}
1279
+ }
1280
+ }
test_model_v1/debug/attention/diagnostics/encoder_activation_std.png ADDED
test_model_v1/debug/attention/diagnostics/gradient_norms.png ADDED
test_model_v1/manifest.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_dir": "/mnt/shared/Local/Projets/Transformer/outputs/test_model_20250925-115005",
3
+ "model": "test_model",
4
+ "resume": {
5
+ "mode": "best",
6
+ "source": "/mnt/shared/Local/Projets/Transformer/outputs/test_model_20250924-175245/checkpoints/best/checkpoint.pt",
7
+ "status": "loaded"
8
+ },
9
+ "latest": {
10
+ "path": "/mnt/shared/Local/Projets/Transformer/outputs/test_model_20250925-115005/checkpoints/latest/checkpoint.pt",
11
+ "epoch": 10,
12
+ "optimizer_step": 35670,
13
+ "batch_idx": 0,
14
+ "running_loss": 0.0,
15
+ "metadata": {
16
+ "train_loss": 1.5890974594954101,
17
+ "val_loss": 1.5723653676981884
18
+ },
19
+ "timestamp": "2025-09-25T16:17:29.670333",
20
+ "previous_path": "/mnt/shared/Local/Projets/Transformer/outputs/test_model_20250925-115005/checkpoints/latest/checkpoint_prev.pt"
21
+ },
22
+ "latest_previous": {
23
+ "path": "/mnt/shared/Local/Projets/Transformer/outputs/test_model_20250925-115005/checkpoints/latest/checkpoint_prev.pt",
24
+ "epoch": 9,
25
+ "optimizer_step": 35670,
26
+ "batch_idx": 14266,
27
+ "running_loss": 22670.064357161522,
28
+ "metadata": {},
29
+ "timestamp": "2025-09-25T16:15:41.672243",
30
+ "previous_path": null
31
+ },
32
+ "best": {
33
+ "path": "/mnt/shared/Local/Projets/Transformer/outputs/test_model_20250925-115005/checkpoints/best/checkpoint.pt",
34
+ "epoch": 10,
35
+ "optimizer_step": 35670,
36
+ "train_loss": 1.5890974594954101,
37
+ "val_loss": 1.5723653676981884,
38
+ "metadata": {
39
+ "train_loss": 1.5890974594954101,
40
+ "val_loss": 1.5723653676981884
41
+ },
42
+ "timestamp": "2025-09-25T16:17:30.033226"
43
+ },
44
+ "test": {
45
+ "test_loss": 1.5692907183949012,
46
+ "timestamp": "2025-09-25T17:06:55.316845"
47
+ }
48
+ }
test_model_v1/plots/loss_curves.png ADDED
test_model_v1/tokenizer/bpe_8k_old.json ADDED
The diff for this file is too large to render. See raw diff