Upload config.json
Browse files- config.json +17 -0
config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"library": "keras",
|
| 3 |
+
"task": "image-to-image",
|
| 4 |
+
"project": "galaxy",
|
| 5 |
+
"input_image": {
|
| 6 |
+
"channels": 3,
|
| 7 |
+
"height": 256,
|
| 8 |
+
"width": 256,
|
| 9 |
+
"normalization": "[-1, 1]"
|
| 10 |
+
},
|
| 11 |
+
"models": {
|
| 12 |
+
"classifier": "models/galaxy_classifier_resnet50.h5",
|
| 13 |
+
"simplifier_cgan": "models/galaxy_simplifier_cgan.h5",
|
| 14 |
+
"postprocess_cgan": "models/postprocess_cgan.h5"
|
| 15 |
+
},
|
| 16 |
+
"inference_script": "predict.py"
|
| 17 |
+
}
|