Model.write#

Model.write(model_path, backup=True, log_input=False)[source]#

Write model to files.

This method performs the write_model() on self. See write_model() section for the details.

Changed in version 0.8.0.

New 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 under model_path. Defaults to False.