Model.write#
- Model.write(model_path, backup=True, log_input=False)[source]#
Write model to files.
This method performs the
write_model()
on self. Seewrite_model()
section for the details.Changed in version 0.8.0.
Added in version 0.0.22.
- Parameters:
model_path (str) – Folder(directory) path where the model is saved.
backup (bool, optional) – Whether to backup an existing file with the same name if it already exists. Defaults to
True
.log_input (bool, optional) – If
True
, input values in Cells are output to _input_log.txt undermodel_path
. Defaults toFalse
.