-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsample_runcommands.txt
More file actions
452 lines (381 loc) · 12.6 KB
/
Copy pathsample_runcommands.txt
File metadata and controls
452 lines (381 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
# ----------------------------------------------------------
# STREAMLINE SAMPLE RUN COMMANDS
# ----------------------------------------------------------
#
# This file gives example command-line workflows for the current
# refactored STREAMLINE pipeline (P1-P11).
#
# Notes:
# - Commands below are examples, not the only valid configuration.
# - Replace `out` and experiment names with your own paths as needed.
# - Some phases accept metadata defaults when labels / types are omitted.
# - Reporting can be run in standard mode or replication mode.
# - Replication requires that phases 1-9 have already completed.
# - Phase 7 ensembles are classification-only; skip Phase 7 for regression.
#
# Demo data included in this repository:
# - Binary classification: data/UCIBinaryClassification
# - Multiclass classification: data/UCIMulticlassClassification
# - Regression: data/UCIRegression
# - Replication: data/UCIRepBinaryClassification, data/UCIRepMulticlassClassification, data/UCIRepRegression
# ----------------------------------------------------------
# ==========================================================
# 0. Config-driven full pipeline examples
# ==========================================================
# These run the same P1-P11 runner classes used by the phase
# commands below, with shared and phase-specific arguments loaded
# from editable .cfg files. Use --dry_run first to inspect resolved calls.
python run.py \
-c run_configs/uci_binary_hcc.cfg \
--dry_run
python run.py \
-c run_configs/uci_binary_hcc.cfg
python run.py \
-c run_configs/uci_multiclass_student.cfg
python run.py \
-c run_configs/uci_regression_auto_mpg.cfg
# Useful partial-run controls:
python run.py \
-c run_configs/uci_binary_hcc.cfg \
--start_at p4
python run.py \
-c run_configs/uci_binary_hcc.cfg \
--stop_after p8
python run.py \
-c run_configs/uci_binary_hcc.cfg \
--only p6,p8,p11
python run.py \
-c run_configs/uci_binary_hcc.cfg \
--skip p3,p4
# ==========================================================
# 1. Optional discovery commands
# ==========================================================
python -m streamline.p2_impute_scale.p2_cli \
--output_path out \
--experiment_name DemoBinary \
--list-imputers
python -m streamline.p2_impute_scale.p2_cli \
--output_path out \
--experiment_name DemoBinary \
--list-scalers
python -m streamline.p3_feature_learning.p3_cli \
--output_path out \
--experiment_name DemoBinary \
--list-learners
python -m streamline.p4_feature_importance.p4_cli \
--output_path out \
--experiment_name DemoBinary \
--list-models
python -m streamline.p6_modeling.p6_cli \
--output_path out \
--experiment_name DemoBinary \
--outcome_type Binary \
--list_models
python -m streamline.p7_ensembles.p7_cli \
--output_path out \
--experiment_name DemoBinary \
--n_splits 5 \
--list_ensembles
# ==========================================================
# 2. Classification workflow example
# ==========================================================
# Demo input folder:
# data/UCIBinaryClassification
# Example experiment output:
# out/DemoBinary
# ----------------------
# Phase 1 - Data Process
# ----------------------
python -m streamline.p1_data_process.p1_cli \
--data_path data/UCIBinaryClassification \
--output_path out \
--experiment_name DemoBinary \
--outcome_label Class \
--outcome_type Binary \
--instance_label InstanceID \
--categorical_features data/UCIFeatureTypes/hcc_survival_categorical_features.csv \
--quantitative_features data/UCIFeatureTypes/hcc_survival_quantitative_features.csv \
--n_splits 5 \
--top_features 20 \
--sig_cutoff 0.05 \
--force true
# ----------------------------
# Phase 2 - Impute and Scale
# ----------------------------
python -m streamline.p2_impute_scale.p2_cli \
--output_path out \
--experiment_name DemoBinary \
--random_state 42
# Optional: enable post-imputation/scaling SMOTE on training folds only.
# `auto` uses SMOTENC when processed categorical features are present, otherwise SMOTE.
# python -m streamline.p2_impute_scale.p2_cli \
# --output_path out \
# --experiment_name DemoBinary \
# --smote 1 \
# --smote_method auto \
# --random_state 42
# ----------------------------
# Phase 3 - Feature Learning
# ----------------------------
python -m streamline.p3_feature_learning.p3_cli \
--output_path out \
--experiment_name DemoBinary \
--learner_id pca \
--learner_params '{}' \
--keep_original_features true \
--random_state 42
# --------------------------------
# Phase 4 - Feature Importance
# --------------------------------
python -m streamline.p4_feature_importance.p4_cli \
--output_path out \
--experiment_name DemoBinary \
--models "mutualinformation,multiswrfdb,multiswrfdbstar" \
--models_params '{"mutualinformation":{"outcome_type":"Binary"},"multiswrfdb":{"n_jobs":1},"multiswrfdbstar":{"n_jobs":1}}' \
--random_state 42
# ---------------------------------
# Phase 5 - Feature Selection
# ---------------------------------
python -m streamline.p5_feature_selection.p5_cli \
--output_path out \
--experiment_name DemoBinary \
--algorithms auto \
--n_splits 5 \
--selector_id default \
--top_features 20 \
--show_plots 0
# ----------------------
# Phase 6 - Modeling
# ----------------------
python -m streamline.p6_modeling.p6_cli \
--output_path out \
--experiment_name DemoBinary \
--outcome_label Class \
--outcome_type Binary \
--instance_label InstanceID \
--n_splits 5 \
--models NB,LR,DT \
--calibrate 1 \
--calibrate_method sigmoid \
--calibrate_cv 5 \
--scoring_metric balanced_accuracy \
--metric_direction maximize \
--n_trials 200 \
--timeout 900 \
--training_subsample 0 \
--uniform_fi 0 \
--save_plot 0 \
--random_state 42 \
--run_cluster Serial
# ------------------------
# Phase 7 - Ensembles
# ------------------------
python -m streamline.p7_ensembles.p7_cli \
--output_path out \
--experiment_name DemoBinary \
--n_splits 5 \
--outcome_label Class \
--instance_label InstanceID \
--ensembles hard_voting,soft_voting,stack_lr \
--base_models NB,LR,DT \
--meta_train_source train \
--calibrate 0 \
--random_state 42
# ---------------------------
# Phase 8 - Summary Statistics
# ---------------------------
python -m streamline.p8_summary_statistics.p8_cli \
--output_path out \
--experiment_name DemoBinary \
--outcome_label Class \
--outcome_type Binary \
--instance_label InstanceID \
--n_splits 5 \
--scoring_metric balanced_accuracy \
--metric_weight balanced_accuracy \
--top_features 40 \
--sig_cutoff 0.05 \
--scale_data 1 \
--show_plots 0 \
--include_ensembles 1
# ---------------------------------------
# Phase 9 - Dataset Comparison
# ---------------------------------------
python -m streamline.p9_compare_datasets.p9_cli \
--output_path out \
--experiment_name DemoBinary \
--outcome_label Class \
--outcome_type Binary \
--instance_label InstanceID \
--sig_cutoff 0.05 \
--show_plots 0
# ---------------------------------------
# Phase 10 - Replication / External Validation
# ---------------------------------------
# Reuses the trained workflow from:
# data/UCIBinaryClassification/hcc_survival.csv
# Applies it to replication datasets under:
# data/UCIRepBinaryClassification
python -m streamline.p10_replication.p10_cli \
--rep_data_path data/UCIRepBinaryClassification \
--dataset_for_rep data/UCIBinaryClassification/hcc_survival.csv \
--output_path out \
--experiment_name DemoBinary \
--show_plots 0
# ---------------------------------------
# Phase 11 - Reporting (standard datasets)
# ---------------------------------------
python -m streamline.p11_reporting.p11_cli \
--experiment_path out/DemoBinary \
--report_mode standard \
--make_pdf 1 \
--enable_plots 1 \
--reuse_existing_figures 1
# ---------------------------------------
# Phase 11 - Reporting (replication datasets)
# ---------------------------------------
python -m streamline.p11_reporting.p11_cli \
--experiment_path out/DemoBinary \
--report_mode replication \
--make_pdf 1 \
--enable_plots 1 \
--reuse_existing_figures 1
# ==========================================================
# 3. Regression workflow example
# ==========================================================
# Demo input folder:
# data/UCIRegression
# Example experiment output:
# out/DemoRegression
# ----------------------
# Phase 1 - Data Process
# ----------------------
python -m streamline.p1_data_process.p1_cli \
--data_path data/UCIRegression \
--output_path out \
--experiment_name DemoRegression \
--outcome_label MPG \
--outcome_type Continuous \
--instance_label InstanceID \
--categorical_features data/UCIFeatureTypes/auto_mpg_categorical_features.csv \
--quantitative_features data/UCIFeatureTypes/auto_mpg_quantitative_features.csv \
--n_splits 5 \
--partition_method Random \
--top_features 20 \
--sig_cutoff 0.05 \
--force true
# ----------------------------
# Phase 2 - Impute and Scale
# ----------------------------
python -m streamline.p2_impute_scale.p2_cli \
--output_path out \
--experiment_name DemoRegression \
--random_state 42
# ----------------------------
# Phase 3 - Feature Learning
# ----------------------------
python -m streamline.p3_feature_learning.p3_cli \
--output_path out \
--experiment_name DemoRegression \
--learner_id pca \
--learner_params '{}' \
--keep_original_features true \
--random_state 42
# --------------------------------
# Phase 4 - Feature Importance
# --------------------------------
python -m streamline.p4_feature_importance.p4_cli \
--output_path out \
--experiment_name DemoRegression \
--models "mutualinformation,multiswrfdb,multiswrfdbstar" \
--models_params '{"mutualinformation":{"outcome_type":"Continuous"},"multiswrfdb":{"n_jobs":1},"multiswrfdbstar":{"n_jobs":1}}' \
--outcome_type Continuous \
--random_state 42
# ---------------------------------
# Phase 5 - Feature Selection
# ---------------------------------
python -m streamline.p5_feature_selection.p5_cli \
--output_path out \
--experiment_name DemoRegression \
--algorithms auto \
--n_splits 5 \
--selector_id default \
--top_features 20 \
--show_plots 0
# ----------------------
# Phase 6 - Modeling
# ----------------------
python -m streamline.p6_modeling.p6_cli \
--output_path out \
--experiment_name DemoRegression \
--outcome_label MPG \
--outcome_type Continuous \
--instance_label InstanceID \
--n_splits 5 \
--models LR,RF \
--scoring_metric explained_variance \
--metric_direction maximize \
--n_trials 200 \
--timeout 900 \
--training_subsample 0 \
--uniform_fi 0 \
--save_plot 0 \
--random_state 42 \
--run_cluster Serial
# Phase 7 is intentionally skipped for regression because ensembles are
# currently classification-only.
# ---------------------------
# Phase 8 - Summary Statistics
# ---------------------------
python -m streamline.p8_summary_statistics.p8_cli \
--output_path out \
--experiment_name DemoRegression \
--outcome_label MPG \
--outcome_type Continuous \
--instance_label InstanceID \
--n_splits 5 \
--scoring_metric explained_variance \
--metric_weight explained_variance \
--top_features 40 \
--sig_cutoff 0.05 \
--scale_data 1 \
--show_plots 0 \
--include_ensembles 0
# ---------------------------------------
# Phase 9 - Dataset Comparison
# ---------------------------------------
python -m streamline.p9_compare_datasets.p9_cli \
--output_path out \
--experiment_name DemoRegression \
--outcome_label MPG \
--outcome_type Continuous \
--instance_label InstanceID \
--sig_cutoff 0.05 \
--show_plots 0
# ---------------------------------------
# Phase 10 - Replication / External Validation
# ---------------------------------------
python -m streamline.p10_replication.p10_cli \
--rep_data_path data/UCIRepRegression \
--dataset_for_rep data/UCIRegression/auto_mpg.csv \
--output_path out \
--experiment_name DemoRegression \
--show_plots 0
# ---------------------------------------
# Phase 11 - Reporting (standard datasets)
# ---------------------------------------
python -m streamline.p11_reporting.p11_cli \
--experiment_path out/DemoRegression \
--report_mode standard \
--make_pdf 1 \
--enable_plots 1 \
--reuse_existing_figures 1
# ---------------------------------------
# Phase 11 - Reporting (replication datasets)
# ---------------------------------------
python -m streamline.p11_reporting.p11_cli \
--experiment_path out/DemoRegression \
--report_mode replication \
--make_pdf 1 \
--enable_plots 1 \
--reuse_existing_figures 1