feat: Release version 1.0
Browse files- config.json +19 -0
- metrics.json +6 -0
- model_1.0.pth +3 -0
config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "Custom CNN",
|
3 |
+
"input_size": [
|
4 |
+
224,
|
5 |
+
224
|
6 |
+
],
|
7 |
+
"num_classes": 6,
|
8 |
+
"transformations": [
|
9 |
+
"RandomHorizontalFlip",
|
10 |
+
"RandomRotation(15)",
|
11 |
+
"ColorJitter(brightness=0.2, contrast=0.2)",
|
12 |
+
"Resize(224x224)",
|
13 |
+
"ToTensor"
|
14 |
+
],
|
15 |
+
"optimizer": "Adam",
|
16 |
+
"learning_rate": 0.001,
|
17 |
+
"batch_size": 32,
|
18 |
+
"epochs": 10
|
19 |
+
}
|
metrics.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"train_loss": 1.063828223802912,
|
3 |
+
"train_accuracy": 59.4607964382884,
|
4 |
+
"val_loss": 1.1855051144957542,
|
5 |
+
"val_accuracy": 55.78635014836795
|
6 |
+
}
|
model_1.0.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b87e81ba8d1e0c6825817f646ce121aff6d2b1892ee6cf07635502cdf5384910
|
3 |
+
size 134
|