erukude commited on
Commit
0c1fd8e
·
verified ·
1 Parent(s): 248fee3

Added Config File

Browse files
Files changed (1) hide show
  1. config.json +22 -0
config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "library": "keras",
3
+ "task": "image-to-image",
4
+ "project": "galaxy-simplifier",
5
+ "paper": {
6
+ "title": "Galaxy image simplification using Generative AI",
7
+ "year": 2025,
8
+ "doi": "10.1016/j.ascom.2025.100990"
9
+ },
10
+ "input_image": {
11
+ "channels": 3,
12
+ "height": 256,
13
+ "width": 256,
14
+ "normalization": "[-1, 1]"
15
+ },
16
+ "models": {
17
+ "classifier": "models/galaxy_classifier_resnet50.h5",
18
+ "simplifier_cgan": "models/galaxy_simplifier_cgan.h5",
19
+ "postprocess_cgan": "models/postprocess_cgan.h5"
20
+ },
21
+ "inference_script": "predict.py"
22
+ }