Skip to content

Commit a0120e4

Browse files
committed
Serial Command Line Run Fixes
1 parent 5e81d39 commit a0120e4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

streamline/PDF_ReportMain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def main(argv):
7777
else:
7878
print(str(job_counter)+ " job submitted in Phase 10")
7979

80-
def submitLocalJob(experiment_path):
80+
def submitLocalJob(experiment_path,training,rep_data_path,dataset_for_rep):
8181
""" Runs PDF_ReportJob.py locally, once. """
8282
PDF_ReportJob.job(experiment_path,training,rep_data_path,dataset_for_rep)
8383

streamline/StatsMain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def main(argv):
142142

143143
def submitLocalJob(full_path,plot_ROC,plot_PRC,plot_FI_box,class_label,instance_label,cv_partitions,scale_data,plot_metric_boxplots,primary_metric,top_model_features,sig_cutoff,metric_weight,jupyterRun):
144144
""" Runs StatsJob.py locally, once for each of the original target datasets (all CV datasets analyzed at once). These runs will be completed serially rather than in parallel. """
145-
StatsJob.job(full_path,plot_ROC,plot_PRC,plot_FI_box,class_label,instance_label,cv_partitions,scale_data,plot_metric_boxplots,primary_metric,top_model_features,sig_cutoff,jupyterRun)
145+
StatsJob.job(full_path,plot_ROC,plot_PRC,plot_FI_box,class_label,instance_label,cv_partitions,scale_data,plot_metric_boxplots,primary_metric,top_model_features,sig_cutoff,metric_weight,jupyterRun)
146146

147147
def submitClusterJob(full_path,plot_ROC,plot_PRC,plot_FI_box,class_label,instance_label,experiment_path,cv_partitions,scale_data,reserved_memory,maximum_memory,queue,plot_metric_boxplots,primary_metric,top_model_features,sig_cutoff,metric_weight,jupyterRun):
148148
""" Runs StatsJob.py once for each of the original target datasets (all CV datasets analyzed at once). Runs in parallel on a linux-based computing cluster that uses an IBM Spectrum LSF for job scheduling."""

0 commit comments

Comments
 (0)