We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is obs_data, sim_data necessary for the IODynamic class if it reads files? @chyalexcheng
obs_data
sim_data
def __init__( self, sim_name: str, sim_data_dir: str, sim_data_file_ext: str, obs_data_file: str, obs_names: List[str], ctrl_name: str, num_samples: int, param_min: List[float], param_max: List[float], obs_data: np.ndarray = None, ctrl_data: np.ndarray = None, inv_obs_weight: List[float] = None, sim_data: np.ndarray = None, callback: Callable = None, curr_iter: int = 0, param_data_file: str = '', param_data: np.ndarray = None, param_names: List[str] = None, ):
The text was updated successfully, but these errors were encountered:
Yes, the inference class still needs them to calculate the likelihood.
Sorry, something went wrong.
chyalexcheng
No branches or pull requests
Is
obs_data
,sim_data
necessary for the IODynamic class if it reads files?@chyalexcheng
The text was updated successfully, but these errors were encountered: