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

Upload folder using huggingface_hub

Browse files
mnist_cnn/README.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # mnist cnn
2
+
3
+ ## Summary
4
+ - Task: classification
5
+ - Epochs: 10
6
+ - Final val loss: 0.025668
7
+ - Final val accuracy: 0.990500
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_cnn/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.27155180079142255,
16
+ 0.07805133153001467,
17
+ 0.053526351799567544,
18
+ 0.04224113336155812,
19
+ 0.0353754817550381,
20
+ 0.029042773660769065,
21
+ 0.026445073273032905,
22
+ 0.02227028990785281,
23
+ 0.019106112775330742,
24
+ 0.0174551628947258
25
+ ],
26
+ "val_loss": [
27
+ 0.08769645810127258,
28
+ 0.06291426669359207,
29
+ 0.044275214569829406,
30
+ 0.037819712390610945,
31
+ 0.03138333628252148,
32
+ 0.031376042736973614,
33
+ 0.027713437589257955,
34
+ 0.036022475183196366,
35
+ 0.04514393778592348,
36
+ 0.025668119363416918
37
+ ],
38
+ "train_acc": [
39
+ 0.9132166666666667,
40
+ 0.97515,
41
+ 0.9829333333333333,
42
+ 0.98665,
43
+ 0.9888333333333333,
44
+ 0.9909,
45
+ 0.991,
46
+ 0.99275,
47
+ 0.99365,
48
+ 0.99405
49
+ ],
50
+ "val_acc": [
51
+ 0.9744,
52
+ 0.9794,
53
+ 0.9864,
54
+ 0.9877,
55
+ 0.9894,
56
+ 0.9892,
57
+ 0.991,
58
+ 0.9883,
59
+ 0.9861,
60
+ 0.9905
61
+ ]
62
+ }
mnist_cnn/meta.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": "mnist",
3
+ "model": "cnn",
4
+ "task": "classification",
5
+ "epochs": 10,
6
+ "final_val_loss": 0.025668119363416918,
7
+ "final_val_acc": 0.9905
8
+ }
mnist_cnn/model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98a22d9bdf42d151f9243f3ce71ca88f95d25039bed2013f23dfe877c9410c2f
3
+ size 2198321
mnist_cnn/train_features.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc4c50376c718f6567976d91c95d3a5b96d9781ed0433dc2cff641be3621f26c
3
+ size 61921949
mnist_cnn/val_features.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6836bbd8df4a6eb1f037dd9e936b8bf0ad6eb07ff77a2ddfa1fe2f6a105fdd90
3
+ size 10321933