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 |
+
}
|