abir-hr196 commited on
Commit
a4ece92
·
verified ·
1 Parent(s): 4bb8ce1

Upload folder using huggingface_hub

Browse files
mnist_mlp/README.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # mnist mlp
2
+
3
+ ## Summary
4
+ - Task: classification
5
+ - Epochs: 10
6
+ - Final val loss: 0.078887
7
+ - Final val accuracy: 0.981200
8
+
9
+ ## Artifacts
10
+ - model.pt: model weights
11
+ - history.json: per-epoch training and validation metrics
12
+ - train_features.pt: training-set feature embeddings and targets
13
+ - val_features.pt: validation-set feature embeddings and targets
14
+ - meta.json: run metadata
15
+
16
+ ## Metric Keys
17
+ - epoch, train_loss, val_loss, train_acc, val_acc
mnist_mlp/history.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": [
3
+ 1,
4
+ 2,
5
+ 3,
6
+ 4,
7
+ 5,
8
+ 6,
9
+ 7,
10
+ 8,
11
+ 9,
12
+ 10
13
+ ],
14
+ "train_loss": [
15
+ 0.22913320637543996,
16
+ 0.08571905783017476,
17
+ 0.05998642805715402,
18
+ 0.041248609277109306,
19
+ 0.033385245773320395,
20
+ 0.0271177135831366,
21
+ 0.023171186356370648,
22
+ 0.023494318472842377,
23
+ 0.01790868187599505,
24
+ 0.01680551521059436
25
+ ],
26
+ "val_loss": [
27
+ 0.10461914210021496,
28
+ 0.08678505564853549,
29
+ 0.07292555762007832,
30
+ 0.06733576019098982,
31
+ 0.083990372170927,
32
+ 0.07575358844574075,
33
+ 0.08832426459754351,
34
+ 0.07990815137868049,
35
+ 0.07880833789101016,
36
+ 0.07888703185170161
37
+ ],
38
+ "train_acc": [
39
+ 0.93,
40
+ 0.9734,
41
+ 0.9809833333333333,
42
+ 0.9867166666666667,
43
+ 0.9887166666666667,
44
+ 0.99075,
45
+ 0.9925,
46
+ 0.9919833333333333,
47
+ 0.9941166666666666,
48
+ 0.9946
49
+ ],
50
+ "val_acc": [
51
+ 0.9677,
52
+ 0.9737,
53
+ 0.9771,
54
+ 0.9797,
55
+ 0.9752,
56
+ 0.9783,
57
+ 0.9777,
58
+ 0.9782,
59
+ 0.9814,
60
+ 0.9812
61
+ ]
62
+ }
mnist_mlp/meta.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": "mnist",
3
+ "model": "mlp",
4
+ "task": "classification",
5
+ "epochs": 10,
6
+ "final_val_loss": 0.07888703185170161,
7
+ "final_val_acc": 0.9812
8
+ }
mnist_mlp/model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fce199245b2c4b783b68caa7c2ab62caa5fc21872361e156ad74c5b6f3bb0ac0
3
+ size 2146045
mnist_mlp/train_features.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ba1d0b22e6a7d90a800445c279a34e79758ceec9762a7309564e84bf26fe8cc
3
+ size 31201949
mnist_mlp/val_features.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63fc8e728098719e90d9c444b90b7421f129f1a7eed389323ff0a87573d384c6
3
+ size 5201933