terraflow.validation¶
Spatial-block cross-validation (Roberts et al. 2017) on the suitability label grid. Invoked from the CLI as terraflow validate -c config.yml; results are appended to report.json under the validation key. For spatial-autocorrelation diagnostics on score residuals, call esda.Moran directly on features.parquet; for inter-rater agreement against a reference label set, call sklearn.metrics.cohen_kappa_score.
API Reference¶
validation
¶
Model validation module — spatial block cross-validation.
Users wanting spatial autocorrelation diagnostics (e.g. Moran's I) should
call esda.Moran directly on features.parquet. Users wanting
inter-rater agreement (e.g. Cohen's κ) should call
sklearn.metrics.cohen_kappa_score directly. TerraFlow does not
maintain wrappers around either, since neither earns Methods-section
citations.
run_validation(config_path)
¶
Run model validation and append a validation block to report.json.
Loads the TerraFlow config, locates the most recent pipeline run directory
(the one with the latest features.parquet), and computes spatial block
CV. Results are written atomically to the existing report.json under
the "validation" key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_path
|
Path
|
Path to a TerraFlow YAML config file that includes a |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Path |
Path
|
Absolute path to the updated |
Raises:
| Type | Description |
|---|---|
ValueError:
|
If the config has no |
FileNotFoundError:
|
If no pipeline run directory containing |
Source code in terraflow/validation.py
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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |