galaxy10_converter
orchard.data_handler.fetchers.galaxy10_converter
¶
Galaxy10 DECals Dataset Converter.
Downloads and converts Galaxy10 DECals HDF5 dataset to NPZ format compatible with the Orchard ML pipeline. Creates train/val/test splits.
download_galaxy10_h5(url, target_h5, retries=3, timeout=600, chunk_size=8192)
¶
Downloads Galaxy10 HDF5 file with retry logic.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
Download URL |
required |
target_h5
|
Path
|
Path to save HDF5 file |
required |
retries
|
int
|
Number of download attempts |
3
|
timeout
|
int
|
Download timeout in seconds |
600
|
chunk_size
|
int
|
Streaming chunk size in bytes. |
8192
|
Source code in orchard/data_handler/fetchers/galaxy10_converter.py
convert_galaxy10_to_npz(h5_path, output_npz, target_size=224, seed=42)
¶
Converts Galaxy10 HDF5 to NPZ format with train/val/test splits.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
h5_path
|
Path
|
Path to downloaded HDF5 file |
required |
output_npz
|
Path
|
Path for output NPZ file |
required |
target_size
|
int
|
Target image size (default 224) |
224
|
seed
|
int
|
Random seed for splits |
42
|
Source code in orchard/data_handler/fetchers/galaxy10_converter.py
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | |
ensure_galaxy10_npz(metadata)
¶
Ensures Galaxy10 is downloaded and converted to NPZ format.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
metadata
|
DatasetMetadata
|
DatasetMetadata with URL and path |
required |
Returns:
| Type | Description |
|---|---|
Path
|
Path to validated NPZ file |