octopus.diagnostics
Diagnostics package — interactive study-level diagnostics from saved parquet files.
Provides :class:StudyDiagnostics for exploring predictions, feature importances,
and Optuna hyperparameter tuning results across all outer splits and tasks.
No model loading is performed — all data comes from saved parquet artifacts.
Example::
from octopus.diagnostics import StudyDiagnostics
diag = StudyDiagnostics("./studies/my_study/")
diag.plot_feature_importance()
diag.plot_optuna_trials()
StudyDiagnostics
Interactive study-level diagnostics from saved parquet files.
Loads predictions, feature importances, scores, and Optuna results from the study directory structure. No model loading is performed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
study_path
|
str | Path
|
Path to the study directory. |
required |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If the study directory or study_config.json does not exist. |
Example::
from octopus.diagnostics import StudyDiagnostics
diag = StudyDiagnostics("./studies/my_study/")
diag.plot_feature_importance()
diag.plot_optuna_trials()
Source code in octopus/diagnostics/core.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 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 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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | |
config
property
Study configuration dictionary.
feature_importances
property
All feature importances across outersplits and tasks (lazy-loaded).
ml_type
property
Machine learning type (classification, regression, timetoevent).
optuna_trials
property
All Optuna trial results across outersplits and tasks (lazy-loaded).
predictions
property
All predictions across outersplits and tasks (lazy-loaded).
scores
property
All scores across outersplits and tasks (lazy-loaded).
study_path
property
Path to the study directory.
plot_confusion_matrix(outersplit_id=None, task_id=None, training_id=None)
Plot confusion matrix heatmap (classification only).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
outersplit_id
|
int | None
|
Outer split to filter on. |
None
|
task_id
|
int | None
|
Task to filter on. |
None
|
training_id
|
str | None
|
Inner split / training ID to filter on. |
None
|
Source code in octopus/diagnostics/core.py
plot_feature_importance(outersplit_id=None, task_id=None, training_id=None, fi_method=None)
Plot feature importance bar chart.
If ipywidgets is available and parameters are None, shows interactive dropdowns. Otherwise uses provided values or defaults.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
outersplit_id
|
int | None
|
Outer split to filter on. |
None
|
task_id
|
int | None
|
Task to filter on. |
None
|
training_id
|
str | None
|
Training ID to filter on. |
None
|
fi_method
|
str | FIResultLabel | None
|
FI method to filter on. |
None
|
Source code in octopus/diagnostics/core.py
plot_optuna_hyperparameters(outersplit_id=None, task_id=None, model_type=None)
Plot Optuna hyperparameter scatter plots.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
outersplit_id
|
int | None
|
Outer split to filter on. |
None
|
task_id
|
int | None
|
Task to filter on. |
None
|
model_type
|
str | None
|
Model type to filter on. |
None
|
Source code in octopus/diagnostics/core.py
plot_optuna_trial_counts()
Plot bar chart of unique trial counts per model type.
Source code in octopus/diagnostics/core.py
plot_optuna_trials(outersplit_id=None, task_id=None, direction=MetricDirection.MINIMIZE)
Plot Optuna trial scatter + cumulative best line.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
outersplit_id
|
int | None
|
Outer split to filter on. |
None
|
task_id
|
int | None
|
Task to filter on. |
None
|
direction
|
MetricDirection
|
Optimization direction ('minimize' or 'maximize'). |
MINIMIZE
|
Source code in octopus/diagnostics/core.py
plot_predictions_vs_truth(outersplit_id=None, task_id=None, training_id=None)
Plot prediction vs ground truth scatter (regression only).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
outersplit_id
|
int | None
|
Outer split to filter on. |
None
|
task_id
|
int | None
|
Task to filter on. |
None
|
training_id
|
str | None
|
Inner split / training ID to filter on. |
None
|