HY2333 commited on
Commit
070d663
·
verified ·
1 Parent(s): 068ee29

Upload external_waveplate pilot: metadata/schema.json

Browse files
Files changed (1) hide show
  1. metadata/schema.json +78 -0
metadata/schema.json ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "columns": {
3
+ "sample_id": {
4
+ "type": "string",
5
+ "required": true,
6
+ "description": "Unique public sample identifier."
7
+ },
8
+ "source_id": {
9
+ "type": "string",
10
+ "required": true,
11
+ "description": "Original specimen, image, or measurement identifier."
12
+ },
13
+ "split": {
14
+ "type": "string",
15
+ "required": true,
16
+ "description": "One of train, validation, test, external_waveplate, external_spectral_*."
17
+ },
18
+ "subset": {
19
+ "type": "string",
20
+ "required": true,
21
+ "description": "One of healthy_bone_cell, waveplate, spectral."
22
+ },
23
+ "specimen_type": {
24
+ "type": "string",
25
+ "required": true,
26
+ "description": "Controlled vocabulary. Current primary split value: healthy_bone_cell."
27
+ },
28
+ "wavelength_nm": {
29
+ "type": "int32",
30
+ "required": true,
31
+ "description": "Measurement wavelength in nanometers."
32
+ },
33
+ "plate_type": {
34
+ "type": "string",
35
+ "required": false,
36
+ "description": "Waveplate type for external_waveplate rows, e.g. hwp or qwp."
37
+ },
38
+ "angle_label": {
39
+ "type": "string",
40
+ "required": false,
41
+ "description": "Waveplate angle label from the source folder, e.g. 0deg, n22, p45."
42
+ },
43
+ "angle_deg": {
44
+ "type": "float32",
45
+ "required": false,
46
+ "description": "Waveplate angle in degrees. Labels n22/p22 are interpreted as +/-22.5 degrees; n67/p67 as +/-67.5 degrees."
47
+ },
48
+ "source_path": {
49
+ "type": "string",
50
+ "required": false,
51
+ "description": "Relative source path used during conversion."
52
+ },
53
+ "mueller_shape": {
54
+ "type": "int32[3]",
55
+ "required": true,
56
+ "description": "Stored tensor shape. External waveplate pilot rows are [16, 200, 200]."
57
+ },
58
+ "target_shape": {
59
+ "type": "int32[3]",
60
+ "required": true,
61
+ "description": "Stored tensor shape. External waveplate pilot rows are [6, 200, 200]."
62
+ },
63
+ "mueller": {
64
+ "type": "float32[channel,height,width]",
65
+ "required": true,
66
+ "description": "Channel-first Mueller matrix tensor."
67
+ },
68
+ "target": {
69
+ "type": "float32[channel,height,width]",
70
+ "required": true,
71
+ "description": "Channel-first Lu-Chipman reference output."
72
+ }
73
+ },
74
+ "todo": [
75
+ "Confirm final column set before Parquet conversion.",
76
+ "Decide whether to include preview_png or summary statistics."
77
+ ]
78
+ }