Spaces:
Build error
Build error
File size: 873 Bytes
4df8e95 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | {
"model_type": "neural_network",
"architecture": {
"layers": [
{
"type": "input",
"shape": [None, 784]
},
{
"type": "dense",
"units": 128,
"activation": "relu"
},
{
"type": "dense",
"units": 64,
"activation": "relu"
},
{
"type": "dense",
"units": 10,
"activation": "softmax"
}
]
},
"training_config": {
"optimizer": "adam",
"loss": "categorical_crossentropy",
"metrics": ["accuracy"]
},
"hyperparameters": {
"learning_rate": 0.001,
"batch_size": 32,
"epochs": 50
},
"input_preprocessing": {
"normalization": "min_max",
"resize": [28, 28],
"color_mode": "grayscale"
},
"metadata": {
"created_at": "2024-01-01",
"version": "1.0.0",
"task": "classification"
}
} |