Chandra Prakash Bathula commited on
Create config.json
Browse files- config.json +18 -0
config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "mnist-mlp",
|
| 3 |
+
"architecture": "MLP",
|
| 4 |
+
"task": "image-classification",
|
| 5 |
+
"dataset": "MNIST",
|
| 6 |
+
"framework": "PyTorch",
|
| 7 |
+
|
| 8 |
+
"input_size": 784,
|
| 9 |
+
"hidden_layers": [128, 64],
|
| 10 |
+
"activation": "relu",
|
| 11 |
+
"output_size": 10,
|
| 12 |
+
|
| 13 |
+
"loss_function": "cross_entropy",
|
| 14 |
+
"optimizer": "adam",
|
| 15 |
+
|
| 16 |
+
"image_size": [28, 28],
|
| 17 |
+
"num_classes": 10
|
| 18 |
+
}
|