Upload config.json with huggingface_hub
Browse files- config.json +14 -0
config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "efficientnet",
|
3 |
+
"model_name": "efficientnet-b0",
|
4 |
+
"pretrained": true,
|
5 |
+
"num_classes": 101,
|
6 |
+
"image_size": 224,
|
7 |
+
"input_channels": 3,
|
8 |
+
"optimizer": "Adam",
|
9 |
+
"learning_rate": 0.001,
|
10 |
+
"epoch": 10,
|
11 |
+
"loss_function": "CrossEntropyLoss",
|
12 |
+
"normalize_mean": [0.485, 0.456, 0.406],
|
13 |
+
"normalize_std": [0.229, 0.224, 0.225]
|
14 |
+
}
|