Create config.json
Browse files- config.json +14 -0
config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "autoencoder",
|
3 |
+
"model_name": "autoencoder_model",
|
4 |
+
"framework": "tensorflow",
|
5 |
+
"input_shape": [152, 152, 3],
|
6 |
+
"optimizer": "adam",
|
7 |
+
"loss": "binary_crossentropy",
|
8 |
+
"epochs": 50,
|
9 |
+
"dataset": {
|
10 |
+
"training_samples": 1600, // μ¬μ©ν λ°μ΄ν°μ
μ λ§κ² μμ
|
11 |
+
"validation_samples": 400 // μ¬μ©ν λ°μ΄ν°μ
μ λ§κ² μμ
|
12 |
+
},
|
13 |
+
"metrics": ["loss"]
|
14 |
+
}
|