@@ -68,7 +68,6 @@ def report(
6868 report_title : str = "Model Report" ,
6969 report_subtitle : str = "" ,
7070 report_credits : str = REPORT_CREDITS ,
71- report_extra_info : str = "" ,
7271 max_sample_size_accuracy : int | None = None ,
7372 max_sample_size_embeddings : int | None = None ,
7473 statistics_path : str | Path | None = None ,
@@ -85,7 +84,7 @@ def report(
8584
8685 If the data represents sequential data, provide the `tgt_context_key` to set the groupby column for the target data.
8786
88- Customize the report with the `report_title`, `report_subtitle`, `report_credits`, and `report_extra_info `.
87+ Customize the report with the `report_title`, `report_subtitle` and `report_credits `.
8988
9089 Limit the compute time used by setting `max_sample_size_accuracy` and `max_sample_size_embeddings`.
9190
@@ -102,7 +101,6 @@ def report(
102101 report_title: The title of the report.
103102 report_subtitle: The subtitle of the report.
104103 report_credits: The credits of the report.
105- report_extra_info: The extra information of the report.
106104 max_sample_size_accuracy: The maximum sample size for accuracy calculations.
107105 max_sample_size_embeddings: The maximum sample size for embedding calculations (similarity & distances)
108106 statistics_path: The path of where to store the statistics to be used by `report_from_statistics`
@@ -326,7 +324,6 @@ def report(
326324 "report_title" : report_title ,
327325 "report_subtitle" : report_subtitle ,
328326 "report_credits" : report_credits ,
329- "report_extra_info" : report_extra_info ,
330327 }
331328 statistics .store_meta (meta = meta )
332329 _html_report .store_report (
0 commit comments