-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf97ee6
commit fc32e3d
Showing
6 changed files
with
373 additions
and
317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
{ | ||
"track": "RandomEvents", | ||
"train_pickle": "pickle/grid_dict.pkl", | ||
"test_pickle": "pickle/grid_dict.pkl", | ||
"negative_pickle":"pickle/negatives_only.pkl", | ||
"train_pickle": "pickle/grid_dict.pkl", // The pickle containing the GRD training data | ||
"test_pickle": "pickle/grid_dict.pkl", // The pickle containing the GRD testing data | ||
"negative_pickle":"pickle/negatives_only.pkl", // Pickle containing only negatives (optional) | ||
"slc": true, // 'true' in order to use SLC data instead of GRD | ||
"train_json": "slc_grid_pwater_0.0001.json", // The JSON containing the SLC training data | ||
"test_json": "slc_grid_pwater_0.json", // The JSON containing the SLC testing data | ||
"slc_root_path": "", // The path containing the SLC data | ||
"inputs": ["pre_event_1","pre_event_2", "post_event"], | ||
"channels": [ "vv","vh"], | ||
"water_percentage": "[0,100]", | ||
"data_augmentations":false, | ||
"data_augmentations": false, | ||
"clamp_input": 0.15, | ||
"scale_input": "normalize", | ||
"data_mean": [0.0953, 0.0264], | ||
"data_std": [0.0427, 0.0215], | ||
"dem_mean":67.0293, | ||
"dem_std":1765.0062, | ||
"dem":false, | ||
"slope":false, | ||
"slope_mean":2.9482, | ||
"slope_std":79.2493, | ||
"reverse_scaling":false, | ||
"uint8":false | ||
"dem_mean": 67.0293, | ||
"dem_std": 1765.0062, | ||
"slc_mean": [2.2367e-02, 3.9242e+01, 8.1130e+01, 4.3526e-02], | ||
"slc_std":[ 1.2843, 25.6152, 58.0151, 1.2844], | ||
"dem": false, | ||
"slope": false, | ||
"slope_mean": 2.9482, | ||
"slope_std": 79.2493, | ||
"reverse_scaling": false, | ||
"uint8": false | ||
} |
Oops, something went wrong.