HY2333 commited on
Commit
bc391b4
·
verified ·
1 Parent(s): 6d95837

Add Mueller matrix normalization guidance: metadata/parameter_ranges.json

Browse files
Files changed (1) hide show
  1. metadata/parameter_ranges.json +16 -9
metadata/parameter_ranges.json CHANGED
@@ -1,33 +1,40 @@
1
  {
2
- "units": "TODO: physical_units_or_normalized",
 
 
 
 
 
3
  "parameters": {
4
  "D": {
5
  "range": [0, 1],
6
- "description": "TODO"
7
  },
8
  "Delta": {
9
  "range": [0, 1],
10
- "description": "TODO"
11
  },
12
  "eta": {
13
  "range": [0, "pi"],
14
- "description": "TODO"
15
  },
16
  "theta": {
17
  "range": ["-pi/2", "pi/2"],
18
- "description": "TODO"
19
  },
20
  "psi": {
21
  "range": ["-pi/2", "pi/2"],
22
- "description": "TODO"
23
  },
24
  "R": {
25
  "range": [0, "pi"],
26
- "description": "TODO"
27
  }
28
  },
29
  "normalization": {
30
- "applied": "TODO",
31
- "inverse_transform": "TODO"
 
 
32
  }
33
  }
 
1
  {
2
+ "units": "mixed_measured_and_normalized_values",
3
+ "mueller_matrix": {
4
+ "nominal_range": [-1, 1],
5
+ "stored_values": "measured_or_processed_float32_values_not_forcibly_clipped",
6
+ "note": "Real measured Mueller matrix elements may slightly exceed the nominal [-1, 1] range because of acquisition noise, calibration differences, numerical processing, or normalization error. Users should inspect distributions and apply task-appropriate clipping, standardization, or normalization before training."
7
+ },
8
  "parameters": {
9
  "D": {
10
  "range": [0, 1],
11
+ "description": "Diattenuation-related target modality."
12
  },
13
  "Delta": {
14
  "range": [0, 1],
15
+ "description": "Depolarization-related target modality."
16
  },
17
  "eta": {
18
  "range": [0, "pi"],
19
+ "description": "Retardance-related target modality."
20
  },
21
  "theta": {
22
  "range": ["-pi/2", "pi/2"],
23
+ "description": "Orientation-related target modality."
24
  },
25
  "psi": {
26
  "range": ["-pi/2", "pi/2"],
27
+ "description": "Orientation-related target modality."
28
  },
29
  "R": {
30
  "range": [0, "pi"],
31
+ "description": "Retardance-related target modality."
32
  }
33
  },
34
  "normalization": {
35
+ "mueller": "not_forcibly_clipped_to_nominal_range",
36
+ "waveplate_targets": "stored_from_source_npy_as_float32",
37
+ "spectral_targets": "converted_from_grayscale_png_uint8_to_float32_divided_by_255",
38
+ "recommendation": "Use training-set statistics or physically motivated clipping/normalization according to the downstream protocol."
39
  }
40
  }