Skip to content

Commit

Permalink
Update initial_NM.py
Browse files Browse the repository at this point in the history
  • Loading branch information
QingyingWang authored Sep 7, 2022
1 parent e71c82f commit 6187a01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nm_planner/initial_NM.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas as pd


def init_data(patient_id: str, n_init: int, mode="file", file="pars.csv"):
def init_data(patient_id: str, n_init: int, mode="file", file="/util_sobol/pars.csv"):
"""data initialization for the BO procedure
Args:
patient_id: str,
Expand All @@ -22,4 +22,4 @@ def init_data(patient_id: str, n_init: int, mode="file", file="pars.csv"):
value = sobol_odf.iloc[i, -1]
pars.append(par)
vals.append(value)
return pars, vals
return pars, vals

0 comments on commit 6187a01

Please sign in to comment.