File size: 435 Bytes
2104dbe | 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 | {
"architecture": "resnet18",
"framework": "pytorch",
"task": "image-classification",
"num_classes": 10,
"classifier": {
"type": "Sequential",
"layers": [
{
"Linear": [
512,
120
]
},
"ReLU",
{
"Dropout": 0.2
},
{
"Linear": [
120,
10
]
}
]
},
"input_size": [
3,
224,
224
]
} |