gihakkk commited on
Commit
1b1af26
β€’
1 Parent(s): 19b54b3

Create config.json

Browse files
Files changed (1) hide show
  1. 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
+ }