diff --git a/pysegcnn/core/trainer.py b/pysegcnn/core/trainer.py index 4d41611295be2b50ee81deca0ff9f9381cb981a8..a2e6170a7f11fadfc99f0fd314412505eeca8de6 100644 --- a/pysegcnn/core/trainer.py +++ b/pysegcnn/core/trainer.py @@ -2061,6 +2061,8 @@ class NetworkInference(BaseConfig): Path to store plots of model predictions for entire scenes. perfmc_path : :py:class:`pathlib.Path` Path to store plots of model performance, e.g. confusion matrix. + models_path : :py:class:`pathlib.Path` + Path to store the :py:func:`sklearn.metrics.classification_reports`. models_path : :py:class:`pathlib.Path` Path to search for model state files ``state_files``. plot_kwargs : `dict` diff --git a/pysegcnn/core/utils.py b/pysegcnn/core/utils.py index 43842590b9ce4112ebdfd8ba41e68450d28acb6f..eefc064f2e7231533e2a63bdcff12184ef3869de 100644 --- a/pysegcnn/core/utils.py +++ b/pysegcnn/core/utils.py @@ -2636,7 +2636,7 @@ def _tmp_path(path): def report2latex(classification_report, filename=None): - """Convert :py:class:`sklearn.metrics.classification_report` to Latex. + """Convert :py:func:`sklearn.metrics.classification_reports` to Latex. Parameters ----------