From f56273358a440dfd717a4d6a491099eaa1870728 Mon Sep 17 00:00:00 2001 From: amrit110 Date: Fri, 24 Nov 2023 11:25:32 -0500 Subject: [PATCH] deploy: b91653555e16192f342016763cb8c764f461dcff --- 404.html | 4 +- .../kaggle/heart_failure_prediction.ipynb.txt | 48 +- api/searchindex.js | 2 +- .../kaggle/heart_failure_prediction.html | 118 +- .../kaggle/heart_failure_prediction.ipynb | 510 +- .../kaggle/heart_failure_report_periodic.html | 207 +- .../mimiciv/mortality_prediction.html | 114 +- .../mimiciv/mortality_prediction.ipynb | 23170 +++++++++------- .../mimiciv/mortality_report_periodic.html | 151 +- api/tutorials/nihcxr/cxr_classification.html | 132 +- api/tutorials/nihcxr/cxr_classification.ipynb | 391 +- api/tutorials/nihcxr/monitor_api.html | 22 +- api/tutorials/nihcxr/monitor_api.ipynb | 128 +- .../nihcxr/nihcxr_report_periodic.html | 9 +- .../length_of_stay_report_periodic.html | 141 +- api/tutorials/synthea/los_prediction.html | 154 +- api/tutorials/synthea/los_prediction.ipynb | 3090 +-- ...8a0ec.101bc726.js => 1cd7c442.f735fc16.js} | 2 +- ...ee0c1.b6c646b2.js => 9f179204.8d399381.js} | 2 +- ...d370c.29f4916b.js => b91d99ed.37214bf2.js} | 2 +- assets/js/main.8bc6fff8.js | 2 + ...CENSE.txt => main.8bc6fff8.js.LICENSE.txt} | 0 assets/js/main.de3a9079.js | 2 - assets/js/runtime~main.49642ce9.js | 1 + assets/js/runtime~main.f74ffbd7.js | 1 - blog/archive/index.html | 4 +- blog/cyclops-alpha-release/index.html | 4 +- blog/index.html | 4 +- blog/tags/alpha/index.html | 4 +- blog/tags/index.html | 4 +- docs/intro/index.html | 4 +- index.html | 4 +- markdown-page/index.html | 4 +- 33 files changed, 15748 insertions(+), 12687 deletions(-) rename assets/js/{d098a0ec.101bc726.js => 1cd7c442.f735fc16.js} (64%) rename assets/js/{72bee0c1.b6c646b2.js => 9f179204.8d399381.js} (64%) rename assets/js/{3e9d370c.29f4916b.js => b91d99ed.37214bf2.js} (65%) create mode 100644 assets/js/main.8bc6fff8.js rename assets/js/{main.de3a9079.js.LICENSE.txt => main.8bc6fff8.js.LICENSE.txt} (100%) delete mode 100644 assets/js/main.de3a9079.js create mode 100644 assets/js/runtime~main.49642ce9.js delete mode 100644 assets/js/runtime~main.f74ffbd7.js diff --git a/404.html b/404.html index 950cff7fd..99bec5211 100644 --- a/404.html +++ b/404.html @@ -5,8 +5,8 @@ Page Not Found | CyclOps - - + +
Skip to main content

Page Not Found

We could not find what you were looking for.

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

diff --git a/api/_sources/tutorials/kaggle/heart_failure_prediction.ipynb.txt b/api/_sources/tutorials/kaggle/heart_failure_prediction.ipynb.txt index d415fbe56..2722c0ba2 100644 --- a/api/_sources/tutorials/kaggle/heart_failure_prediction.ipynb.txt +++ b/api/_sources/tutorials/kaggle/heart_failure_prediction.ipynb.txt @@ -1232,49 +1232,11 @@ "shutil.copy(f\"{report_path}\", \".\")\n", "for i in range(4):\n", " report._model_card.overview = None\n", - " report._model_card.quantitative_analysis = None\n", - " results_flat = flatten_results_dict(\n", - " results=results,\n", - " remove_metrics=[\"BinaryROCCurve\", \"BinaryPrecisionRecallCurve\"],\n", - " model_name=model_name,\n", - " )\n", - "\n", - " for name, metric in results_female_flat.items():\n", - " split, name = name.split(\"/\") # noqa: PLW2901\n", - " descriptions = {\n", - " \"BinaryPrecision\": \"The proportion of predicted positive instances that are correctly predicted.\",\n", - " \"BinaryRecall\": \"The proportion of actual positive instances that are correctly predicted. Also known as recall or true positive rate.\",\n", - " \"BinaryAccuracy\": \"The proportion of all instances that are correctly predicted.\",\n", - " \"BinaryAUROC\": \"The area under the receiver operating characteristic curve (AUROC) is a measure of the performance of a binary classification model.\",\n", - " \"BinaryF1Score\": \"The harmonic mean of precision and recall.\",\n", - " }\n", - " report.log_quantitative_analysis(\n", - " \"performance\",\n", - " name=name,\n", - " value=np.clip(metric + np.random.normal(0, 0.1), 0, 1),\n", - " description=descriptions[name],\n", - " metric_slice=split,\n", - " pass_fail_thresholds=0.7,\n", - " pass_fail_threshold_fns=lambda x, threshold: bool(x >= threshold),\n", - " )\n", - "\n", - " for name, metric in results_flat.items():\n", - " split, name = name.split(\"/\") # noqa: PLW2901\n", - " descriptions = {\n", - " \"BinaryPrecision\": \"The proportion of predicted positive instances that are correctly predicted.\",\n", - " \"BinaryRecall\": \"The proportion of actual positive instances that are correctly predicted. Also known as recall or true positive rate.\",\n", - " \"BinaryAccuracy\": \"The proportion of all instances that are correctly predicted.\",\n", - " \"BinaryAUROC\": \"The area under the receiver operating characteristic curve (AUROC) is a measure of the performance of a binary classification model.\",\n", - " \"BinaryF1Score\": \"The harmonic mean of precision and recall.\",\n", - " }\n", - " report.log_quantitative_analysis(\n", - " \"performance\",\n", - " name=name,\n", - " value=np.clip(metric + np.random.normal(0, 0.1), 0, 1),\n", - " description=descriptions[name],\n", - " metric_slice=split,\n", - " pass_fail_thresholds=0.7,\n", - " pass_fail_threshold_fns=lambda x, threshold: bool(x >= threshold),\n", + " for metric in report._model_card.quantitative_analysis.performance_metrics:\n", + " metric.value = np.clip(\n", + " metric.value + np.random.normal(0, 0.1),\n", + " 0,\n", + " 1,\n", " )\n", " report_path = report.export(\n", " output_filename=\"heart_failure_report_periodic.html\",\n", diff --git a/api/searchindex.js b/api/searchindex.js index 158a50dd3..e322a471c 100644 --- a/api/searchindex.js +++ b/api/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["api", "contributing", "index", "intro", "reference/api/_autosummary/cyclops.data.features.medical_image", "reference/api/_autosummary/cyclops.data.features.medical_image.MedicalImage", "reference/api/_autosummary/cyclops.data.slicer", "reference/api/_autosummary/cyclops.data.slicer.SliceSpec", "reference/api/_autosummary/cyclops.data.slicer.compound_filter", "reference/api/_autosummary/cyclops.data.slicer.filter_datetime", "reference/api/_autosummary/cyclops.data.slicer.filter_non_null", "reference/api/_autosummary/cyclops.data.slicer.filter_range", "reference/api/_autosummary/cyclops.data.slicer.filter_string_contains", "reference/api/_autosummary/cyclops.data.slicer.filter_value", "reference/api/_autosummary/cyclops.data.slicer.is_datetime", "reference/api/_autosummary/cyclops.data.slicer.overall", "reference/api/_autosummary/cyclops.evaluate.evaluator", "reference/api/_autosummary/cyclops.evaluate.evaluator.evaluate", "reference/api/_autosummary/cyclops.evaluate.fairness.config", "reference/api/_autosummary/cyclops.evaluate.fairness.config.FairnessConfig", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.evaluate_fairness", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.Accuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.BinaryAccuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.MulticlassAccuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.MultilabelAccuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.AUROC", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.BinaryAUROC", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.MulticlassAUROC", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.MultilabelAUROC", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.BinaryF1Score", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.BinaryFbetaScore", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.F1Score", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.FbetaScore", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MulticlassF1Score", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MultilabelF1Score", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore", "reference/api/_autosummary/cyclops.evaluate.metrics.factory", "reference/api/_autosummary/cyclops.evaluate.metrics.factory.create_metric", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.accuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.auroc", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.binary_f1_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.f1_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.fbeta_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.binary_precision", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.binary_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.precision", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.binary_roc_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.roc_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.sensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.specificity", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.stat_scores", "reference/api/_autosummary/cyclops.evaluate.metrics.metric", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.Metric", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.MetricCollection", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.OperatorMetric", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.BinaryPrecision", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.BinaryRecall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MulticlassPrecision", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MulticlassRecall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MultilabelPrecision", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MultilabelRecall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.Precision", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.Recall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.roc", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.BinaryROCCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.MulticlassROCCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.MultilabelROCCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.ROCCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.BinarySensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.Sensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.BinarySpecificity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.MulticlassSpecificity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.MultilabelSpecificity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.Specificity", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.BinaryStatScores", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.MulticlassStatScores", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.MultilabelStatScores", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.StatScores", "reference/api/_autosummary/cyclops.monitor.clinical_applicator", "reference/api/_autosummary/cyclops.monitor.clinical_applicator.ClinicalShiftApplicator", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.binary_noise_shift", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.feature_association_shift", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.feature_swap_shift", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.gaussian_noise_shift", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.knockout_shift", "reference/api/_autosummary/cyclops.report.report", "reference/api/_autosummary/cyclops.report.report.ModelCardReport", "reference/api/_autosummary/cyclops.tasks.classification", "reference/api/_autosummary/cyclops.tasks.classification.BinaryTabularClassificationTask", "reference/api/_autosummary/cyclops.tasks.classification.MultilabelImageClassificationTask", "reference/api/cyclops.data", "reference/api/cyclops.evaluate", "reference/api/cyclops.monitor", "reference/api/cyclops.report", "reference/api/cyclops.tasks", "tutorials", "tutorials/kaggle/heart_failure_prediction", "tutorials/mimiciv/mortality_prediction", "tutorials/nihcxr/cxr_classification", "tutorials/nihcxr/monitor_api", "tutorials/synthea/los_prediction", "tutorials_monitor", "tutorials_use_cases"], "filenames": ["api.rst", "contributing.rst", "index.rst", "intro.rst", "reference/api/_autosummary/cyclops.data.features.medical_image.rst", "reference/api/_autosummary/cyclops.data.features.medical_image.MedicalImage.rst", "reference/api/_autosummary/cyclops.data.slicer.rst", "reference/api/_autosummary/cyclops.data.slicer.SliceSpec.rst", "reference/api/_autosummary/cyclops.data.slicer.compound_filter.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_datetime.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_non_null.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_range.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_string_contains.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_value.rst", "reference/api/_autosummary/cyclops.data.slicer.is_datetime.rst", "reference/api/_autosummary/cyclops.data.slicer.overall.rst", "reference/api/_autosummary/cyclops.evaluate.evaluator.rst", "reference/api/_autosummary/cyclops.evaluate.evaluator.evaluate.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.config.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.config.FairnessConfig.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.evaluate_fairness.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.Accuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.BinaryAccuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.AUROC.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.BinaryAUROC.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.MulticlassAUROC.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.MultilabelAUROC.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.BinaryF1Score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.F1Score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.FbetaScore.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MulticlassF1Score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MultilabelF1Score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.factory.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.factory.create_metric.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.accuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.auroc.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.binary_f1_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.f1_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.fbeta_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.binary_precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.binary_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.binary_roc_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.roc_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.sensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.specificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.stat_scores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.Metric.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.MetricCollection.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.OperatorMetric.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.BinaryPrecision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.BinaryRecall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MulticlassRecall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MultilabelRecall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.Precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.Recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.BinaryROCCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.MulticlassROCCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.MultilabelROCCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.ROCCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.BinarySensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.Sensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.BinarySpecificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.MulticlassSpecificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.MultilabelSpecificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.Specificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.BinaryStatScores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.StatScores.rst", "reference/api/_autosummary/cyclops.monitor.clinical_applicator.rst", "reference/api/_autosummary/cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.binary_noise_shift.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.feature_association_shift.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.feature_swap_shift.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.gaussian_noise_shift.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.knockout_shift.rst", "reference/api/_autosummary/cyclops.report.report.rst", "reference/api/_autosummary/cyclops.report.report.ModelCardReport.rst", "reference/api/_autosummary/cyclops.tasks.classification.rst", "reference/api/_autosummary/cyclops.tasks.classification.BinaryTabularClassificationTask.rst", "reference/api/_autosummary/cyclops.tasks.classification.MultilabelImageClassificationTask.rst", "reference/api/cyclops.data.rst", "reference/api/cyclops.evaluate.rst", "reference/api/cyclops.monitor.rst", "reference/api/cyclops.report.rst", "reference/api/cyclops.tasks.rst", "tutorials.rst", "tutorials/kaggle/heart_failure_prediction.ipynb", "tutorials/mimiciv/mortality_prediction.ipynb", "tutorials/nihcxr/cxr_classification.ipynb", "tutorials/nihcxr/monitor_api.ipynb", "tutorials/synthea/los_prediction.ipynb", "tutorials_monitor.rst", "tutorials_use_cases.rst"], "titles": ["API Reference", "Contributing to cyclops", "Welcome to cyclops\u2019s documentation!", "\ud83d\udc23 Getting Started", "cyclops.data.features.medical_image", "cyclops.data.features.medical_image.MedicalImage", "cyclops.data.slicer", "cyclops.data.slicer.SliceSpec", "cyclops.data.slicer.compound_filter", "cyclops.data.slicer.filter_datetime", "cyclops.data.slicer.filter_non_null", "cyclops.data.slicer.filter_range", "cyclops.data.slicer.filter_string_contains", "cyclops.data.slicer.filter_value", "cyclops.data.slicer.is_datetime", "cyclops.data.slicer.overall", "cyclops.evaluate.evaluator", "cyclops.evaluate.evaluator.evaluate", "cyclops.evaluate.fairness.config", "cyclops.evaluate.fairness.config.FairnessConfig", "cyclops.evaluate.fairness.evaluator", "cyclops.evaluate.fairness.evaluator.evaluate_fairness", "cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values", "cyclops.evaluate.metrics.accuracy", "cyclops.evaluate.metrics.accuracy.Accuracy", "cyclops.evaluate.metrics.accuracy.BinaryAccuracy", "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy", "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy", "cyclops.evaluate.metrics.auroc", "cyclops.evaluate.metrics.auroc.AUROC", "cyclops.evaluate.metrics.auroc.BinaryAUROC", "cyclops.evaluate.metrics.auroc.MulticlassAUROC", "cyclops.evaluate.metrics.auroc.MultilabelAUROC", "cyclops.evaluate.metrics.f_beta", "cyclops.evaluate.metrics.f_beta.BinaryF1Score", "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore", "cyclops.evaluate.metrics.f_beta.F1Score", "cyclops.evaluate.metrics.f_beta.FbetaScore", "cyclops.evaluate.metrics.f_beta.MulticlassF1Score", "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore", "cyclops.evaluate.metrics.f_beta.MultilabelF1Score", "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore", "cyclops.evaluate.metrics.factory", "cyclops.evaluate.metrics.factory.create_metric", "cyclops.evaluate.metrics.functional.accuracy", "cyclops.evaluate.metrics.functional.auroc", "cyclops.evaluate.metrics.functional.f_beta", "cyclops.evaluate.metrics.functional.f_beta.binary_f1_score", "cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score", "cyclops.evaluate.metrics.functional.f_beta.f1_score", "cyclops.evaluate.metrics.functional.f_beta.fbeta_score", "cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score", "cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score", "cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score", "cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score", "cyclops.evaluate.metrics.functional.precision_recall", "cyclops.evaluate.metrics.functional.precision_recall.binary_precision", "cyclops.evaluate.metrics.functional.precision_recall.binary_recall", "cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision", "cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall", "cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision", "cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall", "cyclops.evaluate.metrics.functional.precision_recall.precision", "cyclops.evaluate.metrics.functional.precision_recall.recall", "cyclops.evaluate.metrics.functional.precision_recall_curve", "cyclops.evaluate.metrics.functional.roc", "cyclops.evaluate.metrics.functional.roc.binary_roc_curve", "cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve", "cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve", "cyclops.evaluate.metrics.functional.roc.roc_curve", "cyclops.evaluate.metrics.functional.sensitivity", "cyclops.evaluate.metrics.functional.specificity", "cyclops.evaluate.metrics.functional.stat_scores", "cyclops.evaluate.metrics.metric", "cyclops.evaluate.metrics.metric.Metric", "cyclops.evaluate.metrics.metric.MetricCollection", "cyclops.evaluate.metrics.metric.OperatorMetric", "cyclops.evaluate.metrics.precision_recall", "cyclops.evaluate.metrics.precision_recall.BinaryPrecision", "cyclops.evaluate.metrics.precision_recall.BinaryRecall", "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision", "cyclops.evaluate.metrics.precision_recall.MulticlassRecall", "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision", "cyclops.evaluate.metrics.precision_recall.MultilabelRecall", "cyclops.evaluate.metrics.precision_recall.Precision", "cyclops.evaluate.metrics.precision_recall.Recall", "cyclops.evaluate.metrics.precision_recall_curve", "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve", "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve", "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve", "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve", "cyclops.evaluate.metrics.roc", "cyclops.evaluate.metrics.roc.BinaryROCCurve", "cyclops.evaluate.metrics.roc.MulticlassROCCurve", "cyclops.evaluate.metrics.roc.MultilabelROCCurve", "cyclops.evaluate.metrics.roc.ROCCurve", "cyclops.evaluate.metrics.sensitivity", "cyclops.evaluate.metrics.sensitivity.BinarySensitivity", "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity", "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity", "cyclops.evaluate.metrics.sensitivity.Sensitivity", "cyclops.evaluate.metrics.specificity", "cyclops.evaluate.metrics.specificity.BinarySpecificity", "cyclops.evaluate.metrics.specificity.MulticlassSpecificity", "cyclops.evaluate.metrics.specificity.MultilabelSpecificity", "cyclops.evaluate.metrics.specificity.Specificity", "cyclops.evaluate.metrics.stat_scores", "cyclops.evaluate.metrics.stat_scores.BinaryStatScores", "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores", "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores", "cyclops.evaluate.metrics.stat_scores.StatScores", "cyclops.monitor.clinical_applicator", "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator", "cyclops.monitor.synthetic_applicator", "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator", "cyclops.monitor.synthetic_applicator.binary_noise_shift", "cyclops.monitor.synthetic_applicator.feature_association_shift", "cyclops.monitor.synthetic_applicator.feature_swap_shift", "cyclops.monitor.synthetic_applicator.gaussian_noise_shift", "cyclops.monitor.synthetic_applicator.knockout_shift", "cyclops.report.report", "cyclops.report.report.ModelCardReport", "cyclops.tasks.classification", "cyclops.tasks.classification.BinaryTabularClassificationTask", "cyclops.tasks.classification.MultilabelImageClassificationTask", "cyclops.data", "cyclops.evaluate", "cyclops.monitor", "cyclops.report", "cyclops.tasks", "Tutorials", "Heart Failure Prediction", "Mortality Prediction", "Chest X-Ray Disease Classification", "NIHCXR Clinical Drift Experiments Tutorial", "Prolonged Length of Stay Prediction", "monitor API", "Example use cases"], "terms": {"cyclop": [0, 131, 132, 133, 134, 135], "data": [0, 2, 3, 24, 26, 27, 49, 50, 52, 54, 69, 72, 89, 95, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 130, 133, 134, 136], "slicer": [0, 131, 132, 133, 134, 135], "compound_filt": 0, "filter_datetim": 0, "filter_non_nul": 0, "filter_rang": 0, "filter_string_contain": 0, "filter_valu": [0, 133], "is_datetim": 0, "overal": [0, 7, 21, 121, 131, 132, 133, 135], "slicespec": [0, 17, 112, 124, 131, 132, 133, 134, 135], "spec_list": [0, 7, 131, 132, 133, 134, 135], "include_overal": [0, 7, 131], "valid": [0, 7, 9, 17, 121, 123, 124, 131, 132, 133], "column_nam": [0, 7, 9, 10, 11, 12, 13, 133], "_registri": [0, 7], "add_slice_spec": [0, 7], "get_slic": [0, 7], "slice": [0, 3, 7, 8, 17, 21, 121, 123, 124, 131, 132, 133, 135], "featur": [0, 7, 9, 10, 11, 12, 13, 15, 17, 112, 116, 117, 121, 123, 124, 130, 133, 137], "medical_imag": 0, "medicalimag": 0, "__call__": [0, 5, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "cast_storag": [0, 5], "decode_exampl": [0, 5], "embed_storag": [0, 5], "encode_exampl": [0, 5], "flatten": [0, 5, 131, 132, 133, 135], "task": [0, 2, 3, 24, 25, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 44, 47, 48, 49, 50, 51, 53, 54, 58, 60, 61, 62, 63, 66, 67, 68, 69, 78, 80, 81, 82, 83, 84, 85, 90, 92, 93, 94, 95, 98, 99, 100, 102, 103, 104, 105, 110, 130, 133, 137], "classif": [0, 3, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 44, 47, 48, 49, 50, 51, 53, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 78, 79, 80, 81, 82, 83, 84, 85, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 130, 131, 132, 135], "binarytabularclassificationtask": [0, 131, 132, 135], "__init__": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 124, 133], "add_model": [0, 123, 124], "data_typ": [0, 123, 124], "evalu": [0, 2, 3, 121, 123, 124, 130, 133, 137], "get_model": [0, 123, 124], "list_model": [0, 123, 124, 131, 132, 135], "list_models_param": [0, 123, 124, 131, 132, 135], "load_model": [0, 123, 124], "models_count": [0, 123, 124], "predict": [0, 3, 17, 19, 21, 24, 26, 27, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 67, 80, 81, 82, 84, 85, 87, 88, 89, 92, 93, 94, 98, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 124, 130, 133], "save_model": [0, 123, 124], "task_typ": [0, 123, 124, 131, 132, 135], "train": [0, 3, 17, 121, 123, 124, 130, 133, 136, 137], "multilabelimageclassificationtask": 0, "metric": [0, 17, 19, 21, 121, 123, 124, 130, 131, 132, 135, 137], "__add__": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "__mul__": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "add_stat": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "clone": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "comput": [0, 17, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 123, 124, 130, 133, 137], "name": [0, 3, 7, 8, 9, 10, 11, 12, 13, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 121, 123, 124, 131, 132, 133, 134, 135], "reset_st": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "update_st": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "metriccollect": [0, 17, 21, 123, 124, 131, 132, 135], "add_metr": [0, 75], "clear": [0, 75], "get": [0, 2, 75, 123, 124, 131, 132, 135], "item": [0, 75, 131, 132, 133, 134, 135], "kei": [0, 7, 17, 21, 75, 121, 131, 132, 133, 134, 135], "pop": [0, 75, 131, 132, 135], "popitem": [0, 75], "setdefault": [0, 75], "updat": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 133, 134, 135], "valu": [0, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 121, 130, 132, 133, 134, 135, 137], "operatormetr": 0, "factori": [0, 7, 133], "create_metr": [0, 131, 132, 133, 135], "accuraci": [0, 131, 132, 135], "binaryaccuraci": [0, 131, 132, 135], "multiclassaccuraci": 0, "multilabelaccuraci": 0, "auroc": [0, 130, 131, 132, 135, 137], "binaryauroc": [0, 29, 131, 132, 135], "multiclassauroc": [0, 29], "multilabelauroc": [0, 29], "precision_recal": 0, "binaryprecis": [0, 131, 132, 135], "binaryrecal": [0, 97, 131, 132, 135], "multiclassprecis": 0, "multiclassrecal": [0, 98], "multilabelprecis": 0, "multilabelrecal": [0, 99], "precis": [0, 24, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 64, 66, 77, 78, 80, 82, 85, 86, 87, 88, 89, 90, 92, 100, 105, 131, 132, 133, 135], "recal": [0, 24, 38, 51, 55, 57, 59, 61, 64, 66, 77, 79, 81, 83, 86, 87, 88, 89, 90, 92, 97, 98, 99, 105, 131, 132, 133, 135], "precision_recall_curv": [0, 131, 132, 135], "binaryprecisionrecallcurv": [0, 30, 92, 131, 132, 135], "multiclassprecisionrecallcurv": [0, 31, 93], "multilabelprecisionrecallcurv": [0, 32, 94], "precisionrecallcurv": 0, "roc": [0, 28, 29, 30, 31, 32, 45, 131, 132, 135], "binaryroccurv": [0, 131, 132, 135], "multiclassroccurv": 0, "multilabelroccurv": 0, "roccurv": 0, "sensit": [0, 121, 130, 131, 132, 133, 135, 136], "binarysensit": 0, "multiclasssensit": 0, "multilabelsensit": [0, 133], "specif": [0, 7, 17, 115, 118, 123, 124, 131, 132, 133, 135], "binaryspecif": 0, "multiclassspecif": 0, "multilabelspecif": [0, 133], "f_beta": 0, "binaryf1scor": [0, 131, 132, 135], "binaryfbetascor": [0, 34], "f1score": 0, "fbetascor": [0, 36], "multiclassf1scor": 0, "multiclassfbetascor": [0, 38], "multilabelf1scor": 0, "multilabelfbetascor": [0, 40], "stat_scor": [0, 133, 135], "binarystatscor": [0, 25, 35, 78, 79, 102, 135], "multiclassstatscor": [0, 26, 39, 80, 81, 103], "multilabelstatscor": [0, 27, 41, 82, 83, 104, 133], "statscor": 0, "function": [0, 5, 6, 7, 8, 16, 17, 20, 21, 25, 35, 41, 42, 76, 93, 102, 104, 107, 109, 110, 113, 121, 131, 132, 133, 135], "binary_precis": 0, "binary_recal": 0, "multiclass_precis": 0, "multiclass_recal": 0, "multilabel_precis": 0, "multilabel_recal": 0, "binary_roc_curv": 0, "multiclass_roc_curv": 0, "multilabel_roc_curv": 0, "roc_curv": [0, 131, 132, 135], "binary_f1_scor": 0, "binary_fbeta_scor": 0, "f1_score": [0, 131, 132, 135], "fbeta_scor": 0, "multiclass_f1_scor": 0, "multiclass_fbeta_scor": 0, "multilabel_f1_scor": 0, "multilabel_fbeta_scor": 0, "fair": [0, 17, 121, 123, 124, 131, 132, 133, 135], "evaluate_fair": 0, "warn_too_many_unique_valu": 0, "config": [0, 123], "fairnessconfig": [0, 17, 123, 124, 131, 132, 135], "monitor": [0, 2, 3, 130, 131, 132, 134, 135], "clinical_appl": 0, "clinicalshiftappl": [0, 134], "ag": [0, 112, 130, 134, 137], "apply_shift": [0, 112, 114, 134], "custom": [0, 112, 121, 134], "hospital_typ": [0, 112], "month": [0, 7, 9, 112], "sex": [0, 112, 130, 132, 134, 135, 137], "time": [0, 3, 7, 75, 112, 121, 130, 132, 133, 135, 136, 137], "synthetic_appl": 0, "binary_noise_shift": 0, "feature_association_shift": 0, "feature_swap_shift": 0, "gaussian_noise_shift": 0, "knockout_shift": 0, "syntheticshiftappl": [0, 113], "report": [0, 2, 3, 110, 130, 137], "modelcardreport": [0, 131, 132, 133, 135], "export": [0, 121, 131, 132, 133, 135], "from_json_fil": [0, 121], "log_cit": [0, 121, 133], "log_dataset": [0, 121, 131], "log_descriptor": [0, 121, 131, 132, 133, 135], "log_fairness_assess": [0, 121, 131, 132, 133, 135], "log_from_dict": [0, 121, 131, 132, 133, 135], "log_imag": [0, 121], "log_licens": [0, 121, 131, 132, 135], "log_model_paramet": [0, 121, 131, 132, 135], "log_own": [0, 121, 131, 132, 133, 135], "log_performance_metr": [0, 121, 131, 132, 135], "log_plotly_figur": [0, 121, 131, 132, 133, 135], "log_quantitative_analysi": [0, 121, 131, 132, 133, 135], "log_refer": [0, 121, 131, 132, 135], "log_regul": [0, 121], "log_risk": [0, 121, 131, 132, 133, 135], "log_use_cas": [0, 121, 131, 132, 133, 135], "log_us": [0, 121, 131, 132, 133, 135], "log_vers": [0, 121, 131, 132, 135], "thank": 1, "your": [1, 131], "interest": [1, 131, 132, 135], "To": [1, 3, 5, 131, 135], "submit": 1, "pr": 1, "pleas": [1, 131, 132, 133, 134, 135], "fill": 1, "out": [1, 121, 131, 132, 135], "templat": [1, 121], "along": [1, 112, 131, 132, 133, 135], "If": [1, 5, 7, 9, 10, 11, 12, 13, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124, 131, 132, 135], "fix": 1, "an": [1, 3, 5, 7, 17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 51, 60, 61, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 131, 132, 133, 135, 137], "issu": [1, 21], "don": [1, 132], "t": [1, 3, 5, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 132], "forget": 1, "link": [1, 121, 131, 132, 133, 135], "onc": [1, 75, 131, 132, 135], "python": [1, 3, 132, 135], "virtual": [1, 3], "environ": [1, 3, 131, 132, 135], "i": [1, 3, 5, 7, 9, 10, 11, 12, 13, 14, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 131, 132, 133, 135, 137], "setup": [1, 132, 135], "you": [1, 3, 5, 75, 131, 132, 133, 135, 136], "can": [1, 3, 5, 7, 21, 25, 38, 51, 69, 74, 75, 84, 85, 95, 100, 110, 121, 123, 124, 131, 132, 133, 135, 136], "run": [1, 3, 131, 132, 135], "us": [1, 2, 5, 7, 8, 17, 21, 24, 29, 30, 31, 32, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 60, 61, 62, 63, 66, 67, 68, 69, 75, 76, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 98, 99, 100, 102, 105, 107, 110, 112, 114, 121, 123, 124, 130, 131, 132, 133, 135, 136], "all": [1, 7, 8, 9, 10, 11, 12, 13, 15, 63, 73, 75, 108, 109, 110, 123, 131, 132, 133, 134, 135], "file": [1, 5, 121, 131, 132, 133, 135], "For": [1, 21, 76, 121, 131, 132, 135], "style": 1, "we": [1, 3, 121, 131, 132, 133, 135], "recommend": [1, 76], "googl": 1, "guid": 1, "appli": [1, 8, 25, 29, 59, 62, 63, 66, 67, 68, 75, 76, 93, 104, 109, 110, 112, 123, 124, 131, 132, 135], "black": 1, "format": [1, 5, 7, 89, 121, 131, 132, 135], "docstr": 1, "numpi": [1, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 115, 116, 117, 118, 119, 124, 131, 132, 133, 134, 135], "also": [1, 3, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 133, 135, 137], "flake8": 1, "pylint": 1, "further": 1, "static": 1, "analysi": [1, 121, 131, 132, 133, 135], "The": [1, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 60, 61, 63, 66, 68, 69, 72, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 131, 132, 133, 135, 136, 137], "show": [1, 131, 132, 133, 135], "error": [1, 17, 21], "which": [1, 9, 10, 11, 12, 13, 21, 90, 121, 131, 132, 133, 135, 137], "need": [1, 17, 21, 74, 110, 131, 132, 135], "befor": [1, 17, 21, 22, 123, 131, 132, 135], "last": 1, "least": 1, "type": [1, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 72, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 130, 133, 137], "hint": 1, "our": [1, 131, 132, 135], "check": [1, 14, 89], "mypi": 1, "current": [1, 121, 131, 132, 135], "ar": [1, 5, 7, 11, 12, 17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 97, 98, 99, 100, 103, 104, 105, 108, 109, 110, 112, 116, 121, 131, 132, 133, 135], "strict": 1, "enforc": 1, "more": [1, 7, 16, 17, 123, 124, 131, 137], "api": [1, 2, 3, 130, 131, 137], "becom": 1, "stabl": [1, 131, 132, 133, 134, 135], "start": [2, 17, 131, 132, 135], "instal": [2, 131], "pip": [2, 131], "develop": [2, 131, 132, 133, 135], "poetri": [2, 131, 132, 133, 134, 135], "contribut": 2, "notebook": [2, 131, 132, 133, 135], "citat": [2, 121, 131, 132, 133, 135], "pre": [2, 131, 132, 135], "commit": 2, "hook": 2, "code": [2, 131, 132, 135], "guidelin": [2, 3], "tutori": [2, 131, 136, 137], "exampl": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 15, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 130, 131, 132, 133, 135, 136], "case": [2, 3, 75, 115, 121, 130, 131, 132, 135, 136], "refer": [2, 3, 121, 131, 132, 133, 135], "toolkit": 3, "facilit": 3, "research": 3, "deploy": 3, "ml": [3, 131, 132, 135], "model": [3, 16, 17, 21, 121, 123, 124, 130, 136, 137], "healthcar": 3, "It": [3, 38, 51, 75, 84, 85, 100, 105, 136], "provid": [3, 7, 9, 12, 17, 21, 69, 110, 121, 131, 132, 133, 135], "few": 3, "high": [3, 131, 132, 133, 135], "level": [3, 21, 131, 132, 133, 135], "creat": [3, 6, 7, 21, 42, 43, 75, 84, 85, 100, 115, 118, 119, 121, 123, 124, 130, 133, 137], "dataset": [3, 6, 7, 16, 17, 19, 21, 26, 38, 39, 51, 52, 58, 61, 68, 69, 80, 81, 83, 88, 89, 90, 94, 95, 98, 99, 103, 104, 112, 114, 121, 123, 124, 125, 130, 136, 137], "infer": [3, 17], "popular": [3, 131], "effici": 3, "load": [3, 17, 121, 123, 124, 130, 132, 135, 136, 137], "differ": [3, 24, 29, 36, 37, 46, 55, 62, 63, 64, 69, 70, 72, 74, 84, 85, 90, 95, 100, 105, 110, 130, 131, 132, 133, 135, 136], "modal": 3, "common": [3, 131, 132], "implement": [3, 137], "scikit": [3, 131], "learn": [3, 131, 133], "pytorch": 3, "formul": [3, 131, 132, 135], "binari": [3, 5, 24, 25, 29, 30, 34, 35, 36, 37, 47, 48, 49, 50, 56, 57, 60, 61, 62, 63, 66, 69, 72, 78, 79, 84, 85, 87, 90, 92, 95, 97, 100, 102, 104, 105, 107, 110, 115, 123, 124, 131, 132, 135, 137], "multi": [3, 133], "label": [3, 24, 25, 27, 29, 32, 34, 35, 36, 37, 40, 41, 47, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 68, 69, 78, 79, 81, 82, 83, 84, 85, 87, 89, 90, 92, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 109, 110, 116, 117, 119, 123, 124, 130, 131, 133, 137], "tabular": [3, 123, 124, 130], "seri": [3, 123], "imag": [3, 4, 5, 17, 21, 118, 121, 124, 125, 130, 133, 134], "clinic": [3, 111, 112, 130, 136], "detect": [3, 133, 136], "shift": [3, 111, 112, 114, 116, 117, 130, 136], "relev": [3, 121, 131, 132, 135, 136], "card": [3, 121, 130, 131, 132, 135, 137], "end": [3, 131, 132, 133, 135], "nih": [3, 130, 133, 134], "chest": [3, 130], "x": [3, 114, 115, 116, 117, 118, 119, 123, 130, 131, 132, 134, 135], "rai": [3, 130], "mimic": 3, "iv": 3, "python3": [3, 131, 132, 133, 134, 135], "m": [3, 131, 132, 133, 134, 135], "pycyclop": [3, 131, 132, 133, 134, 135], "base": [3, 5, 7, 17, 19, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 130, 131, 137], "doesn": [3, 5], "includ": [3, 7, 11, 21, 72, 112, 114, 131, 132, 133, 135, 136, 137], "packag": [3, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135], "addit": [3, 75, 121, 123, 124, 131, 132, 133, 135], "depend": 3, "set": [3, 7, 17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 131, 132, 133, 135], "up": [3, 131, 132, 133, 135], "henc": 3, "make": [3, 131, 132, 135], "sure": [3, 131], "sourc": [3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 130, 136], "env": 3, "info": [3, 131, 132, 135], "path": [3, 5, 112, 121, 123, 124, 131, 132, 135], "bin": [3, 21], "activ": [3, 135], "In": [3, 75, 131, 132, 135], "order": [3, 5, 17, 107, 108, 109], "test": [3, 17, 121, 123, 124, 130, 131, 132, 135, 136, 137], "codestyl": 3, "unit": 3, "integr": [3, 131], "built": 3, "sphinx": 3, "local": 3, "doc": 3, "cd": 3, "html": [3, 121, 131, 132, 133, 134, 135], "sphinxopt": 3, "d": [3, 75, 112, 133], "nbsphinx_allow_error": 3, "true": [3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 24, 26, 27, 31, 32, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 107, 108, 109, 110, 112, 114, 116, 121, 123, 124, 131, 132, 133, 134, 135], "welcom": 3, "see": [3, 7, 121, 131, 132, 133, 134, 135], "jupyt": [3, 131, 132, 133, 134, 135], "insid": 3, "ipython": 3, "kernel": 3, "after": [3, 17, 131, 132, 135], "ipykernel": 3, "user": [3, 121, 131, 132, 135], "name_of_kernel": 3, "now": 3, "navig": 3, "": [3, 7, 10, 14, 17, 21, 75, 121, 123, 124, 131, 132, 133, 134, 135], "tab": [3, 131], "cite": 3, "when": [3, 5, 17, 21, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 75, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105, 123, 124, 131, 132, 135], "project": 3, "paper": 3, "articl": 3, "krishnan2022": 3, "12": [3, 7, 131, 132, 133, 135], "02": [3, 69, 132, 133], "22283021": 3, "author": [3, 131, 133], "krishnan": 3, "amrit": 3, "subasri": 3, "vallijah": 3, "mckeen": 3, "kaden": 3, "kore": 3, "ali": 3, "ogidi": 3, "franklin": 3, "alinoori": 3, "mahshid": 3, "lalani": 3, "nadim": 3, "dhalla": 3, "azra": 3, "verma": 3, "amol": 3, "razak": 3, "fahad": 3, "pandya": 3, "deval": 3, "dolatabadi": 3, "elham": 3, "titl": [3, 131, 132, 133, 135], "cyclic": 3, "toward": 3, "operation": 3, "health": [3, 131, 132, 135], "eloc": 3, "id": [3, 5, 112, 131, 133, 135], "2022": [3, 7, 131, 132, 133, 135], "year": [3, 7, 9, 131, 132, 133, 135], "doi": 3, "10": [3, 131, 132, 133, 134, 135], "1101": 3, "publish": [3, 131], "cold": 3, "spring": 3, "harbor": 3, "laboratori": [3, 135], "press": 3, "url": [3, 133], "http": [3, 121, 131, 132, 133, 134, 135], "www": [3, 131], "medrxiv": 3, "org": [3, 121, 131, 132, 133, 135], "content": [3, 121], "earli": 3, "08": [3, 131, 132, 134, 135], "journal": 3, "medic": [4, 5, 125, 133, 135, 137], "class": [4, 5, 6, 7, 17, 18, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 69, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 119, 120, 121, 122, 123, 124, 131, 132, 133, 135], "decod": [5, 133], "none": [5, 7, 9, 17, 19, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 121, 123, 124, 131, 132, 133, 134, 135], "reader": 5, "itkread": 5, "suffix": 5, "jpg": 5, "read": [5, 17], "paramet": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 131, 132, 133, 135], "union": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124], "str": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 131, 132, 135], "imageread": 5, "option": [5, 7, 9, 10, 11, 12, 13, 17, 21, 24, 27, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 69, 75, 80, 81, 82, 83, 84, 85, 90, 95, 98, 99, 100, 103, 104, 105, 108, 112, 114, 121, 123, 124, 133], "default": [5, 7, 9, 10, 11, 12, 13, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 121, 123, 124, 131, 132, 135], "monai": 5, "byte": 5, "bool": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 75, 76, 108, 109, 110, 112, 116, 117, 121, 123, 124, 131, 132, 133, 135], "whether": [5, 7, 17, 21, 75, 108, 109, 110, 112, 121, 132, 135, 137], "fals": [5, 7, 9, 10, 11, 12, 13, 14, 17, 19, 21, 29, 30, 40, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 75, 80, 81, 82, 83, 84, 85, 98, 99, 100, 105, 107, 108, 109, 110, 117, 118, 123, 124, 131, 132, 133, 135], "return": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 132, 133, 135], "dictionari": [5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 75, 121, 123, 124, 131, 132, 135], "image_path": 5, "image_byt": 5, "method": [5, 7, 19, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 131, 132, 135], "attribut": [5, 7, 19, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 124, 131, 132, 135], "call": [5, 121], "self": [5, 133], "storag": 5, "cast": [5, 131, 132, 135], "arrow": 5, "arrai": [5, 24, 26, 27, 29, 30, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 60, 61, 63, 66, 67, 68, 69, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 98, 99, 100, 103, 104, 105, 107, 108, 109, 110, 116, 117, 119, 124, 133, 135], "convert": [5, 25, 35, 41, 48, 61, 69, 95, 102, 104, 107, 131, 132, 135], "pyarrow": 5, "rtype": 5, "structarrai": 5, "pa": 5, "string": [5, 7, 9, 12, 17, 21, 75, 121, 133], "must": [5, 9, 17, 21, 121], "contain": [5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 27, 103, 104, 121, 131, 132, 133, 135, 137], "struct": 5, "matter": 5, "list": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 66, 67, 68, 69, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 115, 116, 117, 118, 119, 121, 123, 124, 131, 132, 135], "arg": [5, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "stringarrai": 5, "listarrai": 5, "token_per_repo_id": 5, "from": [5, 7, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 119, 121, 123, 124, 131, 132, 133, 134, 135, 137], "serial": 5, "version": [5, 121, 131, 132, 133, 135], "dict": [5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 22, 75, 121, 123, 124], "access": 5, "privat": 5, "repositori": [5, 131], "hub": 5, "pass": [5, 17, 43, 75, 112, 121, 123, 124, 131, 132, 135], "repo_id": 5, "token": [5, 131], "deseri": 5, "np": [5, 11, 14, 21, 123, 124, 131, 132, 133, 134, 135], "ndarrai": [5, 14, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 115, 116, 117, 118, 119, 123, 124], "metadata": [5, 131, 132, 133, 135], "emb": 5, "encod": 5, "input": [5, 24, 46, 55, 60, 61, 64, 69, 70, 72, 87, 89, 95, 115, 118, 123, 124], "state": [5, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 133], "itself": 5, "otherwis": [5, 14, 24, 27, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 67, 68, 75, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 108, 109, 110], "tupl": [5, 7, 66, 67, 68, 69, 75, 87, 88, 89, 92, 93, 94, 112, 123, 124], "classlabel": [5, 131, 132, 135], "translat": 5, "translationvariablelanguag": 5, "sequenc": [5, 17, 75, 123, 124, 133], "array2d": 5, "array3d": 5, "array4d": 5, "array5d": 5, "audio": 5, "subset": 6, "hug": [6, 123, 124, 130, 137], "face": [6, 123, 124, 130, 137], "object": [7, 19, 21, 112, 114, 121, 123, 124, 131, 132, 135], "ani": [7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124, 131, 132, 133, 135], "A": [7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 22, 25, 75, 76, 104, 109, 121, 131, 132, 133, 135], "each": [7, 8, 17, 21, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 67, 68, 69, 75, 76, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 108, 109, 110, 131, 132, 135], "map": [7, 8, 22, 75, 123, 124, 131, 132, 133, 135], "column": [7, 8, 9, 10, 11, 12, 13, 17, 21, 112, 123, 124, 131, 132, 133, 135], "one": [7, 16, 17, 21, 24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 67, 68, 69, 76, 80, 81, 82, 83, 84, 85, 95, 98, 99, 100, 105, 123, 124], "follow": [7, 17, 24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 60, 61, 75, 80, 81, 82, 83, 84, 85, 98, 99, 100, 105, 121, 131, 132, 133, 135], "exact": [7, 13], "select": [7, 112, 116, 131, 132, 133, 135], "thi": [7, 17, 21, 24, 25, 26, 27, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105, 110, 121, 123, 131, 132, 133, 135, 137], "singl": [7, 75, 121, 123, 124, 131, 132, 135, 137], "row": [7, 131, 133], "where": [7, 8, 9, 10, 11, 12, 13, 60, 61, 63, 75, 121, 123, 124, 131, 132, 135, 137], "support": [7, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 72, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 107, 108, 109, 136], "e": [7, 9, 10, 17, 21, 75, 116, 117, 118, 121, 131, 132, 135], "g": [7, 9, 17, 21, 116, 117, 118, 121, 131, 132, 135], "2021": [7, 131, 132, 135], "01": [7, 29, 31, 32, 131, 132, 133, 135], "00": [7, 131, 132, 133, 134, 135], "min_valu": [7, 11, 131, 132, 133, 134, 135], "minimum": [7, 11], "specifi": [7, 17, 75, 112, 121, 123, 124, 131, 132, 135], "min_inclus": [7, 11, 131, 132, 135], "indic": [7, 21, 27, 60, 61, 115, 118, 131, 132, 133, 135], "rang": [7, 11, 29, 30, 66, 67, 68, 93, 131, 132, 133, 135], "work": [7, 27, 103, 104, 121, 131, 132, 133, 135], "numer": [7, 11, 131, 132, 135], "datetim": [7, 9, 11, 14, 121, 131, 132, 135], "inf": [7, 11, 131, 132, 135], "max_valu": [7, 11, 131, 132, 133, 134, 135], "boolean": [7, 8, 9, 10, 11, 12, 13, 15], "greater": [7, 22, 135], "than": [7, 11, 22, 48, 52, 54, 123, 124, 131, 132, 135, 137], "equal": [7, 11, 21], "maximum": [7, 11, 22, 29, 30], "max_inclus": [7, 11, 131, 132, 135], "less": [7, 11, 48, 52, 54, 132, 135], "match": [7, 9, 12, 13, 17], "between": [7, 21, 38, 51, 69, 95], "1": [7, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 116, 117, 118, 119, 121, 130, 131, 132, 133, 135, 136, 137], "dai": [7, 9, 132, 135, 137], "31": [7, 131, 132, 133, 135], "hour": [7, 9, 132], "0": [7, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 114, 115, 116, 117, 118, 119, 121, 131, 132, 133, 134, 135], "23": [7, 131, 132, 134, 135], "negat": [7, 9, 10, 11, 12, 13, 133], "flag": [7, 132], "doe": [7, 9, 11, 12, 13, 17, 21, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 74, 75, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 110, 121], "keep_nul": [7, 9, 11, 12, 13], "keep": [7, 17, 21, 135], "null": [7, 9, 10, 11, 12, 13, 132, 135], "conjunct": [7, 133], "its": [7, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 60, 61, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 133, 135], "own": [7, 131, 132, 135], "callabl": [7, 8, 17, 21, 76, 121], "import": [7, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 130, 136, 137], "slice_spec": [7, 17, 123, 124, 131, 132, 133, 135], "feature_1": 7, "feature_2": 7, "feature_3": 7, "value_1": 7, "value_2": 7, "2020": [7, 9, 133], "5": [7, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 114, 115, 118, 119, 130, 131, 132, 133, 135, 136], "60": [7, 133, 135], "6": [7, 24, 26, 35, 36, 38, 39, 49, 56, 59, 62, 63, 78, 79, 80, 81, 83, 84, 85, 87, 88, 90, 92, 93, 95, 97, 98, 99, 100, 104, 107, 108, 110, 131, 132, 133, 134, 135], "7": [7, 29, 30, 31, 36, 39, 40, 69, 80, 81, 82, 84, 85, 87, 88, 89, 93, 98, 100, 105, 108, 109, 110, 131, 132, 133, 135, 137], "8": [7, 24, 26, 27, 29, 30, 31, 34, 35, 36, 37, 38, 40, 41, 47, 49, 50, 53, 54, 56, 59, 60, 62, 66, 68, 69, 78, 79, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 105, 107, 109, 110, 131, 132, 133, 135], "2000": 7, "2010": 7, "slice_nam": [7, 121, 131, 132, 135], "slice_func": 7, "print": [7, 131, 132, 133, 135], "do": [7, 17, 131, 132, 133, 135], "someth": 7, "here": [7, 131, 132, 135], "filter": [7, 9, 10, 11, 12, 13, 17, 21, 131, 132, 133, 134, 135], "add": [7, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124, 131, 132, 135], "detail": [7, 131, 132, 133, 135], "registri": [7, 131, 132, 135], "gener": [7, 69, 95, 112, 121, 130, 136, 137], "slice_funct": 8, "combin": [8, 131], "result": [8, 17, 38, 51, 123, 124, 131, 132, 134, 135], "multipl": [8, 17, 21, 75, 121], "bitwis": 8, "AND": 8, "signatur": 8, "should": [8, 21, 69, 76, 95, 117, 121, 123, 124, 131, 132, 133, 135], "kwarg": [8, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 114, 123, 124], "given": [9, 11, 12, 13, 14, 24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 75, 80, 81, 82, 84, 85, 98, 100, 105, 108, 109, 110, 121, 123, 124], "int": [9, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 116, 117, 118, 119, 121, 123, 124, 131, 132, 133, 135], "compon": 9, "have": [9, 12, 13, 17, 114, 131, 132, 137], "nan": [9, 10, 17, 21, 130, 137], "nat": 9, "rais": [9, 11, 12, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124], "typeerror": [9, 11, 12, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121], "float": [11, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 109, 110, 115, 116, 117, 118, 119, 121, 133], "valueerror": [11, 17, 21, 48, 50, 52, 54, 58, 59, 60, 61, 62, 63, 69, 121, 123, 124], "either": [11, 30, 31, 32, 75, 87, 88, 89, 92, 93, 94, 110, 121, 131, 132, 135], "substr": 12, "ha": [13, 75, 121, 131, 132, 133, 135], "find": [13, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 123, 133], "perform": [13, 26, 27, 31, 32, 121, 130, 132, 135, 136, 137], "datetime64": 14, "target_column": [17, 19, 21, 131, 132, 133, 135], "feature_column": [17, 133, 134], "prediction_column_prefix": [17, 123, 124, 131, 132, 133, 135], "remove_column": [17, 19, 21, 123, 124, 133], "transform": [17, 66, 67, 68, 93, 123, 124, 131, 132, 133, 134, 135], "split": [17, 112, 121, 123, 124, 131, 132, 133, 135], "batch_siz": [17, 19, 21, 112, 123, 124, 131, 132, 135], "1000": [17, 19, 21, 112, 123, 131, 133], "raise_on_empty_slic": [17, 21], "fairness_config": [17, 123, 124, 131, 132, 135], "override_fairness_metr": [17, 123, 124, 131, 132, 135], "load_dataset_kwarg": 17, "datasetdict": [17, 123, 124], "load_dataset": 17, "argument": [17, 21, 43, 75, 123, 124, 131, 132, 135], "target": [17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 116, 117, 123, 124, 130, 131, 132, 135, 136, 137], "prefix": [17, 75], "ad": [17, 114, 121, 123, 124, 131, 132, 135], "model_nam": [17, 123, 124, 131, 132, 133, 134, 135], "remov": [17, 21, 75, 119, 123, 124, 131, 132, 133, 135], "mai": [17, 21, 131, 132, 133, 135], "expens": [17, 21], "memori": [17, 21], "wrappedmodel": [17, 123, 124], "entir": [17, 131, 132, 135], "being": 17, "note": [17, 121, 131, 132, 135], "chosen": 17, "avail": [17, 121, 131, 132, 135, 137], "first": [17, 21, 25, 76, 104, 131, 132, 135], "eval": 17, "val": 17, "dev": 17, "batch": [17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 123, 124, 132, 133], "size": [17, 21, 112, 123, 124, 131, 132, 133, 135], "neg": [17, 35, 48, 49, 50, 51, 52, 53, 54, 59, 61, 62, 63, 72, 81, 83, 85, 98, 99, 100, 105, 107, 108, 109, 133, 135], "integ": [17, 21, 121], "empti": [17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "warn": [17, 22, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 102, 103, 104, 105], "log": [17, 121, 130, 131, 132, 135, 137], "configur": [17, 18, 19, 123, 124, 131, 132, 135], "overridden": [17, 123, 124], "prediction_column": [17, 19, 21], "keyword": [17, 21, 43, 75, 123, 124], "onli": [17, 21, 24, 27, 29, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 62, 63, 75, 80, 81, 82, 84, 85, 98, 100, 103, 104, 105, 108, 109, 110], "found": [17, 75, 121, 131, 132, 133, 134, 135], "group": [19, 21, 22, 75, 121, 131, 132, 135], "group_valu": [19, 21], "group_bin": [19, 21, 131, 132, 135], "group_base_valu": [19, 21, 131, 132, 135], "threshold": [19, 21, 24, 25, 27, 29, 30, 31, 32, 34, 35, 36, 37, 40, 41, 47, 48, 49, 50, 53, 54, 56, 57, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 102, 104, 105, 107, 109, 110, 121, 130, 131, 132, 135, 137], "compute_optimal_threshold": [19, 21], "metric_nam": [19, 21, 43, 121, 131, 132, 133, 135], "metric_kwarg": [19, 21], "take": [21, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 112, 131], "allow": [21, 22, 131, 132, 135, 136], "intersect": 21, "treat": 21, "multilabel": [21, 24, 27, 29, 32, 36, 37, 40, 41, 49, 50, 53, 54, 60, 61, 62, 63, 68, 69, 72, 82, 83, 84, 85, 89, 90, 94, 95, 99, 100, 104, 105, 109, 110, 130, 137], "same": [21, 75, 116], "uniqu": [21, 22, 29, 30, 31, 32, 66, 67, 68, 69, 74, 87, 88, 89, 92, 93, 94, 95, 110, 133, 137], "limit": [21, 131, 132, 133, 135], "number": [21, 22, 24, 26, 27, 29, 30, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 75, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 98, 99, 100, 103, 104, 105, 108, 110, 112, 116, 117, 121, 123, 124, 132, 135, 136], "continu": [21, 131, 132, 133, 135], "veri": 21, "slow": 21, "larg": 21, "denomin": 21, "pariti": 21, "across": [21, 116, 136], "linspac": 21, "monoton": [21, 69, 95], "optim": [21, 131], "oper": [21, 65, 76, 131, 132, 135], "necessari": 21, "control": [21, 115], "usag": [21, 131, 132, 135], "rel": 21, "small": 21, "32": [21, 131, 132, 135], "avoid": 21, "encount": [21, 132, 135], "nest": 21, "second": [21, 76], "third": 21, "omit": 21, "requir": [21, 24, 29, 36, 37, 49, 50, 69, 84, 85, 90, 95, 100, 105, 110, 121, 123, 124, 131, 132, 135], "huggingfac": [21, 112, 123, 124], "runtimeerror": 21, "unique_valu": 22, "max_unique_valu": 22, "50": [22, 131, 132, 133, 134, 135], "score": [24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 70, 72, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 133], "liter": [24, 25, 26, 27, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 69, 78, 79, 80, 81, 82, 83, 84, 85, 90, 95, 97, 98, 99, 100, 103, 104, 105, 110, 121], "multiclass": [24, 26, 29, 31, 36, 37, 38, 39, 49, 50, 51, 52, 58, 59, 62, 63, 67, 69, 72, 80, 81, 84, 85, 88, 90, 93, 95, 98, 100, 103, 105, 108, 110], "One": [24, 29, 31, 32, 35, 48, 59, 62, 63, 69, 95, 132, 133, 135], "pos_label": [24, 25, 30, 34, 35, 36, 37, 47, 48, 49, 50, 56, 57, 62, 63, 66, 69, 78, 79, 84, 85, 87, 90, 92, 95, 97, 100, 102, 105, 107, 110], "consid": [24, 26, 27, 36, 37, 49, 50, 62, 63, 84, 85, 90, 95, 100, 103, 104, 105, 132], "posit": [24, 25, 29, 30, 34, 35, 36, 37, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 90, 92, 95, 97, 98, 99, 100, 102, 105, 107, 108, 109, 110, 131, 132, 133, 135], "num_class": [24, 26, 29, 31, 36, 37, 38, 39, 49, 50, 51, 52, 58, 59, 61, 62, 63, 67, 69, 80, 81, 84, 85, 88, 90, 93, 95, 98, 100, 103, 105, 108, 110, 131, 132, 135], "decid": [24, 36, 37, 40, 41, 49, 50, 53, 54, 56, 57, 60, 61, 78, 79, 82, 83, 84, 85, 97, 99, 100, 105], "top_k": [24, 26, 27, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 108, 109, 110, 133], "probabl": [24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 80, 81, 82, 84, 85, 93, 98, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 131, 135], "logit": [24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 72, 80, 81, 82, 84, 85, 98, 100, 102, 103, 104, 105, 107, 108, 109, 110], "top": [24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 80, 81, 82, 84, 85, 98, 100, 105, 108, 109, 110], "k": [24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 75, 80, 81, 82, 84, 85, 98, 100, 105, 108, 109, 110, 134], "num_label": [24, 27, 29, 32, 36, 37, 40, 41, 49, 50, 53, 54, 60, 61, 62, 63, 68, 69, 82, 83, 84, 85, 89, 90, 94, 95, 99, 100, 104, 105, 109, 110, 133], "averag": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 131], "micro": [24, 26, 27, 29, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105], "macro": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105], "weight": [24, 26, 27, 29, 31, 32, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 133, 134, 135], "calcul": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105], "global": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "unweight": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105], "mean": [24, 26, 27, 29, 31, 32, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 131, 132, 133, 135], "imbal": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 119], "account": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 131, 133], "instanc": [24, 26, 27, 31, 32, 36, 37, 38, 39, 40, 41, 43, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 131, 132, 133, 135], "alter": [24, 26, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 105], "zero_divis": [24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 102, 103, 104, 105], "zero": [24, 25, 26, 27, 34, 36, 37, 38, 39, 40, 41, 47, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105], "divis": [24, 25, 26, 27, 34, 36, 37, 38, 39, 40, 41, 47, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105], "act": [24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105], "pred": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 135], "75": [24, 25, 29, 30, 66, 67, 68, 90, 92, 95, 103, 104, 105, 131, 135], "05": [24, 26, 27, 29, 31, 32, 36, 38, 39, 40, 49, 53, 62, 67, 68, 69, 80, 81, 84, 85, 88, 90, 93, 94, 95, 98, 100, 103, 104, 105, 108, 110], "95": [24, 26, 27, 36, 38, 49, 62, 69, 88, 90, 93, 94, 95, 133, 135], "p": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 115, 133], "zip": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "2": [24, 26, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 75, 78, 79, 80, 81, 82, 83, 84, 85, 88, 89, 90, 92, 93, 95, 97, 98, 99, 100, 103, 104, 105, 107, 108, 109, 110, 116, 117, 121, 130, 131, 132, 133, 135, 136], "3": [24, 26, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 47, 49, 50, 51, 52, 53, 56, 58, 59, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 103, 104, 105, 107, 108, 109, 110, 116, 117, 130, 131, 132, 133, 135, 136], "66666667": [24, 26, 36, 38, 49, 51, 61, 63, 81, 85, 87, 88, 90, 93, 94, 95, 98, 100, 104], "initi": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 124, 130, 131, 132, 135, 137], "other": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131], "two": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "scalar": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "togeth": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "multipli": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "variabl": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 137], "attributeerror": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "alreadi": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 135], "exist": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124], "copi": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 133, 135], "abstract": [24, 29, 36, 37, 73, 74, 84, 85, 90, 95, 100, 105, 110], "final": [24, 29, 36, 37, 74, 84, 85, 90, 95, 100, 105, 110, 132, 133, 135], "reset": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "_update_count": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "_comput": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "sigmoid": [25, 35, 41, 66, 68, 69, 102, 104, 107, 109, 110], "them": [25, 104, 131, 132, 135, 136], "875": 25, "problem": [26, 88, 108, 109, 110, 137], "highest": [26, 27, 62, 63, 103, 104], "determin": [26, 27, 29, 30, 31, 32, 66, 67, 68, 87, 88, 89, 90, 92, 93, 94], "dtype": [26, 27, 31, 32, 38, 39, 40, 41, 66, 67, 68, 69, 80, 81, 82, 83, 87, 88, 89, 92, 93, 94, 98, 99, 103, 104, 115, 116, 117, 118, 119, 131, 133], "float64": [26, 27, 31, 32, 38, 39, 40, 41, 66, 67, 68, 69, 80, 81, 82, 83, 87, 88, 89, 92, 93, 94, 98, 99, 103, 104, 115, 116, 117, 118, 119, 133], "binar": [27, 29, 30, 31, 32, 34, 47, 67, 68, 93, 94, 109, 110], "output": [27, 69, 121, 131, 132, 135], "classifi": [27, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 102, 131, 132, 135], "correct": [27, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 93, 102, 103, 104], "per": [27, 75, 132, 135], "area": [28, 29, 30, 31, 32, 45, 131, 132, 135], "under": [28, 29, 30, 31, 32, 45, 131, 132, 135], "curv": [28, 29, 30, 31, 32, 45, 64, 65, 66, 67, 68, 69, 86, 87, 88, 89, 90, 92, 93, 94, 95, 131, 132, 135], "max_fpr": [29, 30], "rate": [29, 30, 66, 67, 68, 69, 131, 132, 133, 135], "partial": [29, 30, 133], "auc": 29, "automat": [29, 30, 31, 32, 66, 67, 68, 87, 88, 89, 90, 92, 93, 94], "applic": [29, 111, 112, 114], "4": [29, 30, 34, 35, 36, 37, 40, 47, 50, 59, 63, 69, 82, 83, 84, 85, 87, 88, 90, 92, 93, 94, 95, 99, 100, 105, 107, 108, 109, 110, 130, 131, 132, 133, 135, 136], "35": [29, 30, 69, 87, 92, 95, 103, 104, 105, 131, 132, 133, 134, 135], "9": [29, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 49, 50, 53, 54, 56, 60, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 89, 90, 93, 94, 95, 97, 98, 99, 100, 103, 104, 105, 107, 109, 110, 131, 132, 133, 135], "6111111111111112": [29, 30], "89": [29, 31, 32, 69], "06": [29, 31, 69, 133, 135], "94": [29, 31, 133], "22222222": [29, 31], "625": [29, 32, 35, 103], "aucroc": 30, "confus": [30, 31, 32, 87, 88, 89, 92, 93, 94, 135], "matrix": [30, 31, 32, 87, 88, 89, 92, 93, 94, 115, 116, 117, 118, 119, 135], "f": [33, 35, 37, 38, 39, 41, 46, 48, 50, 51, 52, 54, 75, 131, 132, 133, 134, 135], "beta": [33, 35, 37, 39, 41, 46, 48, 50, 52, 54], "f1": [34, 36, 38, 40, 46, 47, 49, 51, 53], "form": [34, 47, 131, 132, 135], "6666666666666666": [34, 36, 47, 56, 78, 84], "harmon": [35, 37, 39, 41, 48, 50, 52, 54, 131, 132, 135], "8333333333333334": [35, 37, 50, 59, 62], "85714286": [36, 38], "9090909090909091": [37, 135], "83333333": [37, 41, 50, 54], "55555556": [37, 50, 103], "90909091": [37, 39, 41], "85": [39, 80, 81, 84, 85, 98, 100, 131, 135], "total": [40, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 108, 132, 135], "count": [40, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 131, 132, 133, 135], "predicit": 41, "constructor": 43, "arraylik": [47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 76, 93, 102], "ground": [47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 93, 102], "truth": [47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 93, 102], "npt": [48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63], "7142857142857143": 48, "estim": [49, 50, 66, 67, 68, 69, 93, 102, 123], "shape": [49, 50, 51, 52, 53, 54, 60, 61, 108, 109, 133, 134], "expect": [60, 61, 131, 132, 135], "like": [60, 61, 75, 131], "n": [60, 61, 131, 132, 133], "l": [60, 61], "sampl": [60, 61, 63, 119], "presenc": [60, 61, 133], "absenc": [60, 61], "rest": 61, "ratio": [62, 63, 105, 135], "correctli": [62, 131, 132, 133, 135], "observ": [62, 131, 135, 137], "precision_scor": 62, "tp": [63, 107, 108, 109, 133, 135], "fn": [63, 107, 108, 109, 133, 135], "intuit": 63, "abil": [63, 131, 132, 135], "recall_scor": 63, "3333333333333333": 63, "receiv": [65, 131, 132, 135], "characterist": [65, 131, 132, 135], "decis": [66, 67, 68, 69, 93, 121, 131, 132, 135], "fpr": [66, 67, 68, 69, 131, 132, 135], "tpr": [66, 67, 68, 69], "25": [66, 67, 68, 88, 90, 92, 93, 95, 105, 116, 117, 131, 132, 134, 135], "softmax": [67, 69, 93], "1d": [67, 68, 69, 95], "33333333": [67, 85, 88, 90, 93, 94, 95, 100], "non": 69, "thei": 69, "evenli": [69, 95], "space": [69, 95], "increas": [69, 95], "assertionerror": [69, 121], "03": [69, 133], "stat": [72, 106, 107, 108, 109, 110], "abc": 74, "properti": [74, 110, 123, 124], "other_metr": 75, "postfix": 75, "userdict": 75, "collect": [75, 131, 137], "want": 75, "behav": 75, "themselv": 75, "intern": 75, "similar": 75, "reduc": 75, "els": [75, 133, 134], "keep_bas": 75, "iter": 75, "underli": 75, "moduledict": 75, "hashabl": 75, "v": 75, "correspond": [75, 123, 124], "keyerror": [75, 121], "some": [75, 131, 132, 135], "pair": 75, "present": 75, "lack": 75, "metric_a": 76, "metric_b": 76, "metric1": 76, "metric2": 76, "unari": 76, "appropri": [84, 85, 100, 131, 132, 135], "375": [88, 90], "suniqu": 90, "45": [90, 105, 131, 132, 133, 135], "42857143": 90, "15": [103, 104, 105, 131, 132, 135], "57142857": 103, "sum": [105, 108, 109, 110, 132, 133, 135], "_abstractscor": [107, 108, 109], "fp": [107, 108, 109, 133, 135], "tn": [107, 108, 109, 133, 135], "classwis": [108, 110], "over": [108, 109, 110, 130, 132, 133, 135, 137], "labelwis": [109, 110, 133], "prior": [110, 131], "modul": [111, 120, 121, 131, 132, 135], "shift_typ": [112, 114], "shift_id": [112, 134], "induc": [112, 114], "synthet": [112, 114, 121, 130, 135, 136, 137], "categor": [112, 131, 132, 135], "origin": 112, "util": [112, 131, 132, 133, 135], "load_nih": 112, "mnt": [112, 131, 132, 133, 134, 135], "nihcxr": [112, 130, 133, 136], "hospital_type_1": 112, "hospital_type_2": 112, "hospital_type_3": 112, "hospital_type_4": 112, "hospital_type_5": 112, "ds_sourc": [112, 134], "ds_target": [112, 134], "num_proc": [112, 134], "process": [112, 130, 131, 133, 135, 137], "build": 112, "hospit": [112, 131, 132, 135, 137], "drift_detect": 114, "experiment": 114, "sklearn": [114, 131, 132, 135], "load_diabet": 114, "y": [114, 116, 117, 119, 123, 131, 132, 133, 135], "return_x_i": 114, "x_tr": 114, "x_te": 114, "y_tr": 114, "y_te": 114, "train_test_split": [114, 131, 132, 135], "test_siz": 114, "random_st": [114, 131, 132, 135], "42": [114, 131, 132, 134, 135], "gn_shift": 114, "x_shift": 114, "x_train": [114, 123], "noise_amt": [114, 118], "delta": [114, 115, 118, 119], "ko_shift": 114, "cp_shift": 114, "mfa_shift": 114, "bn_shift": 114, "tolerance_shift": 114, "ds_shift": 114, "nois": [114, 115, 118], "prob": 115, "covari": [115, 116, 117, 118, 119], "proport": [115, 131, 132, 133, 135], "fraction": [115, 118, 119, 135], "affect": [115, 118, 121, 131, 132, 135], "n_shuffl": [116, 117], "keep_rows_const": 116, "repermute_each_column": 116, "multiwai": 116, "associ": [116, 131, 132, 133, 135], "swap": [116, 117], "individu": [116, 131, 132, 135], "within": [116, 132], "cl": [116, 117], "etc": [116, 117, 131, 132, 133, 135], "floatnumpi": 116, "shuffl": [116, 117, 131], "permut": 116, "placehold": 116, "shift_class": [117, 119], "rank": 117, "changepoint": 117, "axi": [117, 132, 135], "x_ref": 117, "y_ref": 117, "normal": [118, 131, 132, 135], "clip": [118, 131, 132, 135], "gaussian": 118, "standard": [118, 131, 132, 135], "deviat": 118, "divid": 118, "255": [118, 133, 134], "placehol": 119, "output_dir": [121, 131, 132, 135], "serv": 121, "interfac": 121, "popul": [121, 130, 131, 132, 135, 137], "modelcard": 121, "directori": [121, 131, 132, 135], "save": [121, 123, 124, 131, 132, 135], "output_filenam": [121, 131, 132, 133, 135], "template_path": 121, "interact": [121, 132, 135], "save_json": 121, "synthetic_timestamp": [121, 131, 132, 133, 135], "date": [121, 131, 132, 135], "jinja2": 121, "json": [121, 131, 132, 135], "timestamp": [121, 130, 132, 133, 136], "back": 121, "classmethod": 121, "cyclops_report": [121, 131, 132, 135], "section_nam": [121, 131, 132, 133, 135], "model_detail": [121, 131, 132, 135], "extra": 121, "section": [121, 131, 132, 133, 135], "repres": [121, 133], "bibtex": 121, "entri": 121, "plain": 121, "text": [121, 133], "descript": [121, 131, 132, 133, 135], "license_id": [121, 131], "sensitive_featur": [121, 131], "sensitive_feature_justif": [121, 131], "inform": [121, 131], "about": [121, 131, 132, 133, 135], "resourc": [121, 131, 132, 135], "context": 121, "homepag": 121, "spdx": [121, 131], "identifi": [121, 130, 133, 137], "licens": [121, 131, 132, 133, 135], "apach": [121, 131, 132, 135], "unknown": 121, "unlicens": 121, "proprietari": 121, "justif": [121, 131], "field": [121, 130, 131, 132, 135, 137], "descriptor": 121, "new": [121, 131, 132, 135], "pydant": 121, "basemodel": 121, "subclass": 121, "As": 121, "long": 121, "conflict": 121, "defin": [121, 131, 132, 133, 135], "model_card": 121, "cylop": 121, "tradeoff": [121, 133], "trade": 121, "off": 121, "interpret": 121, "consider": [121, 131, 132, 133, 135], "affected_group": [121, 131, 132, 133, 135], "benefit": [121, 131, 132, 133, 135], "harm": [121, 131, 132, 133, 135], "mitigation_strategi": [121, 131, 132, 133, 135], "assess": 121, "mitig": [121, 131, 132, 133, 135], "strategi": [121, 131, 132, 133, 135], "relat": 121, "img_path": 121, "caption": [121, 131, 132, 133, 135], "full": 121, "whole": [121, 131, 132, 135], "left": [121, 135], "blank": 121, "instead": 121, "param": [121, 131, 132, 135], "contact": [121, 131, 132, 133, 135], "role": 121, "owner": [121, 131, 132, 133, 135], "quantit": [121, 131, 132, 133, 135], "slash": 121, "fig": [121, 131, 132, 133, 135], "plotli": [121, 131, 132, 133, 135], "figur": [121, 131, 132, 135], "plot": [121, 131, 132, 133, 135], "analysis_typ": 121, "metric_slic": [121, 131, 132, 133, 135], "decision_threshold": 121, "pass_fail_threshold": [121, 131, 132, 133, 135], "pass_fail_threshold_fn": [121, 131, 132, 133, 135], "explain": 121, "fail": 121, "regul": 121, "regulatori": [121, 131, 132, 135], "compli": 121, "risk": [121, 131, 132, 133, 135, 137], "kind": [121, 131, 132, 133, 135], "primari": [121, 131, 132, 133, 135], "scope": [121, 131, 132, 135], "usecas": 121, "version_str": [121, 131, 132, 135], "semant": 121, "v1": 121, "dt_date": 121, "dt_datetim": 121, "unix": 121, "yyyi": 121, "mm": 121, "dd": 121, "hh": 121, "ss": 121, "ffffff": 121, "z": 121, "summar": 121, "chang": [121, 131, 132, 133, 135], "made": [121, 131, 132, 135], "task_featur": [123, 124, 131, 132, 135], "task_target": [123, 124, 131, 132, 135], "basetask": [123, 124], "ptmodel": [123, 124, 133], "skmodel": [123, 124], "splits_map": [123, 124], "fit": [123, 131, 132, 135], "columntransform": [123, 131, 132, 135], "slicingconfig": 123, "default_max_batch_s": 123, "unnecessari": [123, 124], "filepath": [123, 124], "pretrain": [123, 124, 133], "proba": [123, 131, 132, 135], "mortal": [123, 130], "pd": [123, 132], "datafram": [123, 131, 132, 135], "notfittederror": 123, "destin": [123, 124], "parent": [123, 124], "dirctori": [123, 124], "best_model_param": [123, 131, 132, 135], "y_train": 123, "pipelin": [123, 131, 132, 135], "best": [123, 131, 132, 135], "64": [124, 132, 133, 135], "compos": [124, 131, 132, 133, 134, 135], "pathologi": [124, 130, 131, 137], "represent": [124, 131, 132, 135], "kaggl": [130, 131], "heart": 130, "failur": 130, "librari": [130, 136, 137], "constant": [130, 137], "distribut": [130, 133, 137], "outcom": [130, 137], "preprocessor": [130, 137], "creation": [130, 137], "mimiciv": [130, 132], "queri": [130, 137], "inspect": [130, 131, 137], "preprocess": [130, 131, 137], "drop": [130, 131, 137], "nan_threshold": [130, 131, 137], "gender": [130, 131, 133, 134, 137], "synthea": [130, 135], "prolong": [130, 132], "length": [130, 132, 133], "stai": [130, 132], "diseas": [130, 131, 137], "histor": [130, 131, 137], "period": [130, 137], "w": [130, 137], "drift": [130, 136], "experi": [130, 136], "dimension": [130, 136], "reduct": [130, 136], "techniqu": [130, 136], "roll": [130, 136], "window": [130, 136], "biweekli": [130, 136], "showcas": [131, 132, 135, 137], "patient": [131, 132, 133, 134, 135, 137], "shutil": [131, 132, 133, 135], "express": [131, 132, 133, 135], "px": [131, 132, 133, 135], "kaggle_api_extend": 131, "kaggleapi": 131, "imput": [131, 132, 135], "simpleimput": [131, 132, 135], "minmaxscal": [131, 132, 135], "onehotencod": [131, 132, 135], "noqa": [131, 132, 133, 135], "e402": [131, 132, 133, 135], "catalog": [131, 132, 135], "create_model": [131, 132, 135], "tabularfeatur": [131, 132, 135], "classificationplott": [131, 132, 135], "flatten_results_dict": [131, 132, 135], "join": [131, 132, 135], "load_datafram": 131, "wizuawxh": [131, 132, 133, 134, 135], "py3": [131, 132, 133, 134, 135], "lib": [131, 132, 133, 134, 135], "site": [131, 132, 133, 134, 135, 137], "tqdm": [131, 132, 133, 134, 135], "auto": [131, 132, 133, 134, 135], "py": [131, 132, 133, 134, 135], "21": [131, 132, 133, 134, 135], "tqdmwarn": [131, 132, 133, 134, 135], "iprogress": [131, 132, 133, 134, 135], "ipywidget": [131, 132, 133, 134, 135], "readthedoc": [131, 132, 133, 134, 135], "io": [131, 132, 133, 134, 135], "en": [131, 132, 133, 134, 135], "user_instal": [131, 132, 133, 134, 135], "autonotebook": [131, 132, 133, 134, 135], "notebook_tqdm": [131, 132, 133, 134, 135], "offer": [131, 132, 133, 135], "document": [131, 132, 133, 135], "through": [131, 132, 133, 135], "overview": [131, 132, 133, 135], "how": [131, 132, 133, 135], "quick": [131, 132, 133, 135], "glanc": [131, 132, 133, 135], "sever": [131, 132, 133, 135], "subgroup": [131, 132, 133, 135], "statist": [131, 132, 133, 135, 136], "subpopul": [131, 132, 133, 135], "technic": [131, 132, 133, 135], "architectur": [131, 132, 133, 135], "involv": [131, 132, 133, 135], "intend": [131, 132, 133, 135], "go": [131, 132, 133, 135], "tool": [131, 132, 133, 135], "progress": [131, 132, 133, 135], "subject": [131, 132, 133, 135], "data_dir": [131, 133], "random_se": [131, 132, 135], "train_siz": [131, 132, 135], "sign": [131, 135], "com": [131, 133], "Then": 131, "profil": [131, 132, 135], "usernam": 131, "trigger": 131, "download": 131, "credenti": 131, "place": 131, "locat": 131, "machin": [131, 133], "authent": 131, "dataset_download_fil": 131, "fedesoriano": 131, "unzip": 131, "df": 131, "csv": [131, 135], "file_format": 131, "reset_index": [131, 132, 135], "index": [131, 132, 133, 135], "2023": [131, 132, 133, 135], "11": [131, 132, 133, 135, 137], "24": [131, 132, 135], "41": [131, 132, 135], "145": [131, 135], "chestpaintyp": 131, "restingbp": 131, "cholesterol": 131, "fastingb": 131, "restingecg": 131, "40": [131, 132, 135], "ata": 131, "140": 131, "289": 131, "49": [131, 135], "nap": 131, "160": 131, "180": 131, "37": [131, 132, 135], "130": 131, "283": 131, "st": 131, "48": [131, 133, 135], "asi": 131, "138": 131, "214": 131, "54": [131, 133], "150": 131, "195": 131, "913": 131, "ta": 131, "110": 131, "264": 131, "914": 131, "68": [131, 132, 135], "144": 131, "193": [131, 132], "915": 131, "57": [131, 133, 134, 135], "131": 131, "916": 131, "236": 131, "lvh": 131, "917": 131, "38": [131, 132, 135], "175": 131, "maxhr": 131, "exerciseangina": 131, "oldpeak": 131, "st_slope": 131, "heartdiseas": 131, "172": 131, "156": [131, 135], "flat": 131, "98": 131, "108": 131, "122": 131, "132": [131, 135], "141": 131, "115": 131, "174": 131, "173": 131, "918": 131, "13": [131, 132, 133, 135], "pie": [131, 132, 133, 135], "update_layout": [131, 132, 133, 135], "histogram": [131, 132, 133, 135], "xaxis_titl": [131, 132, 133, 135], "yaxis_titl": [131, 132, 133, 135], "bargap": [131, 132, 133, 135], "astyp": [131, 132, 135], "update_trac": [131, 132, 133, 135], "textinfo": [131, 132, 135], "percent": [131, 132, 135], "title_text": [131, 132, 135], "hovertempl": [131, 132, 135], "br": [131, 132, 135], "class_count": [131, 132, 135], "value_count": [131, 132, 135], "class_ratio": [131, 132, 135], "8070866141732284": 131, "14": [131, 132, 133, 135, 137], "39": [131, 132, 133, 135], "20": [131, 132, 133, 135], "wa": [131, 132, 133, 135], "li": 131, "et": 131, "al": 131, "most": 131, "features_list": [131, 132, 135], "sort": [131, 132, 135], "help": [131, 132, 133, 135], "essenti": [131, 132, 135], "step": [131, 132, 135], "understand": [131, 132, 135], "u": [131, 132, 135], "16": [131, 132, 133, 135], "tab_featur": [131, 132, 135], "ordin": [131, 132], "might": [131, 132, 135], "17": [131, 132, 133, 135], "numeric_transform": [131, 132, 135], "scaler": [131, 132, 135], "binary_transform": [131, 132, 135], "most_frequ": [131, 132, 135], "18": [131, 132, 133, 134, 135], "numeric_featur": [131, 132, 135], "features_by_typ": [131, 132, 135], "numeric_indic": [131, 132, 135], "get_loc": [131, 132, 135], "19": [131, 132, 133, 135], "binary_featur": [131, 132, 135], "ordinal_featur": [131, 132], "binary_indic": [131, 132, 135], "ordinal_indic": [131, 132], "num": [131, 132, 135], "onehot": [131, 132, 135], "handle_unknown": [131, 132, 135], "ignor": [131, 132, 133, 135], "remaind": [131, 132, 135], "passthrough": [131, 132, 135], "let": [131, 132, 135], "done": [131, 132, 135], "independ": 131, "everi": 131, "uci": 131, "archiv": 131, "ic": 131, "edu": 131, "databas": [131, 132, 135], "cleandoc": 131, "misc": 131, "cc0": 131, "demograph": [131, 133], "often": 131, "strong": 131, "correl": 131, "older": [131, 132, 135], "higher": 131, "panda": [131, 132, 135], "power": [131, 132, 135], "easi": [131, 132, 135], "compat": [131, 132, 135], "22": [131, 132, 133, 135], "from_panda": [131, 132, 135], "cleanup_cache_fil": [131, 132, 135], "num_row": 131, "cast_column": [131, 132, 135], "stratify_by_column": [131, 132, 135], "seed": [131, 132, 133, 134, 135], "100": [131, 132, 133, 134, 135], "lt": [131, 132, 133, 134, 135], "244561": 131, "straightforward": [131, 132, 135], "maintain": [131, 132, 135], "instanti": [131, 132, 135], "line": [131, 132, 135], "sgd": 131, "logisit": [131, 132, 135], "regress": [131, 132, 135], "sgdclassif": 131, "sgd_classifi": 131, "123": [131, 132, 135], "verbos": [131, 132, 135], "class_weight": 131, "balanc": 131, "encapsul": [131, 132, 135], "cohes": [131, 132, 135], "structur": [131, 132, 135], "smooth": [131, 132, 135], "manag": [131, 132, 135], "heart_failure_prediction_task": 131, "26": [131, 132, 133, 134, 135], "hyperparamet": [131, 132, 135], "search": [131, 132, 135], "grid": [131, 132, 135], "27": [131, 132, 133, 135], "alpha": 131, "0001": 131, "001": 131, "learning_r": [131, 132, 135], "invscal": 131, "adapt": 131, "eta0": 131, "roc_auc": 131, "226": [131, 135], "wrapper": [131, 132, 133, 135], "sk_model": [131, 132, 135], "227": 131, "228": 131, "sgdclassifi": 131, "x27": [131, 132, 135], "early_stop": 131, "loss": 131, "log_loss": 131, "rerun": [131, 132, 135], "cell": [131, 132, 135], "trust": [131, 132, 135], "On": [131, 132, 133, 135], "github": [131, 132, 133, 135], "unabl": [131, 132, 135], "render": [131, 132, 135], "try": [131, 132, 135], "page": [131, 132, 135], "nbviewer": [131, 132, 135], "sgdclassifiersgdclassifi": 131, "28": [131, 132, 135], "model_param": [131, 132, 135], "epsilon": 131, "fit_intercept": 131, "l1_ratio": 131, "max_it": 131, "n_iter_no_chang": 131, "n_job": [131, 132, 135], "penalti": 131, "l2": 131, "power_t": 131, "tol": 131, "validation_fract": 131, "warm_start": 131, "29": [131, 132, 133, 135], "30": [131, 132, 133, 135, 137], "y_pred": [131, 132, 135], "only_predict": [131, 132, 135], "len": [131, 132, 133, 135], "184": 131, "8271": 131, "variou": [131, 132, 135], "perspect": [131, 132, 135], "metric_collect": [131, 132, 135], "certain": [131, 132, 135], "70": 131, "33": [131, 132, 135], "fnr": [131, 132, 135], "ber": [131, 132, 135], "fairness_metric_collect": [131, 132, 135], "34": [131, 132, 135], "dataset_with_pr": [131, 132, 135], "7341": 131, "77": 131, "9069": 131, "72": [131, 132, 133], "47970": 131, "66": 131, "gt": [131, 132, 133, 134, 135], "18775": 131, "19772": 131, "20862": 131, "20174": 131, "20997": 131, "21459": 131, "36": [131, 132, 135], "results_femal": 131, "_": [131, 135], "8169": 131, "97": [131, 133], "11210": 131, "47961": 131, "71": 131, "14985": 131, "right": [131, 132, 135], "results_flat": [131, 132, 133, 135], "remove_metr": [131, 132, 135], "results_female_flat": 131, "plw2901": [131, 132, 133, 135], "actual": [131, 132, 133, 135], "known": [131, 132, 133, 135], "measur": [131, 132, 135], "lambda": [131, 132, 133, 134, 135], "plotter": [131, 132, 134, 135], "class_nam": [131, 132, 135], "set_templ": [131, 132, 135], "plotly_whit": [131, 132, 135], "extract": [131, 132, 135], "slice_result": [131, 132, 135], "dict_kei": [131, 132, 135], "roc_plot": [131, 132, 135], "roc_curve_comparison": [131, 132, 135], "femal": [131, 132, 133, 134, 135], "overall_perform": [131, 132, 135], "metric_valu": [131, 132, 135], "overall_performance_plot": [131, 132, 135], "metrics_valu": [131, 132, 135], "43": [131, 132, 133, 135], "slice_metr": [131, 132, 135], "44": [131, 132, 133, 135], "slice_metrics_plot": [131, 132, 135], "metrics_comparison_bar": [131, 132, 135], "comparison": [131, 132, 133, 135], "reform": [131, 132, 135], "fairness_result": [131, 132, 135], "deepcopi": [131, 132, 135], "fairness_metr": [131, 132, 135], "group_siz": [131, 132, 135], "46": [131, 132, 133, 135], "fairness_plot": [131, 132, 135], "metrics_comparison_scatt": [131, 132, 135], "leverag": 131, "get_metrics_trend": 131, "gather": 131, "merg": [131, 132, 135], "recent": 131, "wish": 131, "metrics_trend": 131, "purpos": 131, "three": 131, "dummi": 131, "demonstr": [131, 137], "trend": 131, "audienc": [131, 132, 135], "organ": [131, 132, 135], "store": [131, 132, 135], "regulatory_requir": [131, 132, 135], "47": [131, 133, 135], "todai": [131, 132, 135], "releas": [131, 132, 135], "team": [131, 132, 135], "vectorinstitut": [131, 132, 135], "email": [131, 132, 133, 135], "ai": [131, 132, 135], "linear_model": 131, "e501": [131, 132, 135], "next": [131, 132, 135], "use_cas": [131, 132, 135], "These": [131, 132, 135], "could": [131, 132, 135], "downstream": [131, 132, 135], "fairness_assess": [131, 132, 135], "well": [131, 132, 133, 135], "taken": [131, 132, 135], "ethical_consider": [131, 132, 135], "clinician": [131, 132, 135], "engin": [131, 132, 135], "condit": 131, "improv": [131, 132, 135], "bias": [131, 132, 133, 135], "lead": [131, 132, 135], "wors": [131, 132, 135], "retrain": [131, 132, 135], "below": [131, 132, 135], "By": [131, 132, 135], "folder": [131, 132, 135], "09": [131, 132, 133, 135], "_model_card": [131, 132, 135], "report_path": [131, 132, 133, 135], "heart_failure_report_period": 131, "quantitative_analysi": [131, 132, 135], "random": [131, 132, 134, 135], "rmtree": [131, 132, 135], "view": [131, 132, 133, 135, 137], "die": 132, "admiss": 132, "cycqueri": [132, 135], "op": [132, 135], "qo": [132, 135], "graph_object": [132, 135], "mimicivqueri": 132, "aggreg": 132, "restrict_timestamp": 132, "clean": 132, "normalize_nam": 132, "add_years_approxim": 132, "deathtim": 132, "lab": [132, 133], "event": 132, "querier": [132, 135], "dbm": [132, 135], "postgresql": [132, 135], "port": [132, 135], "5432": [132, 135], "host": [132, 135], "localhost": [132, 135], "postgr": [132, 135], "password": [132, 135], "pwd": [132, 135], "def": [132, 133, 135], "get_encount": [132, 135], "mimiciv_hosp": 132, "drop_op": 132, "insur": 132, "languag": 132, "marital_statu": 132, "edregtim": 132, "edouttim": 132, "patient_encount": [132, 135], "subject_id": 132, "admittim": 132, "dt": 132, "anchor_year": 132, "anchor_ag": 132, "col": 132, "dischtim": 132, "anchor_year_differ": 132, "hadm_id": 132, "admission_loc": 132, "hospital_expire_flag": 132, "compute_mortality_outcom": 132, "death": 132, "invalid": 132, "isna": 132, "shorter": 132, "di": 132, "mortality_outcom": 132, "get_labev": 132, "labev": 132, "index_col": 132, "batch_mod": 132, "process_labev": 132, "revers": 132, "deidentifi": 132, "charttim": 132, "categori": [132, 135], "start_timestamp": 132, "set_index": 132, "renam": [132, 135], "mean_aggreg": 132, "aggfunc": [132, 135], "valuenum": 132, "window_dur": 132, "timestamp_col": 132, "time_bi": 132, "agg_bi": 132, "means_df": 132, "batch_num": 132, "labevents_batch": 132, "enumer": [132, 133], "aggregate_valu": 132, "window_start_tim": 132, "pivot": 132, "add_prefix": [132, 135], "lab_": 132, "concat": 132, "break": 132, "run_queri": [132, 135], "cohort": [132, 135], "453": 132, "orm": [132, 135], "readi": [132, 135], "07": 132, "192": 132, "successfulli": [132, 135], "finish": [132, 135], "execut": [132, 135], "665388": 132, "105518": 132, "5925": 132, "731": 132, "732": 132, "676140": 132, "null_count": [132, 135], "isnul": [132, 135], "bar": [132, 133, 135], "height": [132, 133], "600": [132, 133], "respect": [132, 135], "larger": [132, 135], "thresh_nan": [132, 135], "dropna": [132, 135], "thresh": [132, 135], "heavili": 132, "unbalanc": 132, "55": [132, 133, 135], "36758893280632": 132, "tolist": 132, "lab_urea": 132, "nitrogen": [132, 135], "lab_glucos": 132, "lab_i": 132, "lab_chlorid": 132, "lab_phosph": 132, "lab_h": 132, "lab_rdw": 132, "sd": 132, "lab_l": 132, "lab_bilirubin": 132, "lab_mchc": 132, "lab_whit": 132, "blood": [132, 135], "lab_magnesium": 132, "lab_ptt": 132, "lab_mch": 132, "lab_alkalin": 132, "phosphatas": [132, 135], "lab_pt": 132, "lab_calcium": 132, "lab_alanin": 132, "aminotransferas": [132, 135], "alt": 132, "lab_aspar": 132, "ast": 132, "lab_sodium": 132, "lab_inr": 132, "pt": 132, "lab_creatinin": 132, "lab_ph": 132, "lab_hemoglobin": 132, "lab_mcv": 132, "lab_potassium": 132, "lab_platelet": 132, "lab_hematocrit": 132, "lab_bicarbon": 132, "lab_r": 132, "lab_anion": 132, "gap": 132, "14261": 132, "747939": 132, "xgboost": [132, 135], "xgbclassif": [132, 135], "xgb_classifi": [132, 135], "mortality_task": 132, "n_estim": [132, 135], "250": [132, 135], "500": [132, 135], "max_depth": [132, 135], "reg_lambda": [132, 135], "colsample_bytre": [132, 135], "gamma": [132, 135], "237": 132, "238": 132, "239": 132, "240": 132, "xgbclassifi": [132, 135], "base_scor": [132, 135], "booster": [132, 135], "callback": [132, 135], "colsample_bylevel": [132, 135], "colsample_bynod": [132, 135], "early_stopping_round": [132, 135], "enable_categor": [132, 135], "eval_metr": [132, 135], "logloss": [132, 135], "feature_typ": [132, 135], "gpu_id": [132, 135], "grow_polici": [132, 135], "importance_typ": [132, 135], "interaction_constraint": [132, 135], "max_bin": [132, 135], "max_cat_threshold": [132, 135], "max_cat_to_onehot": [132, 135], "max_delta_step": [132, 135], "max_leav": [132, 135], "min_child_weight": [132, 135], "miss": [132, 135], "monotone_constraint": [132, 135], "num_parallel_tre": [132, 135], "predictor": [132, 135], "xgbclassifierxgbclassifi": [132, 135], "logist": [132, 135], "use_label_encod": [132, 135], "reg_alpha": [132, 135], "sampling_method": [132, 135], "scale_pos_weight": [132, 135], "subsampl": [132, 135], "tree_method": [132, 135], "validate_paramet": [132, 135], "2853": 132, "3963": 132, "81": [132, 133], "80": [132, 133, 135], "3970": 132, "86": [132, 133], "3934": 132, "399757": 132, "78": 132, "8630": 132, "8813": 132, "8617": 132, "8592": 132, "8958": 132, "73": [132, 133, 135], "amp": [132, 133, 135], "8744": 132, "8095": 132, "04": 132, "8558": 132, "8677": 132, "8497": 132, "8526": 132, "9938556067588326": 132, "7482612055641422": 132, "9868184541641701": 132, "8595380029806259": 132, "9755571531272466": 132, "8030148684381637": 132, "9883720930232558": 132, "8488703439853451": 132, "982124079915878": 132, "8262060712936137": 132, "python_api": [132, 135], "mortality_report_period": 132, "torchxrayvis": [133, 134], "functool": 133, "torchvis": [133, 134], "densenet": [133, 134], "loader": [133, 134], "load_nihcxr": [133, 134], "lambdad": [133, 134], "resiz": [133, 134], "apply_transform": 133, "generate_nihcxr_report": 133, "563220": 133, "63": [133, 135], "237247": 133, "400": 133, "1908": 133, "43377": 133, "76": [133, 134], "43149": 133, "45079": 133, "44577": 133, "65": [133, 134], "45342": 133, "43014": 133, "46049": 133, "53": 133, "58": 133, "562163": 133, "79": 133, "241983": 133, "396": 133, "1874": 133, "40118": 133, "34830": 133, "29268": 133, "24633": 133, "24704": 133, "67": 133, "26230": 133, "23274": 133, "563902": 133, "241593": 133, "383": 133, "1791": 133, "43233": 133, "43037": 133, "52": [133, 135], "45409": 133, "84": 133, "24656": 133, "24065": 133, "83": 133, "26096": 133, "22830": 133, "553703": 133, "238910": 133, "411": 133, "1892": 133, "96": [133, 134, 135], "44015": 133, "42956": 133, "46080": 133, "45419": 133, "69": 133, "45912": 133, "45787": 133, "47511": 133, "clinical_dataset": [133, 134], "nih_d": [133, 134], "spatial_s": [133, 134], "224": [133, 134], "allow_missing_kei": [133, 134], "func": [133, 134], "1024": [133, 134], "newaxi": [133, 134], "densenet121": [133, 134], "res224": [133, 134], "No": 133, "adjust": 133, "157125": 133, "661": 133, "1705": 133, "int64": 133, "originalimag": 133, "width": [133, 135], "originalimagepixelspac": 133, "unnam": 133, "atelectasi": 133, "float32": 133, "cardiomegali": 133, "consolid": 133, "edema": 133, "effus": 133, "emphysema": 133, "fibrosi": 133, "hernia": 133, "infiltr": 133, "mass": [133, 135], "nodul": 133, "pleural_thicken": 133, "pneumonia": 133, "pneumothorax": 133, "__index_level_0__": 133, "multilabelpositivepredictivevalu": 133, "registry_kei": 133, "positive_predictive_valu": 133, "super": 133, "overrid": 133, "_final_st": 133, "multilabelnegativepredictivevalu": 133, "negative_predictive_valu": 133, "ppv": 133, "npv": 133, "nih_eval_results_gend": 133, "45324": 133, "92": 133, "45879": 133, "47059": 133, "nih_eval_results_ag": 133, "43515": 133, "47717": 133, "51": 133, "47175": 133, "93": [133, 135], "46420": 133, "45975": 133, "44598": 133, "40254": 133, "44062": 133, "46133": 133, "46033": 133, "male": [133, 134], "1200": 133, "showlegend": 133, "slice_": 133, "itr": 133, "among": 133, "112": [133, 137], "120": [133, 137], "frontal": [133, 137], "805": [133, 137], "fourteen": 133, "mine": 133, "radiolog": 133, "pleural": 133, "thicken": 133, "remain": 133, "arxiv": 133, "ab": 133, "2111": 133, "00595": 133, "inproceed": 133, "cohen2022xrv": 133, "cohen": 133, "joseph": 133, "paul": 133, "viviano": 133, "bertin": 133, "morrison": 133, "torabian": 133, "parsa": 133, "guarrera": 133, "matteo": 133, "lungren": 133, "matthew": 133, "chaudhari": 133, "akshai": 133, "brook": 133, "rupert": 133, "hashir": 133, "mohammad": 133, "bertrand": 133, "hadrien": 133, "booktitl": 133, "deep": 133, "mlmed": 133, "arxivid": 133, "cohen2020limit": 133, "cross": 133, "domain": 133, "autom": [133, 135], "2002": 133, "02497": 133, "medicin": 133, "josephpcohen": 133, "radiologist": 133, "scientist": 133, "inabl": 133, "addition": 133, "poor": 133, "qualiti": 133, "artifact": 133, "geograph": 133, "region": 133, "ethic": 133, "ensur": 133, "divers": 133, "regularli": 133, "human": 133, "expertis": 133, "address": 133, "rare": 133, "nihcxr_report_period": 133, "torch": 134, "detector": 134, "reductor": 134, "tstester": 134, "plot_drift_experi": 134, "plot_drift_timeseri": 134, "manual_se": 134, "_c": 134, "0x7f709930af50": 134, "shifter": 134, "source_d": 134, "target_d": 134, "25596": 134, "57031": 134, "62": 134, "dr_method": 134, "bbse": 134, "soft": 134, "txrv": 134, "ae": 134, "sensitivity_test": 134, "tester": 134, "tester_method": 134, "source_sample_s": 134, "target_sample_s": 134, "num_run": 134, "detect_shift": 134, "chexpert": 134, "chex": 134, "padchest": 134, "pc": 134, "source_slic": 134, "target_slic": 134, "47615": 134, "47725": 134, "56": 134, "47121": 134, "46909": 134, "44979": 134, "47956": 134, "46261": 134, "46213": 134, "rolling_window_drift": 134, "timestamp_column": 134, "window_s": 134, "4w": 134, "longer": 135, "v3": 135, "instruct": 135, "etl": 135, "datasetqueri": 135, "num_dai": 135, "synthea_demo": 135, "nativ": 135, "sequenti": 135, "patient_id": 135, "birthdat": 135, "race": 135, "ethnic": 135, "isout": 135, "encounter_id": 135, "extracttimestampcompon": 135, "start_year": 135, "birthdate_year": 135, "addcolumn": 135, "new_col_label": 135, "stop": 135, "lo": 135, "conditiongreaterthan": 135, "conditionlessthan": 135, "get_observ": 135, "conditionin": 135, "vital": 135, "conditionequ": 135, "groupby_op": 135, "groupbyaggreg": 135, "n_ob": 135, "observations_count": 135, "observations_stat": 135, "pivot_t": 135, "max": 135, "obs_": 135, "get_med": 135, "n_med": 135, "get_procedur": 135, "procedur": [135, 137], "n_procedur": 135, "cohort_queri": 135, "to_merg": 135, "extend": 135, "append": 135, "to_merge_df": 135, "665": 135, "616": 135, "617": 135, "687719": 135, "410": 135, "412": 135, "793909": 135, "652": 135, "653": 135, "393491": 135, "157": 135, "499417": 135, "246": 135, "248": 135, "089593": 135, "length_of_stai": 135, "length_of_stay_count": 135, "length_of_stay_kei": 135, "5573997233748271": 135, "obs_alanin": 135, "enzymat": 135, "volum": 135, "serum": 135, "plasma": 135, "obs_albumin": 135, "obs_alkalin": 135, "obs_aspart": 135, "obs_bilirubin": 135, "obs_bodi": 135, "obs_calcium": 135, "obs_carbon": 135, "dioxid": 135, "mole": 135, "obs_chlorid": 135, "obs_creatinin": 135, "obs_diastol": 135, "pressur": 135, "obs_erythrocyt": 135, "obs_ferritin": 135, "obs_glomerular": 135, "filtrat": 135, "sq": 135, "obs_glucos": 135, "obs_hematocrit": 135, "obs_hemoglobin": 135, "obs_leukocyt": 135, "obs_mch": 135, "entit": 135, "obs_mchc": 135, "obs_mcv": 135, "obs_oxygen": 135, "satur": 135, "arteri": 135, "obs_platelet": 135, "obs_potassium": 135, "obs_protein": 135, "obs_sodium": 135, "obs_systol": 135, "obs_troponin": 135, "cardiac": 135, "obs_urea": 135, "1126": 135, "148398": 135, "los_task": 135, "310": 135, "311": 135, "312": 135, "313": 135, "4456": 135, "4408": 135, "3862": 135, "63550": 135, "8538": 135, "8818": 135, "8935": 135, "91": 135, "8940": 135, "9323": 135, "8732": 135, "82": 135, "8855": 135, "8465": 135, "8745": 135, "8716": 135, "8618": 135, "88": 135, "8823529411764706": 135, "8955223880597015": 135, "9622260668973472": 135, "8571428571428571": 135, "851063829787234": 135, "9032258064516129": 135, "9375": 135, "9146341463414634": 135, "9259259259259259": 135, "9670441347270615": 135, "9117647058823529": 135, "9047619047619048": 135, "926829268292683": 135, "981074481074481": 135, "9070796460176991": 135, "9428571428571428": 135, "9103448275862069": 135, "9263157894736842": 135, "9721583652618137": 135, "confusion_matrix": 135, "conf_plot": 135, "plot_confusion_matrix": 135, "length_of_stay_report_period": 135, "goal": 137, "ehr": 137, "icu": 137}, "objects": {"cyclops": [[125, 0, 0, "-", "data"], [126, 0, 0, "-", "evaluate"], [127, 0, 0, "-", "monitor"], [128, 0, 0, "-", "report"], [129, 0, 0, "-", "tasks"]], "cyclops.data": [[125, 0, 0, "-", "features"], [6, 0, 0, "-", "slicer"]], "cyclops.data.features": [[4, 0, 0, "-", "medical_image"]], "cyclops.data.features.medical_image": [[5, 1, 1, "", "MedicalImage"]], "cyclops.data.features.medical_image.MedicalImage": [[5, 2, 1, "", "__call__"], [5, 2, 1, "", "cast_storage"], [5, 2, 1, "", "decode_example"], [5, 2, 1, "", "embed_storage"], [5, 2, 1, "", "encode_example"], [5, 2, 1, "", "flatten"]], "cyclops.data.slicer": [[7, 1, 1, "", "SliceSpec"], [8, 4, 1, "", "compound_filter"], [9, 4, 1, "", "filter_datetime"], [10, 4, 1, "", "filter_non_null"], [11, 4, 1, "", "filter_range"], [12, 4, 1, "", "filter_string_contains"], [13, 4, 1, "", "filter_value"], [14, 4, 1, "", "is_datetime"], [15, 4, 1, "", "overall"]], "cyclops.data.slicer.SliceSpec": [[7, 3, 1, "", "_registry"], [7, 2, 1, "", "add_slice_spec"], [7, 3, 1, "", "column_names"], [7, 2, 1, "", "get_slices"], [7, 3, 1, "", "include_overall"], [7, 2, 1, "", "slices"], [7, 3, 1, "", "spec_list"], [7, 3, 1, "", "validate"]], "cyclops.evaluate": [[16, 0, 0, "-", "evaluator"], [126, 0, 0, "-", "fairness"], [126, 0, 0, "-", "metrics"]], "cyclops.evaluate.evaluator": [[17, 4, 1, "", "evaluate"]], "cyclops.evaluate.fairness": [[18, 0, 0, "-", "config"], [20, 0, 0, "-", "evaluator"]], "cyclops.evaluate.fairness.config": [[19, 1, 1, "", "FairnessConfig"]], "cyclops.evaluate.fairness.evaluator": [[21, 4, 1, "", "evaluate_fairness"], [22, 4, 1, "", "warn_too_many_unique_values"]], "cyclops.evaluate.metrics": [[23, 0, 0, "-", "accuracy"], [28, 0, 0, "-", "auroc"], [33, 0, 0, "-", "f_beta"], [42, 0, 0, "-", "factory"], [126, 0, 0, "-", "functional"], [73, 0, 0, "-", "metric"], [77, 0, 0, "-", "precision_recall"], [86, 0, 0, "-", "precision_recall_curve"], [91, 0, 0, "-", "roc"], [96, 0, 0, "-", "sensitivity"], [101, 0, 0, "-", "specificity"], [106, 0, 0, "-", "stat_scores"]], "cyclops.evaluate.metrics.accuracy": [[24, 1, 1, "", "Accuracy"], [25, 1, 1, "", "BinaryAccuracy"], [26, 1, 1, "", "MulticlassAccuracy"], [27, 1, 1, "", "MultilabelAccuracy"]], "cyclops.evaluate.metrics.accuracy.Accuracy": [[24, 2, 1, "", "__add__"], [24, 2, 1, "", "__call__"], [24, 2, 1, "", "__init__"], [24, 2, 1, "", "__mul__"], [24, 2, 1, "", "add_state"], [24, 2, 1, "", "clone"], [24, 2, 1, "", "compute"], [24, 2, 1, "", "reset_state"], [24, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.accuracy.BinaryAccuracy": [[25, 2, 1, "", "__add__"], [25, 2, 1, "", "__call__"], [25, 2, 1, "", "__init__"], [25, 2, 1, "", "__mul__"], [25, 2, 1, "", "add_state"], [25, 2, 1, "", "clone"], [25, 2, 1, "", "compute"], [25, 2, 1, "", "reset_state"], [25, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy": [[26, 2, 1, "", "__add__"], [26, 2, 1, "", "__call__"], [26, 2, 1, "", "__init__"], [26, 2, 1, "", "__mul__"], [26, 2, 1, "", "add_state"], [26, 2, 1, "", "clone"], [26, 2, 1, "", "compute"], [26, 2, 1, "", "reset_state"], [26, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy": [[27, 2, 1, "", "__add__"], [27, 2, 1, "", "__call__"], [27, 2, 1, "", "__init__"], [27, 2, 1, "", "__mul__"], [27, 2, 1, "", "add_state"], [27, 2, 1, "", "clone"], [27, 2, 1, "", "compute"], [27, 2, 1, "", "reset_state"], [27, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.auroc": [[29, 1, 1, "", "AUROC"], [30, 1, 1, "", "BinaryAUROC"], [31, 1, 1, "", "MulticlassAUROC"], [32, 1, 1, "", "MultilabelAUROC"]], "cyclops.evaluate.metrics.auroc.AUROC": [[29, 2, 1, "", "__add__"], [29, 2, 1, "", "__call__"], [29, 2, 1, "", "__init__"], [29, 2, 1, "", "__mul__"], [29, 2, 1, "", "add_state"], [29, 2, 1, "", "clone"], [29, 2, 1, "", "compute"], [29, 2, 1, "", "reset_state"], [29, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.auroc.BinaryAUROC": [[30, 2, 1, "", "__add__"], [30, 2, 1, "", "__call__"], [30, 2, 1, "", "__init__"], [30, 2, 1, "", "__mul__"], [30, 2, 1, "", "add_state"], [30, 2, 1, "", "clone"], [30, 2, 1, "", "compute"], [30, 2, 1, "", "reset_state"], [30, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.auroc.MulticlassAUROC": [[31, 2, 1, "", "__add__"], [31, 2, 1, "", "__call__"], [31, 2, 1, "", "__init__"], [31, 2, 1, "", "__mul__"], [31, 2, 1, "", "add_state"], [31, 2, 1, "", "clone"], [31, 2, 1, "", "compute"], [31, 2, 1, "", "reset_state"], [31, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.auroc.MultilabelAUROC": [[32, 2, 1, "", "__add__"], [32, 2, 1, "", "__call__"], [32, 2, 1, "", "__init__"], [32, 2, 1, "", "__mul__"], [32, 2, 1, "", "add_state"], [32, 2, 1, "", "clone"], [32, 2, 1, "", "compute"], [32, 2, 1, "", "reset_state"], [32, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta": [[34, 1, 1, "", "BinaryF1Score"], [35, 1, 1, "", "BinaryFbetaScore"], [36, 1, 1, "", "F1Score"], [37, 1, 1, "", "FbetaScore"], [38, 1, 1, "", "MulticlassF1Score"], [39, 1, 1, "", "MulticlassFbetaScore"], [40, 1, 1, "", "MultilabelF1Score"], [41, 1, 1, "", "MultilabelFbetaScore"]], "cyclops.evaluate.metrics.f_beta.BinaryF1Score": [[34, 2, 1, "", "__add__"], [34, 2, 1, "", "__call__"], [34, 2, 1, "", "__init__"], [34, 2, 1, "", "__mul__"], [34, 2, 1, "", "add_state"], [34, 2, 1, "", "clone"], [34, 2, 1, "", "compute"], [34, 2, 1, "", "reset_state"], [34, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore": [[35, 2, 1, "", "__add__"], [35, 2, 1, "", "__call__"], [35, 2, 1, "", "__init__"], [35, 2, 1, "", "__mul__"], [35, 2, 1, "", "add_state"], [35, 2, 1, "", "clone"], [35, 2, 1, "", "compute"], [35, 2, 1, "", "reset_state"], [35, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.F1Score": [[36, 2, 1, "", "__add__"], [36, 2, 1, "", "__call__"], [36, 2, 1, "", "__init__"], [36, 2, 1, "", "__mul__"], [36, 2, 1, "", "add_state"], [36, 2, 1, "", "clone"], [36, 2, 1, "", "compute"], [36, 2, 1, "", "reset_state"], [36, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.FbetaScore": [[37, 2, 1, "", "__add__"], [37, 2, 1, "", "__call__"], [37, 2, 1, "", "__init__"], [37, 2, 1, "", "__mul__"], [37, 2, 1, "", "add_state"], [37, 2, 1, "", "clone"], [37, 2, 1, "", "compute"], [37, 2, 1, "", "reset_state"], [37, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.MulticlassF1Score": [[38, 2, 1, "", "__add__"], [38, 2, 1, "", "__call__"], [38, 2, 1, "", "__init__"], [38, 2, 1, "", "__mul__"], [38, 2, 1, "", "add_state"], [38, 2, 1, "", "clone"], [38, 2, 1, "", "compute"], [38, 2, 1, "", "reset_state"], [38, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore": [[39, 2, 1, "", "__add__"], [39, 2, 1, "", "__call__"], [39, 2, 1, "", "__init__"], [39, 2, 1, "", "__mul__"], [39, 2, 1, "", "add_state"], [39, 2, 1, "", "clone"], [39, 2, 1, "", "compute"], [39, 2, 1, "", "reset_state"], [39, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.MultilabelF1Score": [[40, 2, 1, "", "__add__"], [40, 2, 1, "", "__call__"], [40, 2, 1, "", "__init__"], [40, 2, 1, "", "__mul__"], [40, 2, 1, "", "add_state"], [40, 2, 1, "", "clone"], [40, 2, 1, "", "compute"], [40, 2, 1, "", "reset_state"], [40, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore": [[41, 2, 1, "", "__add__"], [41, 2, 1, "", "__call__"], [41, 2, 1, "", "__init__"], [41, 2, 1, "", "__mul__"], [41, 2, 1, "", "add_state"], [41, 2, 1, "", "clone"], [41, 2, 1, "", "compute"], [41, 2, 1, "", "reset_state"], [41, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.factory": [[43, 4, 1, "", "create_metric"]], "cyclops.evaluate.metrics.functional": [[44, 0, 0, "-", "accuracy"], [45, 0, 0, "-", "auroc"], [46, 0, 0, "-", "f_beta"], [55, 0, 0, "-", "precision_recall"], [64, 0, 0, "-", "precision_recall_curve"], [65, 0, 0, "-", "roc"], [70, 0, 0, "-", "sensitivity"], [71, 0, 0, "-", "specificity"], [72, 0, 0, "-", "stat_scores"]], "cyclops.evaluate.metrics.functional.f_beta": [[47, 4, 1, "", "binary_f1_score"], [48, 4, 1, "", "binary_fbeta_score"], [49, 4, 1, "", "f1_score"], [50, 4, 1, "", "fbeta_score"], [51, 4, 1, "", "multiclass_f1_score"], [52, 4, 1, "", "multiclass_fbeta_score"], [53, 4, 1, "", "multilabel_f1_score"], [54, 4, 1, "", "multilabel_fbeta_score"]], "cyclops.evaluate.metrics.functional.precision_recall": [[56, 4, 1, "", "binary_precision"], [57, 4, 1, "", "binary_recall"], [58, 4, 1, "", "multiclass_precision"], [59, 4, 1, "", "multiclass_recall"], [60, 4, 1, "", "multilabel_precision"], [61, 4, 1, "", "multilabel_recall"], [62, 4, 1, "", "precision"], [63, 4, 1, "", "recall"]], "cyclops.evaluate.metrics.functional.roc": [[66, 4, 1, "", "binary_roc_curve"], [67, 4, 1, "", "multiclass_roc_curve"], [68, 4, 1, "", "multilabel_roc_curve"], [69, 4, 1, "", "roc_curve"]], "cyclops.evaluate.metrics.metric": [[74, 1, 1, "", "Metric"], [75, 1, 1, "", "MetricCollection"], [76, 1, 1, "", "OperatorMetric"]], "cyclops.evaluate.metrics.metric.Metric": [[74, 2, 1, "", "__add__"], [74, 2, 1, "", "__call__"], [74, 2, 1, "", "__init__"], [74, 2, 1, "", "__mul__"], [74, 2, 1, "", "add_state"], [74, 2, 1, "", "clone"], [74, 2, 1, "", "compute"], [74, 5, 1, "", "name"], [74, 2, 1, "", "reset_state"], [74, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.metric.MetricCollection": [[75, 2, 1, "", "__call__"], [75, 2, 1, "", "__init__"], [75, 2, 1, "", "add_metrics"], [75, 2, 1, "", "clear"], [75, 2, 1, "", "clone"], [75, 2, 1, "", "compute"], [75, 2, 1, "", "get"], [75, 2, 1, "", "items"], [75, 2, 1, "", "keys"], [75, 2, 1, "", "pop"], [75, 2, 1, "", "popitem"], [75, 2, 1, "", "reset_state"], [75, 2, 1, "", "setdefault"], [75, 2, 1, "", "update"], [75, 2, 1, "", "update_state"], [75, 2, 1, "", "values"]], "cyclops.evaluate.metrics.metric.OperatorMetric": [[76, 2, 1, "", "__add__"], [76, 2, 1, "", "__call__"], [76, 2, 1, "", "__init__"], [76, 2, 1, "", "__mul__"], [76, 2, 1, "", "add_state"], [76, 2, 1, "", "clone"], [76, 2, 1, "", "compute"], [76, 2, 1, "", "reset_state"], [76, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall": [[78, 1, 1, "", "BinaryPrecision"], [79, 1, 1, "", "BinaryRecall"], [80, 1, 1, "", "MulticlassPrecision"], [81, 1, 1, "", "MulticlassRecall"], [82, 1, 1, "", "MultilabelPrecision"], [83, 1, 1, "", "MultilabelRecall"], [84, 1, 1, "", "Precision"], [85, 1, 1, "", "Recall"]], "cyclops.evaluate.metrics.precision_recall.BinaryPrecision": [[78, 2, 1, "", "__add__"], [78, 2, 1, "", "__call__"], [78, 2, 1, "", "__init__"], [78, 2, 1, "", "__mul__"], [78, 2, 1, "", "add_state"], [78, 2, 1, "", "clone"], [78, 2, 1, "", "compute"], [78, 2, 1, "", "reset_state"], [78, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.BinaryRecall": [[79, 2, 1, "", "__add__"], [79, 2, 1, "", "__call__"], [79, 2, 1, "", "__init__"], [79, 2, 1, "", "__mul__"], [79, 2, 1, "", "add_state"], [79, 2, 1, "", "clone"], [79, 2, 1, "", "compute"], [79, 2, 1, "", "reset_state"], [79, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision": [[80, 2, 1, "", "__add__"], [80, 2, 1, "", "__call__"], [80, 2, 1, "", "__init__"], [80, 2, 1, "", "__mul__"], [80, 2, 1, "", "add_state"], [80, 2, 1, "", "clone"], [80, 2, 1, "", "compute"], [80, 2, 1, "", "reset_state"], [80, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.MulticlassRecall": [[81, 2, 1, "", "__add__"], [81, 2, 1, "", "__call__"], [81, 2, 1, "", "__init__"], [81, 2, 1, "", "__mul__"], [81, 2, 1, "", "add_state"], [81, 2, 1, "", "clone"], [81, 2, 1, "", "compute"], [81, 2, 1, "", "reset_state"], [81, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision": [[82, 2, 1, "", "__add__"], [82, 2, 1, "", "__call__"], [82, 2, 1, "", "__init__"], [82, 2, 1, "", "__mul__"], [82, 2, 1, "", "add_state"], [82, 2, 1, "", "clone"], [82, 2, 1, "", "compute"], [82, 2, 1, "", "reset_state"], [82, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.MultilabelRecall": [[83, 2, 1, "", "__add__"], [83, 2, 1, "", "__call__"], [83, 2, 1, "", "__init__"], [83, 2, 1, "", "__mul__"], [83, 2, 1, "", "add_state"], [83, 2, 1, "", "clone"], [83, 2, 1, "", "compute"], [83, 2, 1, "", "reset_state"], [83, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.Precision": [[84, 2, 1, "", "__add__"], [84, 2, 1, "", "__call__"], [84, 2, 1, "", "__init__"], [84, 2, 1, "", "__mul__"], [84, 2, 1, "", "add_state"], [84, 2, 1, "", "clone"], [84, 2, 1, "", "compute"], [84, 2, 1, "", "reset_state"], [84, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.Recall": [[85, 2, 1, "", "__add__"], [85, 2, 1, "", "__call__"], [85, 2, 1, "", "__init__"], [85, 2, 1, "", "__mul__"], [85, 2, 1, "", "add_state"], [85, 2, 1, "", "clone"], [85, 2, 1, "", "compute"], [85, 2, 1, "", "reset_state"], [85, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall_curve": [[87, 1, 1, "", "BinaryPrecisionRecallCurve"], [88, 1, 1, "", "MulticlassPrecisionRecallCurve"], [89, 1, 1, "", "MultilabelPrecisionRecallCurve"], [90, 1, 1, "", "PrecisionRecallCurve"]], "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve": [[87, 2, 1, "", "__add__"], [87, 2, 1, "", "__call__"], [87, 2, 1, "", "__init__"], [87, 2, 1, "", "__mul__"], [87, 2, 1, "", "add_state"], [87, 2, 1, "", "clone"], [87, 2, 1, "", "compute"], [87, 2, 1, "", "reset_state"], [87, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve": [[88, 2, 1, "", "__add__"], [88, 2, 1, "", "__call__"], [88, 2, 1, "", "__init__"], [88, 2, 1, "", "__mul__"], [88, 2, 1, "", "add_state"], [88, 2, 1, "", "clone"], [88, 2, 1, "", "compute"], [88, 2, 1, "", "reset_state"], [88, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve": [[89, 2, 1, "", "__add__"], [89, 2, 1, "", "__call__"], [89, 2, 1, "", "__init__"], [89, 2, 1, "", "__mul__"], [89, 2, 1, "", "add_state"], [89, 2, 1, "", "clone"], [89, 2, 1, "", "compute"], [89, 2, 1, "", "reset_state"], [89, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve": [[90, 2, 1, "", "__add__"], [90, 2, 1, "", "__call__"], [90, 2, 1, "", "__init__"], [90, 2, 1, "", "__mul__"], [90, 2, 1, "", "add_state"], [90, 2, 1, "", "clone"], [90, 2, 1, "", "compute"], [90, 2, 1, "", "reset_state"], [90, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.roc": [[92, 1, 1, "", "BinaryROCCurve"], [93, 1, 1, "", "MulticlassROCCurve"], [94, 1, 1, "", "MultilabelROCCurve"], [95, 1, 1, "", "ROCCurve"]], "cyclops.evaluate.metrics.roc.BinaryROCCurve": [[92, 2, 1, "", "__add__"], [92, 2, 1, "", "__call__"], [92, 2, 1, "", "__init__"], [92, 2, 1, "", "__mul__"], [92, 2, 1, "", "add_state"], [92, 2, 1, "", "clone"], [92, 2, 1, "", "compute"], [92, 2, 1, "", "reset_state"], [92, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.roc.MulticlassROCCurve": [[93, 2, 1, "", "__add__"], [93, 2, 1, "", "__call__"], [93, 2, 1, "", "__init__"], [93, 2, 1, "", "__mul__"], [93, 2, 1, "", "add_state"], [93, 2, 1, "", "clone"], [93, 2, 1, "", "compute"], [93, 2, 1, "", "reset_state"], [93, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.roc.MultilabelROCCurve": [[94, 2, 1, "", "__add__"], [94, 2, 1, "", "__call__"], [94, 2, 1, "", "__init__"], [94, 2, 1, "", "__mul__"], [94, 2, 1, "", "add_state"], [94, 2, 1, "", "clone"], [94, 2, 1, "", "compute"], [94, 2, 1, "", "reset_state"], [94, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.roc.ROCCurve": [[95, 2, 1, "", "__add__"], [95, 2, 1, "", "__call__"], [95, 2, 1, "", "__init__"], [95, 2, 1, "", "__mul__"], [95, 2, 1, "", "add_state"], [95, 2, 1, "", "clone"], [95, 2, 1, "", "compute"], [95, 2, 1, "", "reset_state"], [95, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.sensitivity": [[97, 1, 1, "", "BinarySensitivity"], [98, 1, 1, "", "MulticlassSensitivity"], [99, 1, 1, "", "MultilabelSensitivity"], [100, 1, 1, "", "Sensitivity"]], "cyclops.evaluate.metrics.sensitivity.BinarySensitivity": [[97, 2, 1, "", "__add__"], [97, 2, 1, "", "__call__"], [97, 2, 1, "", "__init__"], [97, 2, 1, "", "__mul__"], [97, 2, 1, "", "add_state"], [97, 2, 1, "", "clone"], [97, 2, 1, "", "compute"], [97, 2, 1, "", "reset_state"], [97, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity": [[98, 2, 1, "", "__add__"], [98, 2, 1, "", "__call__"], [98, 2, 1, "", "__init__"], [98, 2, 1, "", "__mul__"], [98, 2, 1, "", "add_state"], [98, 2, 1, "", "clone"], [98, 2, 1, "", "compute"], [98, 2, 1, "", "reset_state"], [98, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity": [[99, 2, 1, "", "__add__"], [99, 2, 1, "", "__call__"], [99, 2, 1, "", "__init__"], [99, 2, 1, "", "__mul__"], [99, 2, 1, "", "add_state"], [99, 2, 1, "", "clone"], [99, 2, 1, "", "compute"], [99, 2, 1, "", "reset_state"], [99, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.sensitivity.Sensitivity": [[100, 2, 1, "", "__add__"], [100, 2, 1, "", "__call__"], [100, 2, 1, "", "__init__"], [100, 2, 1, "", "__mul__"], [100, 2, 1, "", "add_state"], [100, 2, 1, "", "clone"], [100, 2, 1, "", "compute"], [100, 2, 1, "", "reset_state"], [100, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.specificity": [[102, 1, 1, "", "BinarySpecificity"], [103, 1, 1, "", "MulticlassSpecificity"], [104, 1, 1, "", "MultilabelSpecificity"], [105, 1, 1, "", "Specificity"]], "cyclops.evaluate.metrics.specificity.BinarySpecificity": [[102, 2, 1, "", "__add__"], [102, 2, 1, "", "__call__"], [102, 2, 1, "", "__init__"], [102, 2, 1, "", "__mul__"], [102, 2, 1, "", "add_state"], [102, 2, 1, "", "clone"], [102, 2, 1, "", "compute"], [102, 2, 1, "", "reset_state"], [102, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.specificity.MulticlassSpecificity": [[103, 2, 1, "", "__add__"], [103, 2, 1, "", "__call__"], [103, 2, 1, "", "__init__"], [103, 2, 1, "", "__mul__"], [103, 2, 1, "", "add_state"], [103, 2, 1, "", "clone"], [103, 2, 1, "", "compute"], [103, 2, 1, "", "reset_state"], [103, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.specificity.MultilabelSpecificity": [[104, 2, 1, "", "__add__"], [104, 2, 1, "", "__call__"], [104, 2, 1, "", "__init__"], [104, 2, 1, "", "__mul__"], [104, 2, 1, "", "add_state"], [104, 2, 1, "", "clone"], [104, 2, 1, "", "compute"], [104, 2, 1, "", "reset_state"], [104, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.specificity.Specificity": [[105, 2, 1, "", "__add__"], [105, 2, 1, "", "__call__"], [105, 2, 1, "", "__init__"], [105, 2, 1, "", "__mul__"], [105, 2, 1, "", "add_state"], [105, 2, 1, "", "clone"], [105, 2, 1, "", "compute"], [105, 2, 1, "", "reset_state"], [105, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.stat_scores": [[107, 1, 1, "", "BinaryStatScores"], [108, 1, 1, "", "MulticlassStatScores"], [109, 1, 1, "", "MultilabelStatScores"], [110, 1, 1, "", "StatScores"]], "cyclops.evaluate.metrics.stat_scores.BinaryStatScores": [[107, 2, 1, "", "__add__"], [107, 2, 1, "", "__call__"], [107, 2, 1, "", "__init__"], [107, 2, 1, "", "__mul__"], [107, 2, 1, "", "add_state"], [107, 2, 1, "", "clone"], [107, 2, 1, "", "compute"], [107, 2, 1, "", "reset_state"], [107, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores": [[108, 2, 1, "", "__add__"], [108, 2, 1, "", "__call__"], [108, 2, 1, "", "__init__"], [108, 2, 1, "", "__mul__"], [108, 2, 1, "", "add_state"], [108, 2, 1, "", "clone"], [108, 2, 1, "", "compute"], [108, 2, 1, "", "reset_state"], [108, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores": [[109, 2, 1, "", "__add__"], [109, 2, 1, "", "__call__"], [109, 2, 1, "", "__init__"], [109, 2, 1, "", "__mul__"], [109, 2, 1, "", "add_state"], [109, 2, 1, "", "clone"], [109, 2, 1, "", "compute"], [109, 2, 1, "", "reset_state"], [109, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.stat_scores.StatScores": [[110, 2, 1, "", "__add__"], [110, 2, 1, "", "__call__"], [110, 2, 1, "", "__init__"], [110, 2, 1, "", "__mul__"], [110, 2, 1, "", "add_state"], [110, 2, 1, "", "clone"], [110, 2, 1, "", "compute"], [110, 5, 1, "", "name"], [110, 2, 1, "", "reset_state"], [110, 2, 1, "", "update_state"]], "cyclops.monitor": [[111, 0, 0, "-", "clinical_applicator"], [113, 0, 0, "-", "synthetic_applicator"]], "cyclops.monitor.clinical_applicator": [[112, 1, 1, "", "ClinicalShiftApplicator"]], "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator": [[112, 2, 1, "", "age"], [112, 2, 1, "", "apply_shift"], [112, 2, 1, "", "custom"], [112, 2, 1, "", "hospital_type"], [112, 2, 1, "", "month"], [112, 2, 1, "", "sex"], [112, 2, 1, "", "time"]], "cyclops.monitor.synthetic_applicator": [[114, 1, 1, "", "SyntheticShiftApplicator"], [115, 4, 1, "", "binary_noise_shift"], [116, 4, 1, "", "feature_association_shift"], [117, 4, 1, "", "feature_swap_shift"], [118, 4, 1, "", "gaussian_noise_shift"], [119, 4, 1, "", "knockout_shift"]], "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator": [[114, 2, 1, "", "apply_shift"]], "cyclops.report": [[120, 0, 0, "-", "report"]], "cyclops.report.report": [[121, 1, 1, "", "ModelCardReport"]], "cyclops.report.report.ModelCardReport": [[121, 2, 1, "", "export"], [121, 2, 1, "", "from_json_file"], [121, 2, 1, "", "log_citation"], [121, 2, 1, "", "log_dataset"], [121, 2, 1, "", "log_descriptor"], [121, 2, 1, "", "log_fairness_assessment"], [121, 2, 1, "", "log_from_dict"], [121, 2, 1, "", "log_image"], [121, 2, 1, "", "log_license"], [121, 2, 1, "", "log_model_parameters"], [121, 2, 1, "", "log_owner"], [121, 2, 1, "", "log_performance_metrics"], [121, 2, 1, "", "log_plotly_figure"], [121, 2, 1, "", "log_quantitative_analysis"], [121, 2, 1, "", "log_reference"], [121, 2, 1, "", "log_regulation"], [121, 2, 1, "", "log_risk"], [121, 2, 1, "", "log_use_case"], [121, 2, 1, "", "log_user"], [121, 2, 1, "", "log_version"]], "cyclops.tasks": [[122, 0, 0, "-", "classification"]], "cyclops.tasks.classification": [[123, 1, 1, "", "BinaryTabularClassificationTask"], [124, 1, 1, "", "MultilabelImageClassificationTask"]], "cyclops.tasks.classification.BinaryTabularClassificationTask": [[123, 2, 1, "", "__init__"], [123, 2, 1, "", "add_model"], [123, 5, 1, "", "data_type"], [123, 2, 1, "", "evaluate"], [123, 2, 1, "", "get_model"], [123, 2, 1, "", "list_models"], [123, 2, 1, "", "list_models_params"], [123, 2, 1, "", "load_model"], [123, 5, 1, "", "models_count"], [123, 2, 1, "", "predict"], [123, 2, 1, "", "save_model"], [123, 5, 1, "", "task_type"], [123, 2, 1, "", "train"]], "cyclops.tasks.classification.MultilabelImageClassificationTask": [[124, 2, 1, "", "__init__"], [124, 2, 1, "", "add_model"], [124, 5, 1, "", "data_type"], [124, 2, 1, "", "evaluate"], [124, 2, 1, "", "get_model"], [124, 2, 1, "", "list_models"], [124, 2, 1, "", "list_models_params"], [124, 2, 1, "", "load_model"], [124, 5, 1, "", "models_count"], [124, 2, 1, "", "predict"], [124, 2, 1, "", "save_model"], [124, 5, 1, "", "task_type"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:function", "5": "py:property"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"]}, "titleterms": {"api": [0, 136], "refer": 0, "contribut": [1, 3], "cyclop": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129], "pre": 1, "commit": 1, "hook": 1, "code": 1, "guidelin": 1, "welcom": 2, "": 2, "document": [2, 3], "content": 2, "get": 3, "start": 3, "instal": 3, "us": [3, 134, 137], "pip": 3, "develop": 3, "poetri": 3, "notebook": 3, "citat": 3, "data": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 125, 131, 132, 135, 137], "featur": [4, 5, 125, 131, 132, 135], "medical_imag": [4, 5], "medicalimag": 5, "slicer": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "slicespec": 7, "compound_filt": 8, "filter_datetim": 9, "filter_non_nul": 10, "filter_rang": 11, "filter_string_contain": 12, "filter_valu": 13, "is_datetim": 14, "overal": 15, "evalu": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 126, 131, 132, 135], "fair": [18, 19, 20, 21, 22, 126], "config": [18, 19], "fairnessconfig": 19, "evaluate_fair": 21, "warn_too_many_unique_valu": 22, "metric": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 126, 133], "accuraci": [23, 24, 25, 26, 27, 44], "binaryaccuraci": 25, "multiclassaccuraci": 26, "multilabelaccuraci": 27, "auroc": [28, 29, 30, 31, 32, 45, 133], "binaryauroc": 30, "multiclassauroc": 31, "multilabelauroc": 32, "f_beta": [33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 47, 48, 49, 50, 51, 52, 53, 54], "binaryf1scor": 34, "binaryfbetascor": 35, "f1score": 36, "fbetascor": 37, "multiclassf1scor": 38, "multiclassfbetascor": 39, "multilabelf1scor": 40, "multilabelfbetascor": 41, "factori": [42, 43], "create_metr": 43, "function": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 126], "binary_f1_scor": 47, "binary_fbeta_scor": 48, "f1_score": 49, "fbeta_scor": 50, "multiclass_f1_scor": 51, "multiclass_fbeta_scor": 52, "multilabel_f1_scor": 53, "multilabel_fbeta_scor": 54, "precision_recal": [55, 56, 57, 58, 59, 60, 61, 62, 63, 77, 78, 79, 80, 81, 82, 83, 84, 85], "binary_precis": 56, "binary_recal": 57, "multiclass_precis": 58, "multiclass_recal": 59, "multilabel_precis": 60, "multilabel_recal": 61, "precis": [62, 84], "recal": [63, 85], "precision_recall_curv": [64, 86, 87, 88, 89, 90], "roc": [65, 66, 67, 68, 69, 91, 92, 93, 94, 95], "binary_roc_curv": 66, "multiclass_roc_curv": 67, "multilabel_roc_curv": 68, "roc_curv": 69, "sensit": [70, 96, 97, 98, 99, 100, 134], "specif": [71, 101, 102, 103, 104, 105], "stat_scor": [72, 106, 107, 108, 109, 110], "metriccollect": 75, "operatormetr": 76, "binaryprecis": 78, "binaryrecal": 79, "multiclassprecis": 80, "multiclassrecal": 81, "multilabelprecis": 82, "multilabelrecal": 83, "binaryprecisionrecallcurv": 87, "multiclassprecisionrecallcurv": 88, "multilabelprecisionrecallcurv": 89, "precisionrecallcurv": 90, "binaryroccurv": 92, "multiclassroccurv": 93, "multilabelroccurv": 94, "roccurv": 95, "binarysensit": 97, "multiclasssensit": 98, "multilabelsensit": 99, "binaryspecif": 102, "multiclassspecif": 103, "multilabelspecif": 104, "binarystatscor": 107, "multiclassstatscor": 108, "multilabelstatscor": 109, "statscor": 110, "monitor": [111, 112, 113, 114, 115, 116, 117, 118, 119, 127, 136], "clinical_appl": [111, 112], "clinicalshiftappl": 112, "synthetic_appl": [113, 114, 115, 116, 117, 118, 119], "syntheticshiftappl": 114, "binary_noise_shift": 115, "feature_association_shift": 116, "feature_swap_shift": 117, "gaussian_noise_shift": 118, "knockout_shift": 119, "report": [120, 121, 128, 131, 132, 133, 135], "modelcardreport": 121, "task": [122, 123, 124, 129, 131, 132, 135], "classif": [122, 123, 124, 133, 137], "binarytabularclassificationtask": 123, "multilabelimageclassificationtask": 124, "tutori": [130, 134], "heart": [131, 137], "failur": [131, 137], "predict": [131, 132, 135, 137], "import": [131, 132, 133, 134, 135], "librari": [131, 132, 133, 134, 135], "constant": [131, 132, 135], "load": [131, 133, 134], "sex": [131, 133], "valu": 131, "ag": [131, 132, 133, 135], "distribut": [131, 132, 135], "outcom": [131, 132, 135], "identifi": [131, 132, 135], "type": [131, 132, 135], "creat": [131, 132, 135], "preprocessor": [131, 132, 135], "hug": [131, 132, 135], "face": [131, 132, 135], "dataset": [131, 132, 133, 134, 135], "model": [131, 132, 133, 134, 135], "creation": [131, 132, 133, 135], "train": [131, 132, 134, 135], "perform": [131, 133], "over": 131, "time": 131, "gener": [131, 132, 133, 134, 135], "mortal": [132, 137], "queri": [132, 135], "process": 132, "comput": [132, 135], "label": [132, 135], "inspect": [132, 135], "preprocess": [132, 135], "drop": [132, 135], "nan": [132, 135], "base": [132, 135], "nan_threshold": [132, 135], "gender": [132, 135], "chest": [133, 137], "x": [133, 137], "rai": [133, 137], "diseas": 133, "histor": 133, "initi": 133, "period": 133, "multilabel": 133, "pathologi": 133, "log": 133, "test": [133, 134], "w": 133, "threshold": 133, "popul": 133, "card": 133, "field": 133, "nihcxr": 134, "clinic": 134, "drift": 134, "experi": 134, "exampl": [134, 137], "1": 134, "sourc": 134, "target": 134, "2": 134, "3": 134, "dimension": 134, "reduct": 134, "techniqu": 134, "differ": 134, "4": 134, "shift": 134, "5": 134, "roll": 134, "window": 134, "synthet": 134, "timestamp": 134, "biweekli": 134, "prolong": [135, 137], "length": [135, 137], "stai": [135, 137], "case": 137, "tabular": 137, "kaggl": 137, "mimiciv": 137, "synthea": 137, "imag": 137, "nih": 137}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "nbsphinx": 4, "sphinx": 60}, "alltitles": {"API Reference": [[0, "api-reference"]], "Contributing to cyclops": [[1, "contributing-to-cyclops"]], "Pre-commit hooks": [[1, "pre-commit-hooks"]], "Coding guidelines": [[1, "coding-guidelines"]], "Welcome to cyclops\u2019s documentation!": [[2, "welcome-to-cyclops-s-documentation"]], "Contents:": [[2, null]], "\ud83d\udc23 Getting Started": [[3, "getting-started"]], "Installing cyclops using pip": [[3, "installing-cyclops-using-pip"]], "\ud83e\uddd1\ud83c\udfff\u200d\ud83d\udcbb Developing": [[3, "developing"]], "Using poetry": [[3, "using-poetry"]], "Contributing": [[3, "contributing"]], "\ud83d\udcda Documentation": [[3, "documentation"]], "\ud83d\udcd3 Notebooks": [[3, "notebooks"]], "\ud83c\udf93 Citation": [[3, "citation"]], "cyclops.data.features.medical_image": [[4, "module-cyclops.data.features.medical_image"]], "cyclops.data.features.medical_image.MedicalImage": [[5, "cyclops-data-features-medical-image-medicalimage"]], "cyclops.data.slicer": [[6, "module-cyclops.data.slicer"]], "cyclops.data.slicer.SliceSpec": [[7, "cyclops-data-slicer-slicespec"]], "cyclops.data.slicer.compound_filter": [[8, "cyclops-data-slicer-compound-filter"]], "cyclops.data.slicer.filter_datetime": [[9, "cyclops-data-slicer-filter-datetime"]], "cyclops.data.slicer.filter_non_null": [[10, "cyclops-data-slicer-filter-non-null"]], "cyclops.data.slicer.filter_range": [[11, "cyclops-data-slicer-filter-range"]], "cyclops.data.slicer.filter_string_contains": [[12, "cyclops-data-slicer-filter-string-contains"]], "cyclops.data.slicer.filter_value": [[13, "cyclops-data-slicer-filter-value"]], "cyclops.data.slicer.is_datetime": [[14, "cyclops-data-slicer-is-datetime"]], "cyclops.data.slicer.overall": [[15, "cyclops-data-slicer-overall"]], "cyclops.evaluate.evaluator": [[16, "module-cyclops.evaluate.evaluator"]], "cyclops.evaluate.evaluator.evaluate": [[17, "cyclops-evaluate-evaluator-evaluate"]], "cyclops.evaluate.fairness.config": [[18, "module-cyclops.evaluate.fairness.config"]], "cyclops.evaluate.fairness.config.FairnessConfig": [[19, "cyclops-evaluate-fairness-config-fairnessconfig"]], "cyclops.evaluate.fairness.evaluator": [[20, "module-cyclops.evaluate.fairness.evaluator"]], "cyclops.evaluate.fairness.evaluator.evaluate_fairness": [[21, "cyclops-evaluate-fairness-evaluator-evaluate-fairness"]], "cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values": [[22, "cyclops-evaluate-fairness-evaluator-warn-too-many-unique-values"]], "cyclops.evaluate.metrics.accuracy": [[23, "module-cyclops.evaluate.metrics.accuracy"]], "cyclops.evaluate.metrics.accuracy.Accuracy": [[24, "cyclops-evaluate-metrics-accuracy-accuracy"]], "cyclops.evaluate.metrics.accuracy.BinaryAccuracy": [[25, "cyclops-evaluate-metrics-accuracy-binaryaccuracy"]], "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy": [[26, "cyclops-evaluate-metrics-accuracy-multiclassaccuracy"]], "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy": [[27, "cyclops-evaluate-metrics-accuracy-multilabelaccuracy"]], "cyclops.evaluate.metrics.auroc": [[28, "module-cyclops.evaluate.metrics.auroc"]], "cyclops.evaluate.metrics.auroc.AUROC": [[29, "cyclops-evaluate-metrics-auroc-auroc"]], "cyclops.evaluate.metrics.auroc.BinaryAUROC": [[30, "cyclops-evaluate-metrics-auroc-binaryauroc"]], "cyclops.evaluate.metrics.auroc.MulticlassAUROC": [[31, "cyclops-evaluate-metrics-auroc-multiclassauroc"]], "cyclops.evaluate.metrics.auroc.MultilabelAUROC": [[32, "cyclops-evaluate-metrics-auroc-multilabelauroc"]], "cyclops.evaluate.metrics.f_beta": [[33, "module-cyclops.evaluate.metrics.f_beta"]], "cyclops.evaluate.metrics.f_beta.BinaryF1Score": [[34, "cyclops-evaluate-metrics-f-beta-binaryf1score"]], "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore": [[35, "cyclops-evaluate-metrics-f-beta-binaryfbetascore"]], "cyclops.evaluate.metrics.f_beta.F1Score": [[36, "cyclops-evaluate-metrics-f-beta-f1score"]], "cyclops.evaluate.metrics.f_beta.FbetaScore": [[37, "cyclops-evaluate-metrics-f-beta-fbetascore"]], "cyclops.evaluate.metrics.f_beta.MulticlassF1Score": [[38, "cyclops-evaluate-metrics-f-beta-multiclassf1score"]], "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore": [[39, "cyclops-evaluate-metrics-f-beta-multiclassfbetascore"]], "cyclops.evaluate.metrics.f_beta.MultilabelF1Score": [[40, "cyclops-evaluate-metrics-f-beta-multilabelf1score"]], "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore": [[41, "cyclops-evaluate-metrics-f-beta-multilabelfbetascore"]], "cyclops.evaluate.metrics.factory": [[42, "module-cyclops.evaluate.metrics.factory"]], "cyclops.evaluate.metrics.factory.create_metric": [[43, "cyclops-evaluate-metrics-factory-create-metric"]], "cyclops.evaluate.metrics.functional.accuracy": [[44, "module-cyclops.evaluate.metrics.functional.accuracy"]], "cyclops.evaluate.metrics.functional.auroc": [[45, "module-cyclops.evaluate.metrics.functional.auroc"]], "cyclops.evaluate.metrics.functional.f_beta": [[46, "module-cyclops.evaluate.metrics.functional.f_beta"]], "cyclops.evaluate.metrics.functional.f_beta.binary_f1_score": [[47, "cyclops-evaluate-metrics-functional-f-beta-binary-f1-score"]], "cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score": [[48, "cyclops-evaluate-metrics-functional-f-beta-binary-fbeta-score"]], "cyclops.evaluate.metrics.functional.f_beta.f1_score": [[49, "cyclops-evaluate-metrics-functional-f-beta-f1-score"]], "cyclops.evaluate.metrics.functional.f_beta.fbeta_score": [[50, "cyclops-evaluate-metrics-functional-f-beta-fbeta-score"]], "cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score": [[51, "cyclops-evaluate-metrics-functional-f-beta-multiclass-f1-score"]], "cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score": [[52, "cyclops-evaluate-metrics-functional-f-beta-multiclass-fbeta-score"]], "cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score": [[53, "cyclops-evaluate-metrics-functional-f-beta-multilabel-f1-score"]], "cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score": [[54, "cyclops-evaluate-metrics-functional-f-beta-multilabel-fbeta-score"]], "cyclops.evaluate.metrics.functional.precision_recall": [[55, "module-cyclops.evaluate.metrics.functional.precision_recall"]], "cyclops.evaluate.metrics.functional.precision_recall.binary_precision": [[56, "cyclops-evaluate-metrics-functional-precision-recall-binary-precision"]], "cyclops.evaluate.metrics.functional.precision_recall.binary_recall": [[57, "cyclops-evaluate-metrics-functional-precision-recall-binary-recall"]], "cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision": [[58, "cyclops-evaluate-metrics-functional-precision-recall-multiclass-precision"]], "cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall": [[59, "cyclops-evaluate-metrics-functional-precision-recall-multiclass-recall"]], "cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision": [[60, "cyclops-evaluate-metrics-functional-precision-recall-multilabel-precision"]], "cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall": [[61, "cyclops-evaluate-metrics-functional-precision-recall-multilabel-recall"]], "cyclops.evaluate.metrics.functional.precision_recall.precision": [[62, "cyclops-evaluate-metrics-functional-precision-recall-precision"]], "cyclops.evaluate.metrics.functional.precision_recall.recall": [[63, "cyclops-evaluate-metrics-functional-precision-recall-recall"]], "cyclops.evaluate.metrics.functional.precision_recall_curve": [[64, "module-cyclops.evaluate.metrics.functional.precision_recall_curve"]], "cyclops.evaluate.metrics.functional.roc": [[65, "module-cyclops.evaluate.metrics.functional.roc"]], "cyclops.evaluate.metrics.functional.roc.binary_roc_curve": [[66, "cyclops-evaluate-metrics-functional-roc-binary-roc-curve"]], "cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve": [[67, "cyclops-evaluate-metrics-functional-roc-multiclass-roc-curve"]], "cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve": [[68, "cyclops-evaluate-metrics-functional-roc-multilabel-roc-curve"]], "cyclops.evaluate.metrics.functional.roc.roc_curve": [[69, "cyclops-evaluate-metrics-functional-roc-roc-curve"]], "cyclops.evaluate.metrics.functional.sensitivity": [[70, "module-cyclops.evaluate.metrics.functional.sensitivity"]], "cyclops.evaluate.metrics.functional.specificity": [[71, "module-cyclops.evaluate.metrics.functional.specificity"]], "cyclops.evaluate.metrics.functional.stat_scores": [[72, "module-cyclops.evaluate.metrics.functional.stat_scores"]], "cyclops.evaluate.metrics.metric": [[73, "module-cyclops.evaluate.metrics.metric"]], "cyclops.evaluate.metrics.metric.Metric": [[74, "cyclops-evaluate-metrics-metric-metric"]], "cyclops.evaluate.metrics.metric.MetricCollection": [[75, "cyclops-evaluate-metrics-metric-metriccollection"]], "cyclops.evaluate.metrics.metric.OperatorMetric": [[76, "cyclops-evaluate-metrics-metric-operatormetric"]], "cyclops.evaluate.metrics.precision_recall": [[77, "module-cyclops.evaluate.metrics.precision_recall"]], "cyclops.evaluate.metrics.precision_recall.BinaryPrecision": [[78, "cyclops-evaluate-metrics-precision-recall-binaryprecision"]], "cyclops.evaluate.metrics.precision_recall.BinaryRecall": [[79, "cyclops-evaluate-metrics-precision-recall-binaryrecall"]], "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision": [[80, "cyclops-evaluate-metrics-precision-recall-multiclassprecision"]], "cyclops.evaluate.metrics.precision_recall.MulticlassRecall": [[81, "cyclops-evaluate-metrics-precision-recall-multiclassrecall"]], "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision": [[82, "cyclops-evaluate-metrics-precision-recall-multilabelprecision"]], "cyclops.evaluate.metrics.precision_recall.MultilabelRecall": [[83, "cyclops-evaluate-metrics-precision-recall-multilabelrecall"]], "cyclops.evaluate.metrics.precision_recall.Precision": [[84, "cyclops-evaluate-metrics-precision-recall-precision"]], "cyclops.evaluate.metrics.precision_recall.Recall": [[85, "cyclops-evaluate-metrics-precision-recall-recall"]], "cyclops.evaluate.metrics.precision_recall_curve": [[86, "module-cyclops.evaluate.metrics.precision_recall_curve"]], "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve": [[87, "cyclops-evaluate-metrics-precision-recall-curve-binaryprecisionrecallcurve"]], "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve": [[88, "cyclops-evaluate-metrics-precision-recall-curve-multiclassprecisionrecallcurve"]], "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve": [[89, "cyclops-evaluate-metrics-precision-recall-curve-multilabelprecisionrecallcurve"]], "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve": [[90, "cyclops-evaluate-metrics-precision-recall-curve-precisionrecallcurve"]], "cyclops.evaluate.metrics.roc": [[91, "module-cyclops.evaluate.metrics.roc"]], "cyclops.evaluate.metrics.roc.BinaryROCCurve": [[92, "cyclops-evaluate-metrics-roc-binaryroccurve"]], "cyclops.evaluate.metrics.roc.MulticlassROCCurve": [[93, "cyclops-evaluate-metrics-roc-multiclassroccurve"]], "cyclops.evaluate.metrics.roc.MultilabelROCCurve": [[94, "cyclops-evaluate-metrics-roc-multilabelroccurve"]], "cyclops.evaluate.metrics.roc.ROCCurve": [[95, "cyclops-evaluate-metrics-roc-roccurve"]], "cyclops.evaluate.metrics.sensitivity": [[96, "module-cyclops.evaluate.metrics.sensitivity"]], "cyclops.evaluate.metrics.sensitivity.BinarySensitivity": [[97, "cyclops-evaluate-metrics-sensitivity-binarysensitivity"]], "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity": [[98, "cyclops-evaluate-metrics-sensitivity-multiclasssensitivity"]], "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity": [[99, "cyclops-evaluate-metrics-sensitivity-multilabelsensitivity"]], "cyclops.evaluate.metrics.sensitivity.Sensitivity": [[100, "cyclops-evaluate-metrics-sensitivity-sensitivity"]], "cyclops.evaluate.metrics.specificity": [[101, "module-cyclops.evaluate.metrics.specificity"]], "cyclops.evaluate.metrics.specificity.BinarySpecificity": [[102, "cyclops-evaluate-metrics-specificity-binaryspecificity"]], "cyclops.evaluate.metrics.specificity.MulticlassSpecificity": [[103, "cyclops-evaluate-metrics-specificity-multiclassspecificity"]], "cyclops.evaluate.metrics.specificity.MultilabelSpecificity": [[104, "cyclops-evaluate-metrics-specificity-multilabelspecificity"]], "cyclops.evaluate.metrics.specificity.Specificity": [[105, "cyclops-evaluate-metrics-specificity-specificity"]], "cyclops.evaluate.metrics.stat_scores": [[106, "module-cyclops.evaluate.metrics.stat_scores"]], "cyclops.evaluate.metrics.stat_scores.BinaryStatScores": [[107, "cyclops-evaluate-metrics-stat-scores-binarystatscores"]], "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores": [[108, "cyclops-evaluate-metrics-stat-scores-multiclassstatscores"]], "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores": [[109, "cyclops-evaluate-metrics-stat-scores-multilabelstatscores"]], "cyclops.evaluate.metrics.stat_scores.StatScores": [[110, "cyclops-evaluate-metrics-stat-scores-statscores"]], "cyclops.monitor.clinical_applicator": [[111, "module-cyclops.monitor.clinical_applicator"]], "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator": [[112, "cyclops-monitor-clinical-applicator-clinicalshiftapplicator"]], "cyclops.monitor.synthetic_applicator": [[113, "module-cyclops.monitor.synthetic_applicator"]], "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator": [[114, "cyclops-monitor-synthetic-applicator-syntheticshiftapplicator"]], "cyclops.monitor.synthetic_applicator.binary_noise_shift": [[115, "cyclops-monitor-synthetic-applicator-binary-noise-shift"]], "cyclops.monitor.synthetic_applicator.feature_association_shift": [[116, "cyclops-monitor-synthetic-applicator-feature-association-shift"]], "cyclops.monitor.synthetic_applicator.feature_swap_shift": [[117, "cyclops-monitor-synthetic-applicator-feature-swap-shift"]], "cyclops.monitor.synthetic_applicator.gaussian_noise_shift": [[118, "cyclops-monitor-synthetic-applicator-gaussian-noise-shift"]], "cyclops.monitor.synthetic_applicator.knockout_shift": [[119, "cyclops-monitor-synthetic-applicator-knockout-shift"]], "cyclops.report.report": [[120, "module-cyclops.report.report"]], "cyclops.report.report.ModelCardReport": [[121, "cyclops-report-report-modelcardreport"]], "cyclops.tasks.classification": [[122, "module-cyclops.tasks.classification"]], "cyclops.tasks.classification.BinaryTabularClassificationTask": [[123, "cyclops-tasks-classification-binarytabularclassificationtask"]], "cyclops.tasks.classification.MultilabelImageClassificationTask": [[124, "cyclops-tasks-classification-multilabelimageclassificationtask"]], "cyclops.data": [[125, "module-cyclops.data"]], "cyclops.data.features": [[125, "module-cyclops.data.features"]], "cyclops.evaluate": [[126, "module-cyclops.evaluate"]], "cyclops.evaluate.metrics": [[126, "module-cyclops.evaluate.metrics"]], "cyclops.evaluate.metrics.functional": [[126, "module-cyclops.evaluate.metrics.functional"]], "cyclops.evaluate.fairness": [[126, "module-cyclops.evaluate.fairness"]], "cyclops.monitor": [[127, "module-cyclops.monitor"]], "cyclops.report": [[128, "module-cyclops.report"]], "cyclops.tasks": [[129, "module-cyclops.tasks"]], "Tutorials": [[130, "tutorials"]], "Heart Failure Prediction": [[131, "Heart-Failure-Prediction"]], "Import Libraries": [[131, "Import-Libraries"], [132, "Import-Libraries"], [133, "Import-Libraries"], [135, "Import-Libraries"]], "Constants": [[131, "Constants"], [132, "Constants"], [135, "Constants"]], "Data Loading": [[131, "Data-Loading"]], "Sex values": [[131, "Sex-values"]], "Age distribution": [[131, "Age-distribution"], [132, "Age-distribution"], [135, "Age-distribution"]], "Outcome distribution": [[131, "Outcome-distribution"], [132, "Outcome-distribution"], [135, "Outcome-distribution"]], "Identifying feature types": [[131, "Identifying-feature-types"], [132, "Identifying-feature-types"], [135, "Identifying-feature-types"]], "Creating data preprocessors": [[131, "Creating-data-preprocessors"], [132, "Creating-data-preprocessors"], [135, "Creating-data-preprocessors"]], "Creating Hugging Face Dataset": [[131, "Creating-Hugging-Face-Dataset"], [132, "Creating-Hugging-Face-Dataset"], [135, "Creating-Hugging-Face-Dataset"]], "Model Creation": [[131, "Model-Creation"], [132, "Model-Creation"], [133, "Model-Creation"], [135, "Model-Creation"]], "Task Creation": [[131, "Task-Creation"], [132, "Task-Creation"], [135, "Task-Creation"]], "Training": [[131, "Training"], [132, "Training"], [135, "Training"]], "Prediction": [[131, "Prediction"], [132, "Prediction"], [135, "Prediction"]], "Evaluation": [[131, "Evaluation"], [132, "Evaluation"], [135, "Evaluation"]], "Performance over time": [[131, "Performance-over-time"]], "Report Generation": [[131, "Report-Generation"], [132, "Report-Generation"], [135, "Report-Generation"]], "Mortality Prediction": [[132, "Mortality-Prediction"]], "Data Querying & Processing": [[132, "Data-Querying-&-Processing"]], "Compute mortality (labels)": [[132, "Compute-mortality-(labels)"]], "Data Inspection and Preprocessing": [[132, "Data-Inspection-and-Preprocessing"], [135, "Data-Inspection-and-Preprocessing"]], "Drop NaNs based on the NAN_THRESHOLD": [[132, "Drop-NaNs-based-on-the-NAN_THRESHOLD"], [135, "Drop-NaNs-based-on-the-NAN_THRESHOLD"]], "Gender distribution": [[132, "Gender-distribution"], [135, "Gender-distribution"]], "Chest X-Ray Disease Classification": [[133, "Chest-X-Ray-Disease-Classification"]], "Generate Historical Reports": [[133, "Generate-Historical-Reports"]], "Initialize Periodic Report": [[133, "Initialize-Periodic-Report"]], "Load Dataset": [[133, "Load-Dataset"]], "Multilabel AUROC by Pathology and Sex": [[133, "Multilabel-AUROC-by-Pathology-and-Sex"]], "Multilabel AUROC by Pathology and Age": [[133, "Multilabel-AUROC-by-Pathology-and-Age"]], "Log Performance Metrics as Tests w/ Thresholds": [[133, "Log-Performance-Metrics-as-Tests-w/-Thresholds"]], "Populate Model Card Fields": [[133, "Populate-Model-Card-Fields"]], "NIHCXR Clinical Drift Experiments Tutorial": [[134, "NIHCXR-Clinical-Drift-Experiments-Tutorial"]], "Import Libraries and Load NIHCXR Dataset": [[134, "Import-Libraries-and-Load-NIHCXR-Dataset"]], "Example 1. Generate Source/Target Dataset for Experiments (1-2)": [[134, "Example-1.-Generate-Source/Target-Dataset-for-Experiments-(1-2)"]], "Example 2. Sensitivity test experiment with 3 dimensionality reduction techniques": [[134, "Example-2.-Sensitivity-test-experiment-with-3-dimensionality-reduction-techniques"]], "Example 3. Sensitivity test experiment with models trained on different datasets": [[134, "Example-3.-Sensitivity-test-experiment-with-models-trained-on-different-datasets"]], "Example 4. Sensitivity test experiment with different clinical shifts": [[134, "Example-4.-Sensitivity-test-experiment-with-different-clinical-shifts"]], "Example 5. Rolling window experiment with synthetic timestamps using biweekly window": [[134, "Example-5.-Rolling-window-experiment-with-synthetic-timestamps-using-biweekly-window"]], "Prolonged Length of Stay Prediction": [[135, "Prolonged-Length-of-Stay-Prediction"]], "Data Querying": [[135, "Data-Querying"]], "Compute length of stay (labels)": [[135, "Compute-length-of-stay-(labels)"]], "Length of stay distribution": [[135, "Length-of-stay-distribution"]], "monitor API": [[136, "monitor-api"]], "Example use cases": [[137, "example-use-cases"]], "Tabular data": [[137, "tabular-data"]], "Kaggle Heart Failure Prediction": [[137, "kaggle-heart-failure-prediction"]], "MIMICIV Mortality Prediction": [[137, "mimiciv-mortality-prediction"]], "Synthea Prolonged Length of Stay Prediction": [[137, "synthea-prolonged-length-of-stay-prediction"]], "Image data": [[137, "image-data"]], "NIH Chest X-ray classification": [[137, "nih-chest-x-ray-classification"]]}, "indexentries": {"cyclops.data.features.medical_image": [[4, "module-cyclops.data.features.medical_image"]], "module": [[4, "module-cyclops.data.features.medical_image"], [6, "module-cyclops.data.slicer"], [16, "module-cyclops.evaluate.evaluator"], [18, "module-cyclops.evaluate.fairness.config"], [20, "module-cyclops.evaluate.fairness.evaluator"], [23, "module-cyclops.evaluate.metrics.accuracy"], [28, "module-cyclops.evaluate.metrics.auroc"], [33, "module-cyclops.evaluate.metrics.f_beta"], [42, "module-cyclops.evaluate.metrics.factory"], [44, "module-cyclops.evaluate.metrics.functional.accuracy"], [45, "module-cyclops.evaluate.metrics.functional.auroc"], [46, "module-cyclops.evaluate.metrics.functional.f_beta"], [55, "module-cyclops.evaluate.metrics.functional.precision_recall"], [64, "module-cyclops.evaluate.metrics.functional.precision_recall_curve"], [65, "module-cyclops.evaluate.metrics.functional.roc"], [70, "module-cyclops.evaluate.metrics.functional.sensitivity"], [71, "module-cyclops.evaluate.metrics.functional.specificity"], [72, "module-cyclops.evaluate.metrics.functional.stat_scores"], [73, "module-cyclops.evaluate.metrics.metric"], [77, "module-cyclops.evaluate.metrics.precision_recall"], [86, "module-cyclops.evaluate.metrics.precision_recall_curve"], [91, "module-cyclops.evaluate.metrics.roc"], [96, "module-cyclops.evaluate.metrics.sensitivity"], [101, "module-cyclops.evaluate.metrics.specificity"], [106, "module-cyclops.evaluate.metrics.stat_scores"], [111, "module-cyclops.monitor.clinical_applicator"], [113, "module-cyclops.monitor.synthetic_applicator"], [120, "module-cyclops.report.report"], [122, "module-cyclops.tasks.classification"], [125, "module-cyclops.data"], [125, "module-cyclops.data.features"], [126, "module-cyclops.evaluate"], [126, "module-cyclops.evaluate.fairness"], [126, "module-cyclops.evaluate.metrics"], [126, "module-cyclops.evaluate.metrics.functional"], [127, "module-cyclops.monitor"], [128, "module-cyclops.report"], [129, "module-cyclops.tasks"]], "medicalimage (class in cyclops.data.features.medical_image)": [[5, "cyclops.data.features.medical_image.MedicalImage"]], "__call__() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.__call__"]], "cast_storage() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.cast_storage"]], "decode_example() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.decode_example"]], "embed_storage() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.embed_storage"]], "encode_example() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.encode_example"]], "flatten() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.flatten"]], "cyclops.data.slicer": [[6, "module-cyclops.data.slicer"]], "slicespec (class in cyclops.data.slicer)": [[7, "cyclops.data.slicer.SliceSpec"]], "_registry (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec._registry"]], "add_slice_spec() (slicespec method)": [[7, "cyclops.data.slicer.SliceSpec.add_slice_spec"]], "column_names (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec.column_names"]], "get_slices() (slicespec method)": [[7, "cyclops.data.slicer.SliceSpec.get_slices"]], "include_overall (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec.include_overall"]], "slices() (slicespec method)": [[7, "cyclops.data.slicer.SliceSpec.slices"]], "spec_list (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec.spec_list"]], "validate (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec.validate"]], "compound_filter() (in module cyclops.data.slicer)": [[8, "cyclops.data.slicer.compound_filter"]], "filter_datetime() (in module cyclops.data.slicer)": [[9, "cyclops.data.slicer.filter_datetime"]], "filter_non_null() (in module cyclops.data.slicer)": [[10, "cyclops.data.slicer.filter_non_null"]], "filter_range() (in module cyclops.data.slicer)": [[11, "cyclops.data.slicer.filter_range"]], "filter_string_contains() (in module cyclops.data.slicer)": [[12, "cyclops.data.slicer.filter_string_contains"]], "filter_value() (in module cyclops.data.slicer)": [[13, "cyclops.data.slicer.filter_value"]], "is_datetime() (in module cyclops.data.slicer)": [[14, "cyclops.data.slicer.is_datetime"]], "overall() (in module cyclops.data.slicer)": [[15, "cyclops.data.slicer.overall"]], "cyclops.evaluate.evaluator": [[16, "module-cyclops.evaluate.evaluator"]], "evaluate() (in module cyclops.evaluate.evaluator)": [[17, "cyclops.evaluate.evaluator.evaluate"]], "cyclops.evaluate.fairness.config": [[18, "module-cyclops.evaluate.fairness.config"]], "fairnessconfig (class in cyclops.evaluate.fairness.config)": [[19, "cyclops.evaluate.fairness.config.FairnessConfig"]], "cyclops.evaluate.fairness.evaluator": [[20, "module-cyclops.evaluate.fairness.evaluator"]], "evaluate_fairness() (in module cyclops.evaluate.fairness.evaluator)": [[21, "cyclops.evaluate.fairness.evaluator.evaluate_fairness"]], "warn_too_many_unique_values() (in module cyclops.evaluate.fairness.evaluator)": [[22, "cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values"]], "cyclops.evaluate.metrics.accuracy": [[23, "module-cyclops.evaluate.metrics.accuracy"]], "accuracy (class in cyclops.evaluate.metrics.accuracy)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy"]], "__add__() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.__add__"]], "__call__() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.__call__"]], "__init__() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.__init__"]], "__mul__() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.__mul__"]], "add_state() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.add_state"]], "clone() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.clone"]], "compute() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.compute"]], "reset_state() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.reset_state"]], "update_state() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.update_state"]], "binaryaccuracy (class in cyclops.evaluate.metrics.accuracy)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy"]], "__add__() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.__add__"]], "__call__() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.__call__"]], "__init__() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.__init__"]], "__mul__() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.__mul__"]], "add_state() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.add_state"]], "clone() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.clone"]], "compute() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.compute"]], "reset_state() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.reset_state"]], "update_state() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.update_state"]], "multiclassaccuracy (class in cyclops.evaluate.metrics.accuracy)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy"]], "__add__() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.__add__"]], "__call__() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.__call__"]], "__init__() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.__init__"]], "__mul__() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.__mul__"]], "add_state() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.add_state"]], "clone() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.clone"]], "compute() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.compute"]], "reset_state() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.reset_state"]], "update_state() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.update_state"]], "multilabelaccuracy (class in cyclops.evaluate.metrics.accuracy)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy"]], "__add__() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.__add__"]], "__call__() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.__call__"]], "__init__() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.__init__"]], "__mul__() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.__mul__"]], "add_state() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.add_state"]], "clone() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.clone"]], "compute() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.compute"]], "reset_state() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.reset_state"]], "update_state() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.update_state"]], "cyclops.evaluate.metrics.auroc": [[28, "module-cyclops.evaluate.metrics.auroc"]], "auroc (class in cyclops.evaluate.metrics.auroc)": [[29, "cyclops.evaluate.metrics.auroc.AUROC"]], "__add__() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.__add__"]], "__call__() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.__call__"]], "__init__() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.__init__"]], "__mul__() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.__mul__"]], "add_state() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.add_state"]], "clone() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.clone"]], "compute() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.compute"]], "reset_state() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.reset_state"]], "update_state() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.update_state"]], "binaryauroc (class in cyclops.evaluate.metrics.auroc)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC"]], "__add__() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.__add__"]], "__call__() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.__call__"]], "__init__() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.__init__"]], "__mul__() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.__mul__"]], "add_state() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.add_state"]], "clone() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.clone"]], "compute() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.compute"]], "reset_state() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.reset_state"]], "update_state() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.update_state"]], "multiclassauroc (class in cyclops.evaluate.metrics.auroc)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC"]], "__add__() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.__add__"]], "__call__() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.__call__"]], "__init__() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.__init__"]], "__mul__() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.__mul__"]], "add_state() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.add_state"]], "clone() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.clone"]], "compute() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.compute"]], "reset_state() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.reset_state"]], "update_state() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.update_state"]], "multilabelauroc (class in cyclops.evaluate.metrics.auroc)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC"]], "__add__() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.__add__"]], "__call__() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.__call__"]], "__init__() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.__init__"]], "__mul__() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.__mul__"]], "add_state() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.add_state"]], "clone() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.clone"]], "compute() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.compute"]], "reset_state() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.reset_state"]], "update_state() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.update_state"]], "cyclops.evaluate.metrics.f_beta": [[33, "module-cyclops.evaluate.metrics.f_beta"]], "binaryf1score (class in cyclops.evaluate.metrics.f_beta)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score"]], "__add__() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.__add__"]], "__call__() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.__call__"]], "__init__() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.__init__"]], "__mul__() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.__mul__"]], "add_state() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.add_state"]], "clone() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.clone"]], "compute() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.compute"]], "reset_state() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.reset_state"]], "update_state() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.update_state"]], "binaryfbetascore (class in cyclops.evaluate.metrics.f_beta)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore"]], "__add__() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.__add__"]], "__call__() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.__call__"]], "__init__() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.__init__"]], "__mul__() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.__mul__"]], "add_state() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.add_state"]], "clone() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.clone"]], "compute() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.compute"]], "reset_state() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.reset_state"]], "update_state() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.update_state"]], "f1score (class in cyclops.evaluate.metrics.f_beta)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score"]], "__add__() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.__add__"]], "__call__() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.__call__"]], "__init__() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.__init__"]], "__mul__() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.__mul__"]], "add_state() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.add_state"]], "clone() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.clone"]], "compute() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.compute"]], "reset_state() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.reset_state"]], "update_state() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.update_state"]], "fbetascore (class in cyclops.evaluate.metrics.f_beta)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore"]], "__add__() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.__add__"]], "__call__() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.__call__"]], "__init__() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.__init__"]], "__mul__() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.__mul__"]], "add_state() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.add_state"]], "clone() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.clone"]], "compute() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.compute"]], "reset_state() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.reset_state"]], "update_state() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.update_state"]], "multiclassf1score (class in cyclops.evaluate.metrics.f_beta)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score"]], "__add__() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.__add__"]], "__call__() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.__call__"]], "__init__() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.__init__"]], "__mul__() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.__mul__"]], "add_state() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.add_state"]], "clone() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.clone"]], "compute() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.compute"]], "reset_state() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.reset_state"]], "update_state() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.update_state"]], "multiclassfbetascore (class in cyclops.evaluate.metrics.f_beta)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore"]], "__add__() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.__add__"]], "__call__() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.__call__"]], "__init__() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.__init__"]], "__mul__() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.__mul__"]], "add_state() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.add_state"]], "clone() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.clone"]], "compute() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.compute"]], "reset_state() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.reset_state"]], "update_state() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.update_state"]], "multilabelf1score (class in cyclops.evaluate.metrics.f_beta)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score"]], "__add__() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.__add__"]], "__call__() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.__call__"]], "__init__() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.__init__"]], "__mul__() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.__mul__"]], "add_state() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.add_state"]], "clone() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.clone"]], "compute() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.compute"]], "reset_state() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.reset_state"]], "update_state() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.update_state"]], "multilabelfbetascore (class in cyclops.evaluate.metrics.f_beta)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore"]], "__add__() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.__add__"]], "__call__() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.__call__"]], "__init__() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.__init__"]], "__mul__() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.__mul__"]], "add_state() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.add_state"]], "clone() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.clone"]], "compute() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.compute"]], "reset_state() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.reset_state"]], "update_state() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.update_state"]], "cyclops.evaluate.metrics.factory": [[42, "module-cyclops.evaluate.metrics.factory"]], "create_metric() (in module cyclops.evaluate.metrics.factory)": [[43, "cyclops.evaluate.metrics.factory.create_metric"]], "cyclops.evaluate.metrics.functional.accuracy": [[44, "module-cyclops.evaluate.metrics.functional.accuracy"]], "cyclops.evaluate.metrics.functional.auroc": [[45, "module-cyclops.evaluate.metrics.functional.auroc"]], "cyclops.evaluate.metrics.functional.f_beta": [[46, "module-cyclops.evaluate.metrics.functional.f_beta"]], "binary_f1_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[47, "cyclops.evaluate.metrics.functional.f_beta.binary_f1_score"]], "binary_fbeta_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[48, "cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score"]], "f1_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[49, "cyclops.evaluate.metrics.functional.f_beta.f1_score"]], "fbeta_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[50, "cyclops.evaluate.metrics.functional.f_beta.fbeta_score"]], "multiclass_f1_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[51, "cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score"]], "multiclass_fbeta_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[52, "cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score"]], "multilabel_f1_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[53, "cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score"]], "multilabel_fbeta_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[54, "cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score"]], "cyclops.evaluate.metrics.functional.precision_recall": [[55, "module-cyclops.evaluate.metrics.functional.precision_recall"]], "binary_precision() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[56, "cyclops.evaluate.metrics.functional.precision_recall.binary_precision"]], "binary_recall() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[57, "cyclops.evaluate.metrics.functional.precision_recall.binary_recall"]], "multiclass_precision() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[58, "cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision"]], "multiclass_recall() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[59, "cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall"]], "multilabel_precision() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[60, "cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision"]], "multilabel_recall() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[61, "cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall"]], "precision() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[62, "cyclops.evaluate.metrics.functional.precision_recall.precision"]], "recall() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[63, "cyclops.evaluate.metrics.functional.precision_recall.recall"]], "cyclops.evaluate.metrics.functional.precision_recall_curve": [[64, "module-cyclops.evaluate.metrics.functional.precision_recall_curve"]], "cyclops.evaluate.metrics.functional.roc": [[65, "module-cyclops.evaluate.metrics.functional.roc"]], "binary_roc_curve() (in module cyclops.evaluate.metrics.functional.roc)": [[66, "cyclops.evaluate.metrics.functional.roc.binary_roc_curve"]], "multiclass_roc_curve() (in module cyclops.evaluate.metrics.functional.roc)": [[67, "cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve"]], "multilabel_roc_curve() (in module cyclops.evaluate.metrics.functional.roc)": [[68, "cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve"]], "roc_curve() (in module cyclops.evaluate.metrics.functional.roc)": [[69, "cyclops.evaluate.metrics.functional.roc.roc_curve"]], "cyclops.evaluate.metrics.functional.sensitivity": [[70, "module-cyclops.evaluate.metrics.functional.sensitivity"]], "cyclops.evaluate.metrics.functional.specificity": [[71, "module-cyclops.evaluate.metrics.functional.specificity"]], "cyclops.evaluate.metrics.functional.stat_scores": [[72, "module-cyclops.evaluate.metrics.functional.stat_scores"]], "cyclops.evaluate.metrics.metric": [[73, "module-cyclops.evaluate.metrics.metric"]], "metric (class in cyclops.evaluate.metrics.metric)": [[74, "cyclops.evaluate.metrics.metric.Metric"]], "__add__() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.__add__"]], "__call__() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.__call__"]], "__init__() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.__init__"]], "__mul__() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.__mul__"]], "add_state() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.add_state"]], "clone() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.clone"]], "compute() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.compute"]], "name (metric property)": [[74, "cyclops.evaluate.metrics.metric.Metric.name"]], "reset_state() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.reset_state"]], "update_state() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.update_state"]], "metriccollection (class in cyclops.evaluate.metrics.metric)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection"]], "__call__() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.__call__"]], "__init__() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.__init__"]], "add_metrics() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.add_metrics"]], "clear() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.clear"]], "clone() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.clone"]], "compute() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.compute"]], "get() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.get"]], "items() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.items"]], "keys() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.keys"]], "pop() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.pop"]], "popitem() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.popitem"]], "reset_state() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.reset_state"]], "setdefault() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.setdefault"]], "update() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.update"]], "update_state() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.update_state"]], "values() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.values"]], "operatormetric (class in cyclops.evaluate.metrics.metric)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric"]], "__add__() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.__add__"]], "__call__() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.__call__"]], "__init__() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.__init__"]], "__mul__() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.__mul__"]], "add_state() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.add_state"]], "clone() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.clone"]], "compute() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.compute"]], "reset_state() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.reset_state"]], "update_state() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.update_state"]], "cyclops.evaluate.metrics.precision_recall": [[77, "module-cyclops.evaluate.metrics.precision_recall"]], "binaryprecision (class in cyclops.evaluate.metrics.precision_recall)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision"]], "__add__() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.__add__"]], "__call__() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.__call__"]], "__init__() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.__init__"]], "__mul__() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.__mul__"]], "add_state() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.add_state"]], "clone() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.clone"]], "compute() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.compute"]], "reset_state() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.reset_state"]], "update_state() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.update_state"]], "binaryrecall (class in cyclops.evaluate.metrics.precision_recall)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall"]], "__add__() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.__add__"]], "__call__() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.__call__"]], "__init__() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.__init__"]], "__mul__() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.__mul__"]], "add_state() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.add_state"]], "clone() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.clone"]], "compute() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.compute"]], "reset_state() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.reset_state"]], "update_state() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.update_state"]], "multiclassprecision (class in cyclops.evaluate.metrics.precision_recall)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision"]], "__add__() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.__add__"]], "__call__() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.__call__"]], "__init__() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.__init__"]], "__mul__() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.__mul__"]], "add_state() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.add_state"]], "clone() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.clone"]], "compute() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.compute"]], "reset_state() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.reset_state"]], "update_state() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.update_state"]], "multiclassrecall (class in cyclops.evaluate.metrics.precision_recall)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall"]], "__add__() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.__add__"]], "__call__() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.__call__"]], "__init__() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.__init__"]], "__mul__() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.__mul__"]], "add_state() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.add_state"]], "clone() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.clone"]], "compute() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.compute"]], "reset_state() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.reset_state"]], "update_state() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.update_state"]], "multilabelprecision (class in cyclops.evaluate.metrics.precision_recall)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision"]], "__add__() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.__add__"]], "__call__() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.__call__"]], "__init__() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.__init__"]], "__mul__() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.__mul__"]], "add_state() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.add_state"]], "clone() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.clone"]], "compute() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.compute"]], "reset_state() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.reset_state"]], "update_state() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.update_state"]], "multilabelrecall (class in cyclops.evaluate.metrics.precision_recall)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall"]], "__add__() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.__add__"]], "__call__() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.__call__"]], "__init__() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.__init__"]], "__mul__() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.__mul__"]], "add_state() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.add_state"]], "clone() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.clone"]], "compute() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.compute"]], "reset_state() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.reset_state"]], "update_state() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.update_state"]], "precision (class in cyclops.evaluate.metrics.precision_recall)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision"]], "__add__() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.__add__"]], "__call__() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.__call__"]], "__init__() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.__init__"]], "__mul__() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.__mul__"]], "add_state() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.add_state"]], "clone() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.clone"]], "compute() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.compute"]], "reset_state() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.reset_state"]], "update_state() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.update_state"]], "recall (class in cyclops.evaluate.metrics.precision_recall)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall"]], "__add__() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.__add__"]], "__call__() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.__call__"]], "__init__() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.__init__"]], "__mul__() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.__mul__"]], "add_state() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.add_state"]], "clone() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.clone"]], "compute() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.compute"]], "reset_state() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.reset_state"]], "update_state() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.update_state"]], "cyclops.evaluate.metrics.precision_recall_curve": [[86, "module-cyclops.evaluate.metrics.precision_recall_curve"]], "binaryprecisionrecallcurve (class in cyclops.evaluate.metrics.precision_recall_curve)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve"]], "__add__() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.__add__"]], "__call__() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.__call__"]], "__init__() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.__init__"]], "__mul__() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.__mul__"]], "add_state() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.add_state"]], "clone() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.clone"]], "compute() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.compute"]], "reset_state() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.reset_state"]], "update_state() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.update_state"]], "multiclassprecisionrecallcurve (class in cyclops.evaluate.metrics.precision_recall_curve)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve"]], "__add__() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.__add__"]], "__call__() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.__call__"]], "__init__() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.__init__"]], "__mul__() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.__mul__"]], "add_state() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.add_state"]], "clone() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.clone"]], "compute() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.compute"]], "reset_state() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.reset_state"]], "update_state() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.update_state"]], "multilabelprecisionrecallcurve (class in cyclops.evaluate.metrics.precision_recall_curve)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve"]], "__add__() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.__add__"]], "__call__() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.__call__"]], "__init__() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.__init__"]], "__mul__() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.__mul__"]], "add_state() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.add_state"]], "clone() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.clone"]], "compute() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.compute"]], "reset_state() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.reset_state"]], "update_state() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.update_state"]], "precisionrecallcurve (class in cyclops.evaluate.metrics.precision_recall_curve)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve"]], "__add__() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.__add__"]], "__call__() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.__call__"]], "__init__() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.__init__"]], "__mul__() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.__mul__"]], "add_state() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.add_state"]], "clone() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.clone"]], "compute() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.compute"]], "reset_state() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.reset_state"]], "update_state() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.update_state"]], "cyclops.evaluate.metrics.roc": [[91, "module-cyclops.evaluate.metrics.roc"]], "binaryroccurve (class in cyclops.evaluate.metrics.roc)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve"]], "__add__() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.__add__"]], "__call__() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.__call__"]], "__init__() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.__init__"]], "__mul__() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.__mul__"]], "add_state() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.add_state"]], "clone() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.clone"]], "compute() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.compute"]], "reset_state() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.reset_state"]], "update_state() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.update_state"]], "multiclassroccurve (class in cyclops.evaluate.metrics.roc)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve"]], "__add__() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.__add__"]], "__call__() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.__call__"]], "__init__() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.__init__"]], "__mul__() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.__mul__"]], "add_state() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.add_state"]], "clone() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.clone"]], "compute() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.compute"]], "reset_state() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.reset_state"]], "update_state() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.update_state"]], "multilabelroccurve (class in cyclops.evaluate.metrics.roc)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve"]], "__add__() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.__add__"]], "__call__() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.__call__"]], "__init__() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.__init__"]], "__mul__() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.__mul__"]], "add_state() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.add_state"]], "clone() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.clone"]], "compute() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.compute"]], "reset_state() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.reset_state"]], "update_state() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.update_state"]], "roccurve (class in cyclops.evaluate.metrics.roc)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve"]], "__add__() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.__add__"]], "__call__() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.__call__"]], "__init__() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.__init__"]], "__mul__() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.__mul__"]], "add_state() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.add_state"]], "clone() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.clone"]], "compute() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.compute"]], "reset_state() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.reset_state"]], "update_state() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.update_state"]], "cyclops.evaluate.metrics.sensitivity": [[96, "module-cyclops.evaluate.metrics.sensitivity"]], "binarysensitivity (class in cyclops.evaluate.metrics.sensitivity)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity"]], "__add__() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.__add__"]], "__call__() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.__call__"]], "__init__() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.__init__"]], "__mul__() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.__mul__"]], "add_state() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.add_state"]], "clone() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.clone"]], "compute() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.compute"]], "reset_state() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.reset_state"]], "update_state() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.update_state"]], "multiclasssensitivity (class in cyclops.evaluate.metrics.sensitivity)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity"]], "__add__() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.__add__"]], "__call__() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.__call__"]], "__init__() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.__init__"]], "__mul__() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.__mul__"]], "add_state() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.add_state"]], "clone() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.clone"]], "compute() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.compute"]], "reset_state() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.reset_state"]], "update_state() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.update_state"]], "multilabelsensitivity (class in cyclops.evaluate.metrics.sensitivity)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity"]], "__add__() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.__add__"]], "__call__() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.__call__"]], "__init__() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.__init__"]], "__mul__() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.__mul__"]], "add_state() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.add_state"]], "clone() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.clone"]], "compute() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.compute"]], "reset_state() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.reset_state"]], "update_state() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.update_state"]], "sensitivity (class in cyclops.evaluate.metrics.sensitivity)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity"]], "__add__() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.__add__"]], "__call__() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.__call__"]], "__init__() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.__init__"]], "__mul__() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.__mul__"]], "add_state() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.add_state"]], "clone() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.clone"]], "compute() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.compute"]], "reset_state() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.reset_state"]], "update_state() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.update_state"]], "cyclops.evaluate.metrics.specificity": [[101, "module-cyclops.evaluate.metrics.specificity"]], "binaryspecificity (class in cyclops.evaluate.metrics.specificity)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity"]], "__add__() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.__add__"]], "__call__() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.__call__"]], "__init__() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.__init__"]], "__mul__() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.__mul__"]], "add_state() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.add_state"]], "clone() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.clone"]], "compute() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.compute"]], "reset_state() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.reset_state"]], "update_state() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.update_state"]], "multiclassspecificity (class in cyclops.evaluate.metrics.specificity)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity"]], "__add__() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.__add__"]], "__call__() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.__call__"]], "__init__() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.__init__"]], "__mul__() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.__mul__"]], "add_state() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.add_state"]], "clone() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.clone"]], "compute() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.compute"]], "reset_state() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.reset_state"]], "update_state() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.update_state"]], "multilabelspecificity (class in cyclops.evaluate.metrics.specificity)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity"]], "__add__() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.__add__"]], "__call__() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.__call__"]], "__init__() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.__init__"]], "__mul__() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.__mul__"]], "add_state() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.add_state"]], "clone() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.clone"]], "compute() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.compute"]], "reset_state() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.reset_state"]], "update_state() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.update_state"]], "specificity (class in cyclops.evaluate.metrics.specificity)": [[105, "cyclops.evaluate.metrics.specificity.Specificity"]], "__add__() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.__add__"]], "__call__() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.__call__"]], "__init__() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.__init__"]], "__mul__() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.__mul__"]], "add_state() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.add_state"]], "clone() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.clone"]], "compute() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.compute"]], "reset_state() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.reset_state"]], "update_state() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.update_state"]], "cyclops.evaluate.metrics.stat_scores": [[106, "module-cyclops.evaluate.metrics.stat_scores"]], "binarystatscores (class in cyclops.evaluate.metrics.stat_scores)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores"]], "__add__() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.__add__"]], "__call__() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.__call__"]], "__init__() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.__init__"]], "__mul__() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.__mul__"]], "add_state() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.add_state"]], "clone() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.clone"]], "compute() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.compute"]], "reset_state() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.reset_state"]], "update_state() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.update_state"]], "multiclassstatscores (class in cyclops.evaluate.metrics.stat_scores)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores"]], "__add__() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.__add__"]], "__call__() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.__call__"]], "__init__() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.__init__"]], "__mul__() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.__mul__"]], "add_state() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.add_state"]], "clone() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.clone"]], "compute() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.compute"]], "reset_state() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.reset_state"]], "update_state() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.update_state"]], "multilabelstatscores (class in cyclops.evaluate.metrics.stat_scores)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores"]], "__add__() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.__add__"]], "__call__() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.__call__"]], "__init__() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.__init__"]], "__mul__() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.__mul__"]], "add_state() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.add_state"]], "clone() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.clone"]], "compute() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.compute"]], "reset_state() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.reset_state"]], "update_state() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.update_state"]], "statscores (class in cyclops.evaluate.metrics.stat_scores)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores"]], "__add__() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.__add__"]], "__call__() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.__call__"]], "__init__() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.__init__"]], "__mul__() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.__mul__"]], "add_state() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.add_state"]], "clone() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.clone"]], "compute() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.compute"]], "name (statscores property)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.name"]], "reset_state() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.reset_state"]], "update_state() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.update_state"]], "cyclops.monitor.clinical_applicator": [[111, "module-cyclops.monitor.clinical_applicator"]], "clinicalshiftapplicator (class in cyclops.monitor.clinical_applicator)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator"]], "age() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.age"]], "apply_shift() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.apply_shift"]], "custom() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.custom"]], "hospital_type() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.hospital_type"]], "month() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.month"]], "sex() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.sex"]], "time() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.time"]], "cyclops.monitor.synthetic_applicator": [[113, "module-cyclops.monitor.synthetic_applicator"]], "syntheticshiftapplicator (class in cyclops.monitor.synthetic_applicator)": [[114, "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator"]], "apply_shift() (syntheticshiftapplicator method)": [[114, "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator.apply_shift"]], "binary_noise_shift() (in module cyclops.monitor.synthetic_applicator)": [[115, "cyclops.monitor.synthetic_applicator.binary_noise_shift"]], "feature_association_shift() (in module cyclops.monitor.synthetic_applicator)": [[116, "cyclops.monitor.synthetic_applicator.feature_association_shift"]], "feature_swap_shift() (in module cyclops.monitor.synthetic_applicator)": [[117, "cyclops.monitor.synthetic_applicator.feature_swap_shift"]], "gaussian_noise_shift() (in module cyclops.monitor.synthetic_applicator)": [[118, "cyclops.monitor.synthetic_applicator.gaussian_noise_shift"]], "knockout_shift() (in module cyclops.monitor.synthetic_applicator)": [[119, "cyclops.monitor.synthetic_applicator.knockout_shift"]], "cyclops.report.report": [[120, "module-cyclops.report.report"]], "modelcardreport (class in cyclops.report.report)": [[121, "cyclops.report.report.ModelCardReport"]], "export() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.export"]], "from_json_file() (modelcardreport class method)": [[121, "cyclops.report.report.ModelCardReport.from_json_file"]], "log_citation() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_citation"]], "log_dataset() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_dataset"]], "log_descriptor() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_descriptor"]], "log_fairness_assessment() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_fairness_assessment"]], "log_from_dict() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_from_dict"]], "log_image() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_image"]], "log_license() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_license"]], "log_model_parameters() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_model_parameters"]], "log_owner() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_owner"]], "log_performance_metrics() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_performance_metrics"]], "log_plotly_figure() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_plotly_figure"]], "log_quantitative_analysis() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_quantitative_analysis"]], "log_reference() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_reference"]], "log_regulation() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_regulation"]], "log_risk() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_risk"]], "log_use_case() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_use_case"]], "log_user() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_user"]], "log_version() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_version"]], "cyclops.tasks.classification": [[122, "module-cyclops.tasks.classification"]], "binarytabularclassificationtask (class in cyclops.tasks.classification)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask"]], "__init__() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.__init__"]], "add_model() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.add_model"]], "data_type (binarytabularclassificationtask property)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.data_type"]], "evaluate() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.evaluate"]], "get_model() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.get_model"]], "list_models() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.list_models"]], "list_models_params() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.list_models_params"]], "load_model() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.load_model"]], "models_count (binarytabularclassificationtask property)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.models_count"]], "predict() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.predict"]], "save_model() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.save_model"]], "task_type (binarytabularclassificationtask property)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.task_type"]], "train() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.train"]], "multilabelimageclassificationtask (class in cyclops.tasks.classification)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask"]], "__init__() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.__init__"]], "add_model() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.add_model"]], "data_type (multilabelimageclassificationtask property)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.data_type"]], "evaluate() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.evaluate"]], "get_model() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.get_model"]], "list_models() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.list_models"]], "list_models_params() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.list_models_params"]], "load_model() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.load_model"]], "models_count (multilabelimageclassificationtask property)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.models_count"]], "predict() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.predict"]], "save_model() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.save_model"]], "task_type (multilabelimageclassificationtask property)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.task_type"]], "cyclops.data": [[125, "module-cyclops.data"]], "cyclops.data.features": [[125, "module-cyclops.data.features"]], "cyclops.evaluate": [[126, "module-cyclops.evaluate"]], "cyclops.evaluate.fairness": [[126, "module-cyclops.evaluate.fairness"]], "cyclops.evaluate.metrics": [[126, "module-cyclops.evaluate.metrics"]], "cyclops.evaluate.metrics.functional": [[126, "module-cyclops.evaluate.metrics.functional"]], "cyclops.monitor": [[127, "module-cyclops.monitor"]], "cyclops.report": [[128, "module-cyclops.report"]], "cyclops.tasks": [[129, "module-cyclops.tasks"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["api", "contributing", "index", "intro", "reference/api/_autosummary/cyclops.data.features.medical_image", "reference/api/_autosummary/cyclops.data.features.medical_image.MedicalImage", "reference/api/_autosummary/cyclops.data.slicer", "reference/api/_autosummary/cyclops.data.slicer.SliceSpec", "reference/api/_autosummary/cyclops.data.slicer.compound_filter", "reference/api/_autosummary/cyclops.data.slicer.filter_datetime", "reference/api/_autosummary/cyclops.data.slicer.filter_non_null", "reference/api/_autosummary/cyclops.data.slicer.filter_range", "reference/api/_autosummary/cyclops.data.slicer.filter_string_contains", "reference/api/_autosummary/cyclops.data.slicer.filter_value", "reference/api/_autosummary/cyclops.data.slicer.is_datetime", "reference/api/_autosummary/cyclops.data.slicer.overall", "reference/api/_autosummary/cyclops.evaluate.evaluator", "reference/api/_autosummary/cyclops.evaluate.evaluator.evaluate", "reference/api/_autosummary/cyclops.evaluate.fairness.config", "reference/api/_autosummary/cyclops.evaluate.fairness.config.FairnessConfig", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.evaluate_fairness", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.Accuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.BinaryAccuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.MulticlassAccuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.MultilabelAccuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.AUROC", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.BinaryAUROC", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.MulticlassAUROC", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.MultilabelAUROC", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.BinaryF1Score", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.BinaryFbetaScore", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.F1Score", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.FbetaScore", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MulticlassF1Score", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MultilabelF1Score", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore", "reference/api/_autosummary/cyclops.evaluate.metrics.factory", "reference/api/_autosummary/cyclops.evaluate.metrics.factory.create_metric", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.accuracy", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.auroc", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.binary_f1_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.f1_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.fbeta_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.binary_precision", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.binary_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.precision", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.recall", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.binary_roc_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.roc_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.sensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.specificity", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.stat_scores", "reference/api/_autosummary/cyclops.evaluate.metrics.metric", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.Metric", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.MetricCollection", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.OperatorMetric", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.BinaryPrecision", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.BinaryRecall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MulticlassPrecision", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MulticlassRecall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MultilabelPrecision", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MultilabelRecall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.Precision", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.Recall", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.roc", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.BinaryROCCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.MulticlassROCCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.MultilabelROCCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.ROCCurve", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.BinarySensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.Sensitivity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.BinarySpecificity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.MulticlassSpecificity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.MultilabelSpecificity", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.Specificity", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.BinaryStatScores", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.MulticlassStatScores", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.MultilabelStatScores", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.StatScores", "reference/api/_autosummary/cyclops.monitor.clinical_applicator", "reference/api/_autosummary/cyclops.monitor.clinical_applicator.ClinicalShiftApplicator", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.binary_noise_shift", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.feature_association_shift", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.feature_swap_shift", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.gaussian_noise_shift", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.knockout_shift", "reference/api/_autosummary/cyclops.report.report", "reference/api/_autosummary/cyclops.report.report.ModelCardReport", "reference/api/_autosummary/cyclops.tasks.classification", "reference/api/_autosummary/cyclops.tasks.classification.BinaryTabularClassificationTask", "reference/api/_autosummary/cyclops.tasks.classification.MultilabelImageClassificationTask", "reference/api/cyclops.data", "reference/api/cyclops.evaluate", "reference/api/cyclops.monitor", "reference/api/cyclops.report", "reference/api/cyclops.tasks", "tutorials", "tutorials/kaggle/heart_failure_prediction", "tutorials/mimiciv/mortality_prediction", "tutorials/nihcxr/cxr_classification", "tutorials/nihcxr/monitor_api", "tutorials/synthea/los_prediction", "tutorials_monitor", "tutorials_use_cases"], "filenames": ["api.rst", "contributing.rst", "index.rst", "intro.rst", "reference/api/_autosummary/cyclops.data.features.medical_image.rst", "reference/api/_autosummary/cyclops.data.features.medical_image.MedicalImage.rst", "reference/api/_autosummary/cyclops.data.slicer.rst", "reference/api/_autosummary/cyclops.data.slicer.SliceSpec.rst", "reference/api/_autosummary/cyclops.data.slicer.compound_filter.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_datetime.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_non_null.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_range.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_string_contains.rst", "reference/api/_autosummary/cyclops.data.slicer.filter_value.rst", "reference/api/_autosummary/cyclops.data.slicer.is_datetime.rst", "reference/api/_autosummary/cyclops.data.slicer.overall.rst", "reference/api/_autosummary/cyclops.evaluate.evaluator.rst", "reference/api/_autosummary/cyclops.evaluate.evaluator.evaluate.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.config.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.config.FairnessConfig.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.evaluate_fairness.rst", "reference/api/_autosummary/cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.Accuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.BinaryAccuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.AUROC.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.BinaryAUROC.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.MulticlassAUROC.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.auroc.MultilabelAUROC.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.BinaryF1Score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.F1Score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.FbetaScore.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MulticlassF1Score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MultilabelF1Score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.factory.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.factory.create_metric.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.accuracy.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.auroc.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.binary_f1_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.f1_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.fbeta_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.binary_precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.binary_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall.recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.precision_recall_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.binary_roc_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.roc.roc_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.sensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.specificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.functional.stat_scores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.Metric.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.MetricCollection.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.metric.OperatorMetric.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.BinaryPrecision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.BinaryRecall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MulticlassRecall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.MultilabelRecall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.Precision.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall.Recall.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.BinaryROCCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.MulticlassROCCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.MultilabelROCCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.roc.ROCCurve.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.BinarySensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.sensitivity.Sensitivity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.BinarySpecificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.MulticlassSpecificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.MultilabelSpecificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.specificity.Specificity.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.BinaryStatScores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.rst", "reference/api/_autosummary/cyclops.evaluate.metrics.stat_scores.StatScores.rst", "reference/api/_autosummary/cyclops.monitor.clinical_applicator.rst", "reference/api/_autosummary/cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.binary_noise_shift.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.feature_association_shift.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.feature_swap_shift.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.gaussian_noise_shift.rst", "reference/api/_autosummary/cyclops.monitor.synthetic_applicator.knockout_shift.rst", "reference/api/_autosummary/cyclops.report.report.rst", "reference/api/_autosummary/cyclops.report.report.ModelCardReport.rst", "reference/api/_autosummary/cyclops.tasks.classification.rst", "reference/api/_autosummary/cyclops.tasks.classification.BinaryTabularClassificationTask.rst", "reference/api/_autosummary/cyclops.tasks.classification.MultilabelImageClassificationTask.rst", "reference/api/cyclops.data.rst", "reference/api/cyclops.evaluate.rst", "reference/api/cyclops.monitor.rst", "reference/api/cyclops.report.rst", "reference/api/cyclops.tasks.rst", "tutorials.rst", "tutorials/kaggle/heart_failure_prediction.ipynb", "tutorials/mimiciv/mortality_prediction.ipynb", "tutorials/nihcxr/cxr_classification.ipynb", "tutorials/nihcxr/monitor_api.ipynb", "tutorials/synthea/los_prediction.ipynb", "tutorials_monitor.rst", "tutorials_use_cases.rst"], "titles": ["API Reference", "Contributing to cyclops", "Welcome to cyclops\u2019s documentation!", "\ud83d\udc23 Getting Started", "cyclops.data.features.medical_image", "cyclops.data.features.medical_image.MedicalImage", "cyclops.data.slicer", "cyclops.data.slicer.SliceSpec", "cyclops.data.slicer.compound_filter", "cyclops.data.slicer.filter_datetime", "cyclops.data.slicer.filter_non_null", "cyclops.data.slicer.filter_range", "cyclops.data.slicer.filter_string_contains", "cyclops.data.slicer.filter_value", "cyclops.data.slicer.is_datetime", "cyclops.data.slicer.overall", "cyclops.evaluate.evaluator", "cyclops.evaluate.evaluator.evaluate", "cyclops.evaluate.fairness.config", "cyclops.evaluate.fairness.config.FairnessConfig", "cyclops.evaluate.fairness.evaluator", "cyclops.evaluate.fairness.evaluator.evaluate_fairness", "cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values", "cyclops.evaluate.metrics.accuracy", "cyclops.evaluate.metrics.accuracy.Accuracy", "cyclops.evaluate.metrics.accuracy.BinaryAccuracy", "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy", "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy", "cyclops.evaluate.metrics.auroc", "cyclops.evaluate.metrics.auroc.AUROC", "cyclops.evaluate.metrics.auroc.BinaryAUROC", "cyclops.evaluate.metrics.auroc.MulticlassAUROC", "cyclops.evaluate.metrics.auroc.MultilabelAUROC", "cyclops.evaluate.metrics.f_beta", "cyclops.evaluate.metrics.f_beta.BinaryF1Score", "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore", "cyclops.evaluate.metrics.f_beta.F1Score", "cyclops.evaluate.metrics.f_beta.FbetaScore", "cyclops.evaluate.metrics.f_beta.MulticlassF1Score", "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore", "cyclops.evaluate.metrics.f_beta.MultilabelF1Score", "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore", "cyclops.evaluate.metrics.factory", "cyclops.evaluate.metrics.factory.create_metric", "cyclops.evaluate.metrics.functional.accuracy", "cyclops.evaluate.metrics.functional.auroc", "cyclops.evaluate.metrics.functional.f_beta", "cyclops.evaluate.metrics.functional.f_beta.binary_f1_score", "cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score", "cyclops.evaluate.metrics.functional.f_beta.f1_score", "cyclops.evaluate.metrics.functional.f_beta.fbeta_score", "cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score", "cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score", "cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score", "cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score", "cyclops.evaluate.metrics.functional.precision_recall", "cyclops.evaluate.metrics.functional.precision_recall.binary_precision", "cyclops.evaluate.metrics.functional.precision_recall.binary_recall", "cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision", "cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall", "cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision", "cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall", "cyclops.evaluate.metrics.functional.precision_recall.precision", "cyclops.evaluate.metrics.functional.precision_recall.recall", "cyclops.evaluate.metrics.functional.precision_recall_curve", "cyclops.evaluate.metrics.functional.roc", "cyclops.evaluate.metrics.functional.roc.binary_roc_curve", "cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve", "cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve", "cyclops.evaluate.metrics.functional.roc.roc_curve", "cyclops.evaluate.metrics.functional.sensitivity", "cyclops.evaluate.metrics.functional.specificity", "cyclops.evaluate.metrics.functional.stat_scores", "cyclops.evaluate.metrics.metric", "cyclops.evaluate.metrics.metric.Metric", "cyclops.evaluate.metrics.metric.MetricCollection", "cyclops.evaluate.metrics.metric.OperatorMetric", "cyclops.evaluate.metrics.precision_recall", "cyclops.evaluate.metrics.precision_recall.BinaryPrecision", "cyclops.evaluate.metrics.precision_recall.BinaryRecall", "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision", "cyclops.evaluate.metrics.precision_recall.MulticlassRecall", "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision", "cyclops.evaluate.metrics.precision_recall.MultilabelRecall", "cyclops.evaluate.metrics.precision_recall.Precision", "cyclops.evaluate.metrics.precision_recall.Recall", "cyclops.evaluate.metrics.precision_recall_curve", "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve", "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve", "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve", "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve", "cyclops.evaluate.metrics.roc", "cyclops.evaluate.metrics.roc.BinaryROCCurve", "cyclops.evaluate.metrics.roc.MulticlassROCCurve", "cyclops.evaluate.metrics.roc.MultilabelROCCurve", "cyclops.evaluate.metrics.roc.ROCCurve", "cyclops.evaluate.metrics.sensitivity", "cyclops.evaluate.metrics.sensitivity.BinarySensitivity", "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity", "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity", "cyclops.evaluate.metrics.sensitivity.Sensitivity", "cyclops.evaluate.metrics.specificity", "cyclops.evaluate.metrics.specificity.BinarySpecificity", "cyclops.evaluate.metrics.specificity.MulticlassSpecificity", "cyclops.evaluate.metrics.specificity.MultilabelSpecificity", "cyclops.evaluate.metrics.specificity.Specificity", "cyclops.evaluate.metrics.stat_scores", "cyclops.evaluate.metrics.stat_scores.BinaryStatScores", "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores", "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores", "cyclops.evaluate.metrics.stat_scores.StatScores", "cyclops.monitor.clinical_applicator", "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator", "cyclops.monitor.synthetic_applicator", "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator", "cyclops.monitor.synthetic_applicator.binary_noise_shift", "cyclops.monitor.synthetic_applicator.feature_association_shift", "cyclops.monitor.synthetic_applicator.feature_swap_shift", "cyclops.monitor.synthetic_applicator.gaussian_noise_shift", "cyclops.monitor.synthetic_applicator.knockout_shift", "cyclops.report.report", "cyclops.report.report.ModelCardReport", "cyclops.tasks.classification", "cyclops.tasks.classification.BinaryTabularClassificationTask", "cyclops.tasks.classification.MultilabelImageClassificationTask", "cyclops.data", "cyclops.evaluate", "cyclops.monitor", "cyclops.report", "cyclops.tasks", "Tutorials", "Heart Failure Prediction", "Mortality Prediction", "Chest X-Ray Disease Classification", "NIHCXR Clinical Drift Experiments Tutorial", "Prolonged Length of Stay Prediction", "monitor API", "Example use cases"], "terms": {"cyclop": [0, 131, 132, 133, 134, 135], "data": [0, 2, 3, 24, 26, 27, 49, 50, 52, 54, 69, 72, 89, 95, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 130, 133, 134, 136], "slicer": [0, 131, 132, 133, 134, 135], "compound_filt": 0, "filter_datetim": 0, "filter_non_nul": 0, "filter_rang": 0, "filter_string_contain": 0, "filter_valu": [0, 133], "is_datetim": 0, "overal": [0, 7, 21, 121, 131, 132, 133, 135], "slicespec": [0, 17, 112, 124, 131, 132, 133, 134, 135], "spec_list": [0, 7, 131, 132, 133, 134, 135], "include_overal": [0, 7, 131], "valid": [0, 7, 9, 17, 121, 123, 124, 131, 132, 133], "column_nam": [0, 7, 9, 10, 11, 12, 13, 133], "_registri": [0, 7], "add_slice_spec": [0, 7], "get_slic": [0, 7], "slice": [0, 3, 7, 8, 17, 21, 121, 123, 124, 131, 132, 133, 135], "featur": [0, 7, 9, 10, 11, 12, 13, 15, 17, 112, 116, 117, 121, 123, 124, 130, 133, 137], "medical_imag": 0, "medicalimag": 0, "__call__": [0, 5, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "cast_storag": [0, 5], "decode_exampl": [0, 5], "embed_storag": [0, 5], "encode_exampl": [0, 5], "flatten": [0, 5, 131, 132, 133, 135], "task": [0, 2, 3, 24, 25, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 44, 47, 48, 49, 50, 51, 53, 54, 58, 60, 61, 62, 63, 66, 67, 68, 69, 78, 80, 81, 82, 83, 84, 85, 90, 92, 93, 94, 95, 98, 99, 100, 102, 103, 104, 105, 110, 130, 133, 137], "classif": [0, 3, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 44, 47, 48, 49, 50, 51, 53, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 78, 79, 80, 81, 82, 83, 84, 85, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 130, 131, 132, 135], "binarytabularclassificationtask": [0, 131, 132, 135], "__init__": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 124, 133], "add_model": [0, 123, 124], "data_typ": [0, 123, 124], "evalu": [0, 2, 3, 121, 123, 124, 130, 133, 137], "get_model": [0, 123, 124], "list_model": [0, 123, 124, 131, 132, 135], "list_models_param": [0, 123, 124, 131, 132, 135], "load_model": [0, 123, 124], "models_count": [0, 123, 124], "predict": [0, 3, 17, 19, 21, 24, 26, 27, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 67, 80, 81, 82, 84, 85, 87, 88, 89, 92, 93, 94, 98, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 124, 130, 133], "save_model": [0, 123, 124], "task_typ": [0, 123, 124, 131, 132, 135], "train": [0, 3, 17, 121, 123, 124, 130, 133, 136, 137], "multilabelimageclassificationtask": 0, "metric": [0, 17, 19, 21, 121, 123, 124, 130, 131, 132, 135, 137], "__add__": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "__mul__": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "add_stat": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "clone": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "comput": [0, 17, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 123, 124, 130, 133, 137], "name": [0, 3, 7, 8, 9, 10, 11, 12, 13, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 121, 123, 124, 131, 132, 133, 134, 135], "reset_st": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "update_st": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "metriccollect": [0, 17, 21, 123, 124, 131, 132, 135], "add_metr": [0, 75], "clear": [0, 75], "get": [0, 2, 75, 123, 124, 131, 132, 135], "item": [0, 75, 131, 132, 133, 134, 135], "kei": [0, 7, 17, 21, 75, 121, 131, 132, 133, 134, 135], "pop": [0, 75, 131, 132, 135], "popitem": [0, 75], "setdefault": [0, 75], "updat": [0, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 133, 134, 135], "valu": [0, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 121, 130, 132, 133, 134, 135, 137], "operatormetr": 0, "factori": [0, 7, 133], "create_metr": [0, 131, 132, 133, 135], "accuraci": [0, 131, 132, 135], "binaryaccuraci": [0, 131, 132, 135], "multiclassaccuraci": 0, "multilabelaccuraci": 0, "auroc": [0, 130, 131, 132, 135, 137], "binaryauroc": [0, 29, 131, 132, 135], "multiclassauroc": [0, 29], "multilabelauroc": [0, 29], "precision_recal": 0, "binaryprecis": [0, 131, 132, 135], "binaryrecal": [0, 97, 131, 132, 135], "multiclassprecis": 0, "multiclassrecal": [0, 98], "multilabelprecis": 0, "multilabelrecal": [0, 99], "precis": [0, 24, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 64, 66, 77, 78, 80, 82, 85, 86, 87, 88, 89, 90, 92, 100, 105, 131, 132, 133, 135], "recal": [0, 24, 38, 51, 55, 57, 59, 61, 64, 66, 77, 79, 81, 83, 86, 87, 88, 89, 90, 92, 97, 98, 99, 105, 131, 132, 133, 135], "precision_recall_curv": [0, 131, 132, 135], "binaryprecisionrecallcurv": [0, 30, 92, 131, 132, 135], "multiclassprecisionrecallcurv": [0, 31, 93], "multilabelprecisionrecallcurv": [0, 32, 94], "precisionrecallcurv": 0, "roc": [0, 28, 29, 30, 31, 32, 45, 131, 132, 135], "binaryroccurv": [0, 131, 132, 135], "multiclassroccurv": 0, "multilabelroccurv": 0, "roccurv": 0, "sensit": [0, 121, 130, 131, 132, 133, 135, 136], "binarysensit": 0, "multiclasssensit": 0, "multilabelsensit": [0, 133], "specif": [0, 7, 17, 115, 118, 123, 124, 131, 132, 133, 135], "binaryspecif": 0, "multiclassspecif": 0, "multilabelspecif": [0, 133], "f_beta": 0, "binaryf1scor": [0, 131, 132, 135], "binaryfbetascor": [0, 34], "f1score": 0, "fbetascor": [0, 36], "multiclassf1scor": 0, "multiclassfbetascor": [0, 38], "multilabelf1scor": 0, "multilabelfbetascor": [0, 40], "stat_scor": [0, 133, 135], "binarystatscor": [0, 25, 35, 78, 79, 102, 135], "multiclassstatscor": [0, 26, 39, 80, 81, 103], "multilabelstatscor": [0, 27, 41, 82, 83, 104, 133], "statscor": 0, "function": [0, 5, 6, 7, 8, 16, 17, 20, 21, 25, 35, 41, 42, 76, 93, 102, 104, 107, 109, 110, 113, 121, 131, 132, 133, 135], "binary_precis": 0, "binary_recal": 0, "multiclass_precis": 0, "multiclass_recal": 0, "multilabel_precis": 0, "multilabel_recal": 0, "binary_roc_curv": 0, "multiclass_roc_curv": 0, "multilabel_roc_curv": 0, "roc_curv": [0, 131, 132, 135], "binary_f1_scor": 0, "binary_fbeta_scor": 0, "f1_score": [0, 131, 132, 135], "fbeta_scor": 0, "multiclass_f1_scor": 0, "multiclass_fbeta_scor": 0, "multilabel_f1_scor": 0, "multilabel_fbeta_scor": 0, "fair": [0, 17, 121, 123, 124, 131, 132, 133, 135], "evaluate_fair": 0, "warn_too_many_unique_valu": 0, "config": [0, 123], "fairnessconfig": [0, 17, 123, 124, 131, 132, 135], "monitor": [0, 2, 3, 130, 131, 132, 134, 135], "clinical_appl": 0, "clinicalshiftappl": [0, 134], "ag": [0, 112, 130, 134, 137], "apply_shift": [0, 112, 114, 134], "custom": [0, 112, 121, 134], "hospital_typ": [0, 112], "month": [0, 7, 9, 112], "sex": [0, 112, 130, 132, 134, 135, 137], "time": [0, 3, 7, 75, 112, 121, 130, 132, 133, 135, 136, 137], "synthetic_appl": 0, "binary_noise_shift": 0, "feature_association_shift": 0, "feature_swap_shift": 0, "gaussian_noise_shift": 0, "knockout_shift": 0, "syntheticshiftappl": [0, 113], "report": [0, 2, 3, 110, 130, 137], "modelcardreport": [0, 131, 132, 133, 135], "export": [0, 121, 131, 132, 133, 135], "from_json_fil": [0, 121], "log_cit": [0, 121, 133], "log_dataset": [0, 121, 131], "log_descriptor": [0, 121, 131, 132, 133, 135], "log_fairness_assess": [0, 121, 131, 132, 133, 135], "log_from_dict": [0, 121, 131, 132, 133, 135], "log_imag": [0, 121], "log_licens": [0, 121, 131, 132, 135], "log_model_paramet": [0, 121, 131, 132, 135], "log_own": [0, 121, 131, 132, 133, 135], "log_performance_metr": [0, 121, 131, 132, 135], "log_plotly_figur": [0, 121, 131, 132, 133, 135], "log_quantitative_analysi": [0, 121, 131, 132, 133, 135], "log_refer": [0, 121, 131, 132, 135], "log_regul": [0, 121], "log_risk": [0, 121, 131, 132, 133, 135], "log_use_cas": [0, 121, 131, 132, 133, 135], "log_us": [0, 121, 131, 132, 133, 135], "log_vers": [0, 121, 131, 132, 135], "thank": 1, "your": [1, 131], "interest": [1, 131, 132, 135], "To": [1, 3, 5, 131, 135], "submit": 1, "pr": 1, "pleas": [1, 131, 132, 133, 134, 135], "fill": 1, "out": [1, 121, 131, 132, 135], "templat": [1, 121], "along": [1, 112, 131, 132, 133, 135], "If": [1, 5, 7, 9, 10, 11, 12, 13, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124, 131, 132, 135], "fix": 1, "an": [1, 3, 5, 7, 17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 51, 60, 61, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 131, 132, 133, 135, 137], "issu": [1, 21], "don": [1, 132], "t": [1, 3, 5, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 132], "forget": 1, "link": [1, 121, 131, 132, 133, 135], "onc": [1, 75, 131, 132, 135], "python": [1, 3, 132, 135], "virtual": [1, 3], "environ": [1, 3, 131, 132, 135], "i": [1, 3, 5, 7, 9, 10, 11, 12, 13, 14, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 131, 132, 133, 135, 137], "setup": [1, 132, 135], "you": [1, 3, 5, 75, 131, 132, 133, 135, 136], "can": [1, 3, 5, 7, 21, 25, 38, 51, 69, 74, 75, 84, 85, 95, 100, 110, 121, 123, 124, 131, 132, 133, 135, 136], "run": [1, 3, 131, 132, 135], "us": [1, 2, 5, 7, 8, 17, 21, 24, 29, 30, 31, 32, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 60, 61, 62, 63, 66, 67, 68, 69, 75, 76, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 98, 99, 100, 102, 105, 107, 110, 112, 114, 121, 123, 124, 130, 131, 132, 133, 135, 136], "all": [1, 7, 8, 9, 10, 11, 12, 13, 15, 63, 73, 75, 108, 109, 110, 123, 131, 132, 133, 134, 135], "file": [1, 5, 121, 131, 132, 133, 135], "For": [1, 21, 76, 121, 131, 132, 135], "style": 1, "we": [1, 3, 121, 131, 132, 133, 135], "recommend": [1, 76], "googl": 1, "guid": 1, "appli": [1, 8, 25, 29, 59, 62, 63, 66, 67, 68, 75, 76, 93, 104, 109, 110, 112, 123, 124, 131, 132, 135], "black": 1, "format": [1, 5, 7, 89, 121, 131, 132, 135], "docstr": 1, "numpi": [1, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 115, 116, 117, 118, 119, 124, 131, 132, 133, 134, 135], "also": [1, 3, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 133, 135, 137], "flake8": 1, "pylint": 1, "further": 1, "static": 1, "analysi": [1, 121, 131, 132, 133, 135], "The": [1, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 60, 61, 63, 66, 68, 69, 72, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 131, 132, 133, 135, 136, 137], "show": [1, 131, 132, 133, 135], "error": [1, 17, 21], "which": [1, 9, 10, 11, 12, 13, 21, 90, 121, 131, 132, 133, 135, 137], "need": [1, 17, 21, 74, 110, 131, 132, 135], "befor": [1, 17, 21, 22, 123, 131, 132, 135], "last": 1, "least": 1, "type": [1, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 72, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 130, 133, 137], "hint": 1, "our": [1, 131, 132, 135], "check": [1, 14, 89], "mypi": 1, "current": [1, 121, 131, 132, 135], "ar": [1, 5, 7, 11, 12, 17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 97, 98, 99, 100, 103, 104, 105, 108, 109, 110, 112, 116, 121, 131, 132, 133, 135], "strict": 1, "enforc": 1, "more": [1, 7, 16, 17, 123, 124, 131, 137], "api": [1, 2, 3, 130, 131, 137], "becom": 1, "stabl": [1, 131, 132, 133, 134, 135], "start": [2, 17, 131, 132, 135], "instal": [2, 131], "pip": [2, 131], "develop": [2, 131, 132, 133, 135], "poetri": [2, 131, 132, 133, 134, 135], "contribut": 2, "notebook": [2, 131, 132, 133, 135], "citat": [2, 121, 131, 132, 133, 135], "pre": [2, 131, 132, 135], "commit": 2, "hook": 2, "code": [2, 131, 132, 135], "guidelin": [2, 3], "tutori": [2, 131, 136, 137], "exampl": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 15, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 130, 131, 132, 133, 135, 136], "case": [2, 3, 75, 115, 121, 130, 131, 132, 135, 136], "refer": [2, 3, 121, 131, 132, 133, 135], "toolkit": 3, "facilit": 3, "research": 3, "deploy": 3, "ml": [3, 131, 132, 135], "model": [3, 16, 17, 21, 121, 123, 124, 130, 136, 137], "healthcar": 3, "It": [3, 38, 51, 75, 84, 85, 100, 105, 136], "provid": [3, 7, 9, 12, 17, 21, 69, 110, 121, 131, 132, 133, 135], "few": 3, "high": [3, 131, 132, 133, 135], "level": [3, 21, 131, 132, 133, 135], "creat": [3, 6, 7, 21, 42, 43, 75, 84, 85, 100, 115, 118, 119, 121, 123, 124, 130, 133, 137], "dataset": [3, 6, 7, 16, 17, 19, 21, 26, 38, 39, 51, 52, 58, 61, 68, 69, 80, 81, 83, 88, 89, 90, 94, 95, 98, 99, 103, 104, 112, 114, 121, 123, 124, 125, 130, 136, 137], "infer": [3, 17], "popular": [3, 131], "effici": 3, "load": [3, 17, 121, 123, 124, 130, 132, 135, 136, 137], "differ": [3, 24, 29, 36, 37, 46, 55, 62, 63, 64, 69, 70, 72, 74, 84, 85, 90, 95, 100, 105, 110, 130, 131, 132, 133, 135, 136], "modal": 3, "common": [3, 131, 132], "implement": [3, 137], "scikit": [3, 131], "learn": [3, 131, 133], "pytorch": 3, "formul": [3, 131, 132, 135], "binari": [3, 5, 24, 25, 29, 30, 34, 35, 36, 37, 47, 48, 49, 50, 56, 57, 60, 61, 62, 63, 66, 69, 72, 78, 79, 84, 85, 87, 90, 92, 95, 97, 100, 102, 104, 105, 107, 110, 115, 123, 124, 131, 132, 135, 137], "multi": [3, 133], "label": [3, 24, 25, 27, 29, 32, 34, 35, 36, 37, 40, 41, 47, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 68, 69, 78, 79, 81, 82, 83, 84, 85, 87, 89, 90, 92, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 109, 110, 116, 117, 119, 123, 124, 130, 131, 133, 137], "tabular": [3, 123, 124, 130], "seri": [3, 123], "imag": [3, 4, 5, 17, 21, 118, 121, 124, 125, 130, 133, 134], "clinic": [3, 111, 112, 130, 136], "detect": [3, 133, 136], "shift": [3, 111, 112, 114, 116, 117, 130, 136], "relev": [3, 121, 131, 132, 135, 136], "card": [3, 121, 130, 131, 132, 135, 137], "end": [3, 131, 132, 133, 135], "nih": [3, 130, 133, 134], "chest": [3, 130], "x": [3, 114, 115, 116, 117, 118, 119, 123, 130, 131, 132, 134, 135], "rai": [3, 130], "mimic": 3, "iv": 3, "python3": [3, 131, 132, 133, 134, 135], "m": [3, 131, 132, 133, 134, 135], "pycyclop": [3, 131, 132, 133, 134, 135], "base": [3, 5, 7, 17, 19, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 130, 131, 137], "doesn": [3, 5], "includ": [3, 7, 11, 21, 72, 112, 114, 131, 132, 133, 135, 136, 137], "packag": [3, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135], "addit": [3, 75, 121, 123, 124, 131, 132, 133, 135], "depend": 3, "set": [3, 7, 17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 131, 132, 133, 135], "up": [3, 131, 132, 133, 135], "henc": 3, "make": [3, 131, 132, 135], "sure": [3, 131], "sourc": [3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 130, 136], "env": 3, "info": [3, 131, 132, 135], "path": [3, 5, 112, 121, 123, 124, 131, 132, 135], "bin": [3, 21], "activ": [3, 135], "In": [3, 75, 131, 132, 135], "order": [3, 5, 17, 107, 108, 109], "test": [3, 17, 121, 123, 124, 130, 131, 132, 135, 136, 137], "codestyl": 3, "unit": 3, "integr": [3, 131], "built": 3, "sphinx": 3, "local": 3, "doc": 3, "cd": 3, "html": [3, 121, 131, 132, 133, 134, 135], "sphinxopt": 3, "d": [3, 75, 112, 133], "nbsphinx_allow_error": 3, "true": [3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 24, 26, 27, 31, 32, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 107, 108, 109, 110, 112, 114, 116, 121, 123, 124, 131, 132, 133, 134, 135], "welcom": 3, "see": [3, 7, 121, 131, 132, 133, 134, 135], "jupyt": [3, 131, 132, 133, 134, 135], "insid": 3, "ipython": 3, "kernel": 3, "after": [3, 17, 131, 132, 135], "ipykernel": 3, "user": [3, 121, 131, 132, 135], "name_of_kernel": 3, "now": 3, "navig": 3, "": [3, 7, 10, 14, 17, 21, 75, 121, 123, 124, 131, 132, 133, 134, 135], "tab": [3, 131], "cite": 3, "when": [3, 5, 17, 21, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 75, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105, 123, 124, 131, 132, 135], "project": 3, "paper": 3, "articl": 3, "krishnan2022": 3, "12": [3, 7, 131, 132, 133, 135], "02": [3, 69, 131, 133], "22283021": 3, "author": [3, 131, 133], "krishnan": 3, "amrit": 3, "subasri": 3, "vallijah": 3, "mckeen": 3, "kaden": 3, "kore": 3, "ali": 3, "ogidi": 3, "franklin": 3, "alinoori": 3, "mahshid": 3, "lalani": 3, "nadim": 3, "dhalla": 3, "azra": 3, "verma": 3, "amol": 3, "razak": 3, "fahad": 3, "pandya": 3, "deval": 3, "dolatabadi": 3, "elham": 3, "titl": [3, 131, 132, 133, 135], "cyclic": 3, "toward": 3, "operation": 3, "health": [3, 131, 132, 135], "eloc": 3, "id": [3, 5, 112, 131, 133, 135], "2022": [3, 7, 131, 132, 133, 135], "year": [3, 7, 9, 131, 132, 133, 135], "doi": 3, "10": [3, 131, 132, 133, 134, 135], "1101": 3, "publish": [3, 131], "cold": 3, "spring": 3, "harbor": 3, "laboratori": [3, 135], "press": 3, "url": [3, 133], "http": [3, 121, 131, 132, 133, 134, 135], "www": [3, 131], "medrxiv": 3, "org": [3, 121, 131, 132, 133, 135], "content": [3, 121], "earli": 3, "08": [3, 133, 134], "journal": 3, "medic": [4, 5, 125, 133, 135, 137], "class": [4, 5, 6, 7, 17, 18, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 69, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 119, 120, 121, 122, 123, 124, 131, 132, 133, 135], "decod": [5, 133], "none": [5, 7, 9, 17, 19, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 121, 123, 124, 131, 132, 133, 134, 135], "reader": 5, "itkread": 5, "suffix": 5, "jpg": 5, "read": [5, 17], "paramet": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 131, 132, 133, 135], "union": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124], "str": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 131, 132, 135], "imageread": 5, "option": [5, 7, 9, 10, 11, 12, 13, 17, 21, 24, 27, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 69, 75, 80, 81, 82, 83, 84, 85, 90, 95, 98, 99, 100, 103, 104, 105, 108, 112, 114, 121, 123, 124, 133], "default": [5, 7, 9, 10, 11, 12, 13, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 121, 123, 124, 131, 132, 135], "monai": 5, "byte": 5, "bool": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 75, 76, 108, 109, 110, 112, 116, 117, 121, 123, 124, 131, 132, 133, 135], "whether": [5, 7, 17, 21, 75, 108, 109, 110, 112, 121, 132, 135, 137], "fals": [5, 7, 9, 10, 11, 12, 13, 14, 17, 19, 21, 29, 30, 40, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 75, 80, 81, 82, 83, 84, 85, 98, 99, 100, 105, 107, 108, 109, 110, 117, 118, 123, 124, 131, 132, 133, 135], "return": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 132, 133, 135], "dictionari": [5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 75, 121, 123, 124, 131, 132, 135], "image_path": 5, "image_byt": 5, "method": [5, 7, 19, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 123, 124, 131, 132, 135], "attribut": [5, 7, 19, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 124, 131, 132, 135], "call": [5, 121], "self": [5, 133], "storag": 5, "cast": [5, 131, 132, 135], "arrow": 5, "arrai": [5, 24, 26, 27, 29, 30, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 60, 61, 63, 66, 67, 68, 69, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 98, 99, 100, 103, 104, 105, 107, 108, 109, 110, 116, 117, 119, 124, 133, 135], "convert": [5, 25, 35, 41, 48, 61, 69, 95, 102, 104, 107, 131, 132, 135], "pyarrow": 5, "rtype": 5, "structarrai": 5, "pa": 5, "string": [5, 7, 9, 12, 17, 21, 75, 121, 133], "must": [5, 9, 17, 21, 121], "contain": [5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 27, 103, 104, 121, 131, 132, 133, 135, 137], "struct": 5, "matter": 5, "list": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 66, 67, 68, 69, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 115, 116, 117, 118, 119, 121, 123, 124, 131, 132, 135], "arg": [5, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "stringarrai": 5, "listarrai": 5, "token_per_repo_id": 5, "from": [5, 7, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 119, 121, 123, 124, 131, 132, 133, 134, 135, 137], "serial": 5, "version": [5, 121, 131, 132, 133, 135], "dict": [5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 22, 75, 121, 123, 124], "access": 5, "privat": 5, "repositori": [5, 131], "hub": 5, "pass": [5, 17, 43, 75, 112, 121, 123, 124, 131, 132, 135], "repo_id": 5, "token": [5, 131], "deseri": 5, "np": [5, 11, 14, 21, 123, 124, 131, 132, 133, 134, 135], "ndarrai": [5, 14, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 115, 116, 117, 118, 119, 123, 124], "metadata": [5, 131, 132, 133, 135], "emb": 5, "encod": 5, "input": [5, 24, 46, 55, 60, 61, 64, 69, 70, 72, 87, 89, 95, 115, 118, 123, 124], "state": [5, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 133], "itself": 5, "otherwis": [5, 14, 24, 27, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 67, 68, 75, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 108, 109, 110], "tupl": [5, 7, 66, 67, 68, 69, 75, 87, 88, 89, 92, 93, 94, 112, 123, 124], "classlabel": [5, 131, 132, 135], "translat": 5, "translationvariablelanguag": 5, "sequenc": [5, 17, 75, 123, 124, 133], "array2d": 5, "array3d": 5, "array4d": 5, "array5d": 5, "audio": 5, "subset": 6, "hug": [6, 123, 124, 130, 137], "face": [6, 123, 124, 130, 137], "object": [7, 19, 21, 112, 114, 121, 123, 124, 131, 132, 135], "ani": [7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 66, 67, 68, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124, 131, 132, 133, 135], "A": [7, 8, 9, 10, 11, 12, 13, 15, 17, 21, 22, 25, 75, 76, 104, 109, 121, 131, 132, 133, 135], "each": [7, 8, 17, 21, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 67, 68, 69, 75, 76, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 108, 109, 110, 131, 132, 135], "map": [7, 8, 22, 75, 123, 124, 131, 132, 133, 135], "column": [7, 8, 9, 10, 11, 12, 13, 17, 21, 112, 123, 124, 131, 132, 133, 135], "one": [7, 16, 17, 21, 24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 67, 68, 69, 76, 80, 81, 82, 83, 84, 85, 95, 98, 99, 100, 105, 123, 124], "follow": [7, 17, 24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 60, 61, 75, 80, 81, 82, 83, 84, 85, 98, 99, 100, 105, 121, 131, 132, 133, 135], "exact": [7, 13], "select": [7, 112, 116, 131, 132, 133, 135], "thi": [7, 17, 21, 24, 25, 26, 27, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105, 110, 121, 123, 131, 132, 133, 135, 137], "singl": [7, 75, 121, 123, 124, 131, 132, 135, 137], "row": [7, 131, 133], "where": [7, 8, 9, 10, 11, 12, 13, 60, 61, 63, 75, 121, 123, 124, 131, 132, 135, 137], "support": [7, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 72, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 107, 108, 109, 136], "e": [7, 9, 10, 17, 21, 75, 116, 117, 118, 121, 131, 132, 135], "g": [7, 9, 17, 21, 116, 117, 118, 121, 131, 132, 135], "2021": [7, 131, 132, 135], "01": [7, 29, 31, 32, 131, 132, 135], "00": [7, 131, 132, 133, 134, 135], "min_valu": [7, 11, 131, 132, 133, 134, 135], "minimum": [7, 11], "specifi": [7, 17, 75, 112, 121, 123, 124, 131, 132, 135], "min_inclus": [7, 11, 131, 132, 135], "indic": [7, 21, 27, 60, 61, 115, 118, 131, 132, 133, 135], "rang": [7, 11, 29, 30, 66, 67, 68, 93, 131, 132, 133, 135], "work": [7, 27, 103, 104, 121, 131, 132, 133, 135], "numer": [7, 11, 131, 132, 135], "datetim": [7, 9, 11, 14, 121, 131, 132, 135], "inf": [7, 11, 131, 132, 135], "max_valu": [7, 11, 131, 132, 133, 134, 135], "boolean": [7, 8, 9, 10, 11, 12, 13, 15], "greater": [7, 22, 135], "than": [7, 11, 22, 48, 52, 54, 123, 124, 131, 132, 135, 137], "equal": [7, 11, 21], "maximum": [7, 11, 22, 29, 30], "max_inclus": [7, 11, 131, 132, 135], "less": [7, 11, 48, 52, 54, 132, 135], "match": [7, 9, 12, 13, 17], "between": [7, 21, 38, 51, 69, 95], "1": [7, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 116, 117, 118, 119, 121, 130, 131, 132, 133, 135, 136, 137], "dai": [7, 9, 132, 135, 137], "31": [7, 131, 132, 135], "hour": [7, 9, 132], "0": [7, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 114, 115, 116, 117, 118, 119, 121, 131, 132, 133, 134, 135], "23": [7, 131, 132, 135], "negat": [7, 9, 10, 11, 12, 13, 133], "flag": [7, 132], "doe": [7, 9, 11, 12, 13, 17, 21, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 74, 75, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 110, 121], "keep_nul": [7, 9, 11, 12, 13], "keep": [7, 17, 21, 135], "null": [7, 9, 10, 11, 12, 13, 132, 135], "conjunct": [7, 133], "its": [7, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 60, 61, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 133, 135], "own": [7, 131, 132, 135], "callabl": [7, 8, 17, 21, 76, 121], "import": [7, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 114, 121, 130, 136, 137], "slice_spec": [7, 17, 123, 124, 131, 132, 133, 135], "feature_1": 7, "feature_2": 7, "feature_3": 7, "value_1": 7, "value_2": 7, "2020": [7, 9, 133], "5": [7, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 114, 115, 118, 119, 130, 131, 132, 133, 135, 136], "60": 7, "6": [7, 24, 26, 35, 36, 38, 39, 49, 56, 59, 62, 63, 78, 79, 80, 81, 83, 84, 85, 87, 88, 90, 92, 93, 95, 97, 98, 99, 100, 104, 107, 108, 110, 131, 132, 133, 134, 135], "7": [7, 29, 30, 31, 36, 39, 40, 69, 80, 81, 82, 84, 85, 87, 88, 89, 93, 98, 100, 105, 108, 109, 110, 131, 132, 133, 135, 137], "8": [7, 24, 26, 27, 29, 30, 31, 34, 35, 36, 37, 38, 40, 41, 47, 49, 50, 53, 54, 56, 59, 60, 62, 66, 68, 69, 78, 79, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 105, 107, 109, 110, 131, 132, 133, 135], "2000": 7, "2010": 7, "slice_nam": [7, 121, 131, 132, 135], "slice_func": 7, "print": [7, 131, 132, 133, 135], "do": [7, 17, 131, 132, 133, 135], "someth": 7, "here": [7, 131, 132, 135], "filter": [7, 9, 10, 11, 12, 13, 17, 21, 131, 132, 133, 134, 135], "add": [7, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124, 131, 132, 135], "detail": [7, 131, 132, 133, 135], "registri": [7, 131, 132, 135], "gener": [7, 69, 95, 112, 121, 130, 136, 137], "slice_funct": 8, "combin": [8, 131], "result": [8, 17, 38, 51, 123, 124, 131, 132, 134, 135], "multipl": [8, 17, 21, 75, 121], "bitwis": 8, "AND": 8, "signatur": 8, "should": [8, 21, 69, 76, 95, 117, 121, 123, 124, 131, 132, 133, 135], "kwarg": [8, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 114, 123, 124], "given": [9, 11, 12, 13, 14, 24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 75, 80, 81, 82, 84, 85, 98, 100, 105, 108, 109, 110, 121, 123, 124], "int": [9, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 116, 117, 118, 119, 121, 123, 124, 131, 132, 133, 135], "compon": 9, "have": [9, 12, 13, 17, 114, 131, 132, 137], "nan": [9, 10, 17, 21, 130, 137], "nat": 9, "rais": [9, 11, 12, 17, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 69, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124], "typeerror": [9, 11, 12, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121], "float": [11, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 109, 110, 115, 116, 117, 118, 119, 121, 133], "valueerror": [11, 17, 21, 48, 50, 52, 54, 58, 59, 60, 61, 62, 63, 69, 121, 123, 124], "either": [11, 30, 31, 32, 75, 87, 88, 89, 92, 93, 94, 110, 121, 131, 132, 135], "substr": 12, "ha": [13, 75, 121, 131, 132, 133, 135], "find": [13, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 123, 133], "perform": [13, 26, 27, 31, 32, 121, 130, 132, 135, 136, 137], "datetime64": 14, "target_column": [17, 19, 21, 131, 132, 133, 135], "feature_column": [17, 133, 134], "prediction_column_prefix": [17, 123, 124, 131, 132, 133, 135], "remove_column": [17, 19, 21, 123, 124, 133], "transform": [17, 66, 67, 68, 93, 123, 124, 131, 132, 133, 134, 135], "split": [17, 112, 121, 123, 124, 131, 132, 133, 135], "batch_siz": [17, 19, 21, 112, 123, 124, 131, 132, 135], "1000": [17, 19, 21, 112, 123, 131, 133], "raise_on_empty_slic": [17, 21], "fairness_config": [17, 123, 124, 131, 132, 135], "override_fairness_metr": [17, 123, 124, 131, 132, 135], "load_dataset_kwarg": 17, "datasetdict": [17, 123, 124], "load_dataset": 17, "argument": [17, 21, 43, 75, 123, 124, 131, 132, 135], "target": [17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 116, 117, 123, 124, 130, 131, 132, 135, 136, 137], "prefix": [17, 75], "ad": [17, 114, 121, 123, 124, 131, 132, 135], "model_nam": [17, 123, 124, 131, 132, 133, 134, 135], "remov": [17, 21, 75, 119, 123, 124, 131, 132, 133, 135], "mai": [17, 21, 131, 132, 133, 135], "expens": [17, 21], "memori": [17, 21], "wrappedmodel": [17, 123, 124], "entir": [17, 131, 132, 135], "being": 17, "note": [17, 121, 131, 132, 135], "chosen": 17, "avail": [17, 121, 131, 132, 135, 137], "first": [17, 21, 25, 76, 104, 131, 132, 135], "eval": 17, "val": 17, "dev": 17, "batch": [17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 123, 124, 132, 133], "size": [17, 21, 112, 123, 124, 131, 132, 133, 135], "neg": [17, 35, 48, 49, 50, 51, 52, 53, 54, 59, 61, 62, 63, 72, 81, 83, 85, 98, 99, 100, 105, 107, 108, 109, 133, 135], "integ": [17, 21, 121], "empti": [17, 21, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "warn": [17, 22, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 102, 103, 104, 105], "log": [17, 121, 130, 131, 132, 135, 137], "configur": [17, 18, 19, 123, 124, 131, 132, 135], "overridden": [17, 123, 124], "prediction_column": [17, 19, 21], "keyword": [17, 21, 43, 75, 123, 124], "onli": [17, 21, 24, 27, 29, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 62, 63, 75, 80, 81, 82, 84, 85, 98, 100, 103, 104, 105, 108, 109, 110], "found": [17, 75, 121, 131, 132, 133, 134, 135], "group": [19, 21, 22, 75, 121, 131, 132, 135], "group_valu": [19, 21], "group_bin": [19, 21, 131, 132, 135], "group_base_valu": [19, 21, 131, 132, 135], "threshold": [19, 21, 24, 25, 27, 29, 30, 31, 32, 34, 35, 36, 37, 40, 41, 47, 48, 49, 50, 53, 54, 56, 57, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 102, 104, 105, 107, 109, 110, 121, 130, 131, 132, 135, 137], "compute_optimal_threshold": [19, 21], "metric_nam": [19, 21, 43, 121, 131, 132, 133, 135], "metric_kwarg": [19, 21], "take": [21, 24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 112, 131], "allow": [21, 22, 131, 132, 135, 136], "intersect": 21, "treat": 21, "multilabel": [21, 24, 27, 29, 32, 36, 37, 40, 41, 49, 50, 53, 54, 60, 61, 62, 63, 68, 69, 72, 82, 83, 84, 85, 89, 90, 94, 95, 99, 100, 104, 105, 109, 110, 130, 137], "same": [21, 75, 116], "uniqu": [21, 22, 29, 30, 31, 32, 66, 67, 68, 69, 74, 87, 88, 89, 92, 93, 94, 95, 110, 133, 137], "limit": [21, 131, 132, 133, 135], "number": [21, 22, 24, 26, 27, 29, 30, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 75, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 98, 99, 100, 103, 104, 105, 108, 110, 112, 116, 117, 121, 123, 124, 132, 135, 136], "continu": [21, 131, 132, 133, 135], "veri": 21, "slow": 21, "larg": 21, "denomin": 21, "pariti": 21, "across": [21, 116, 136], "linspac": 21, "monoton": [21, 69, 95], "optim": [21, 131], "oper": [21, 65, 76, 131, 132, 135], "necessari": 21, "control": [21, 115], "usag": [21, 131, 132, 135], "rel": 21, "small": 21, "32": [21, 131, 132, 133, 135], "avoid": 21, "encount": [21, 132, 135], "nest": 21, "second": [21, 76], "third": 21, "omit": 21, "requir": [21, 24, 29, 36, 37, 49, 50, 69, 84, 85, 90, 95, 100, 105, 110, 121, 123, 124, 131, 132, 135], "huggingfac": [21, 112, 123, 124], "runtimeerror": 21, "unique_valu": 22, "max_unique_valu": 22, "50": [22, 131, 132, 134, 135], "score": [24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 70, 72, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 133], "liter": [24, 25, 26, 27, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 69, 78, 79, 80, 81, 82, 83, 84, 85, 90, 95, 97, 98, 99, 100, 103, 104, 105, 110, 121], "multiclass": [24, 26, 29, 31, 36, 37, 38, 39, 49, 50, 51, 52, 58, 59, 62, 63, 67, 69, 72, 80, 81, 84, 85, 88, 90, 93, 95, 98, 100, 103, 105, 108, 110], "One": [24, 29, 31, 32, 35, 48, 59, 62, 63, 69, 95, 132, 133, 135], "pos_label": [24, 25, 30, 34, 35, 36, 37, 47, 48, 49, 50, 56, 57, 62, 63, 66, 69, 78, 79, 84, 85, 87, 90, 92, 95, 97, 100, 102, 105, 107, 110], "consid": [24, 26, 27, 36, 37, 49, 50, 62, 63, 84, 85, 90, 95, 100, 103, 104, 105, 132], "posit": [24, 25, 29, 30, 34, 35, 36, 37, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 90, 92, 95, 97, 98, 99, 100, 102, 105, 107, 108, 109, 110, 131, 132, 133, 135], "num_class": [24, 26, 29, 31, 36, 37, 38, 39, 49, 50, 51, 52, 58, 59, 61, 62, 63, 67, 69, 80, 81, 84, 85, 88, 90, 93, 95, 98, 100, 103, 105, 108, 110, 131, 132, 135], "decid": [24, 36, 37, 40, 41, 49, 50, 53, 54, 56, 57, 60, 61, 78, 79, 82, 83, 84, 85, 97, 99, 100, 105], "top_k": [24, 26, 27, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 108, 109, 110, 133], "probabl": [24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 72, 80, 81, 82, 84, 85, 93, 98, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 131, 135], "logit": [24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 72, 80, 81, 82, 84, 85, 98, 100, 102, 103, 104, 105, 107, 108, 109, 110], "top": [24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 80, 81, 82, 84, 85, 98, 100, 105, 108, 109, 110], "k": [24, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 75, 80, 81, 82, 84, 85, 98, 100, 105, 108, 109, 110, 134], "num_label": [24, 27, 29, 32, 36, 37, 40, 41, 49, 50, 53, 54, 60, 61, 62, 63, 68, 69, 82, 83, 84, 85, 89, 90, 94, 95, 99, 100, 104, 105, 109, 110, 133], "averag": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 131], "micro": [24, 26, 27, 29, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105], "macro": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105], "weight": [24, 26, 27, 29, 31, 32, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 133, 134, 135], "calcul": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105], "global": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "unweight": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105], "mean": [24, 26, 27, 29, 31, 32, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 131, 132, 133, 135], "imbal": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 119], "account": [24, 26, 27, 29, 31, 32, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 131, 133], "instanc": [24, 26, 27, 31, 32, 36, 37, 38, 39, 40, 41, 43, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 103, 104, 105, 131, 132, 133, 135], "alter": [24, 26, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 105], "zero_divis": [24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 102, 103, 104, 105], "zero": [24, 25, 26, 27, 34, 36, 37, 38, 39, 40, 41, 47, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105], "divis": [24, 25, 26, 27, 34, 36, 37, 38, 39, 40, 41, 47, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105], "act": [24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 78, 79, 80, 81, 82, 83, 84, 85, 97, 98, 99, 100, 103, 104, 105], "pred": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 135], "75": [24, 25, 29, 30, 66, 67, 68, 90, 92, 95, 103, 104, 105, 131, 133, 135], "05": [24, 26, 27, 29, 31, 32, 36, 38, 39, 40, 49, 53, 62, 67, 68, 69, 80, 81, 84, 85, 88, 90, 93, 94, 95, 98, 100, 103, 104, 105, 108, 110, 131, 133], "95": [24, 26, 27, 36, 38, 49, 62, 69, 88, 90, 93, 94, 95], "p": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 115, 133], "zip": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "2": [24, 26, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 75, 78, 79, 80, 81, 82, 83, 84, 85, 88, 89, 90, 92, 93, 95, 97, 98, 99, 100, 103, 104, 105, 107, 108, 109, 110, 116, 117, 121, 130, 131, 132, 133, 135, 136], "3": [24, 26, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 47, 49, 50, 51, 52, 53, 56, 58, 59, 61, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 103, 104, 105, 107, 108, 109, 110, 116, 117, 130, 131, 132, 133, 135, 136], "66666667": [24, 26, 36, 38, 49, 51, 61, 63, 81, 85, 87, 88, 90, 93, 94, 95, 98, 100, 104], "initi": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 123, 124, 130, 131, 132, 135, 137], "other": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131], "two": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "scalar": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "togeth": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "multipli": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "variabl": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 137], "attributeerror": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "alreadi": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 135], "exist": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 121, 123, 124], "copi": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 131, 132, 133, 135], "abstract": [24, 29, 36, 37, 73, 74, 84, 85, 90, 95, 100, 105, 110], "final": [24, 29, 36, 37, 74, 84, 85, 90, 95, 100, 105, 110, 132, 133, 135], "reset": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "_update_count": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "_comput": [24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110], "sigmoid": [25, 35, 41, 66, 68, 69, 102, 104, 107, 109, 110], "them": [25, 104, 131, 132, 135, 136], "875": 25, "problem": [26, 88, 108, 109, 110, 137], "highest": [26, 27, 62, 63, 103, 104], "determin": [26, 27, 29, 30, 31, 32, 66, 67, 68, 87, 88, 89, 90, 92, 93, 94], "dtype": [26, 27, 31, 32, 38, 39, 40, 41, 66, 67, 68, 69, 80, 81, 82, 83, 87, 88, 89, 92, 93, 94, 98, 99, 103, 104, 115, 116, 117, 118, 119, 131, 133], "float64": [26, 27, 31, 32, 38, 39, 40, 41, 66, 67, 68, 69, 80, 81, 82, 83, 87, 88, 89, 92, 93, 94, 98, 99, 103, 104, 115, 116, 117, 118, 119, 133], "binar": [27, 29, 30, 31, 32, 34, 47, 67, 68, 93, 94, 109, 110], "output": [27, 69, 121, 131, 132, 135], "classifi": [27, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 102, 131, 132, 135], "correct": [27, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 93, 102, 103, 104], "per": [27, 75, 132, 135], "area": [28, 29, 30, 31, 32, 45, 131, 132, 135], "under": [28, 29, 30, 31, 32, 45, 131, 132, 135], "curv": [28, 29, 30, 31, 32, 45, 64, 65, 66, 67, 68, 69, 86, 87, 88, 89, 90, 92, 93, 94, 95, 131, 132, 135], "max_fpr": [29, 30], "rate": [29, 30, 66, 67, 68, 69, 131, 132, 133, 135], "partial": [29, 30, 133], "auc": 29, "automat": [29, 30, 31, 32, 66, 67, 68, 87, 88, 89, 90, 92, 93, 94], "applic": [29, 111, 112, 114], "4": [29, 30, 34, 35, 36, 37, 40, 47, 50, 59, 63, 69, 82, 83, 84, 85, 87, 88, 90, 92, 93, 94, 95, 99, 100, 105, 107, 108, 109, 110, 130, 131, 132, 133, 135, 136], "35": [29, 30, 69, 87, 92, 95, 103, 104, 105, 131, 132, 133, 134, 135], "9": [29, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 49, 50, 53, 54, 56, 60, 62, 63, 66, 67, 68, 69, 78, 79, 80, 81, 82, 83, 84, 85, 89, 90, 93, 94, 95, 97, 98, 99, 100, 103, 104, 105, 107, 109, 110, 131, 132, 133, 135], "6111111111111112": [29, 30], "89": [29, 31, 32, 69, 133], "06": [29, 31, 69, 133], "94": [29, 31, 133], "22222222": [29, 31], "625": [29, 32, 35, 103], "aucroc": 30, "confus": [30, 31, 32, 87, 88, 89, 92, 93, 94, 135], "matrix": [30, 31, 32, 87, 88, 89, 92, 93, 94, 115, 116, 117, 118, 119, 135], "f": [33, 35, 37, 38, 39, 41, 46, 48, 50, 51, 52, 54, 75, 131, 132, 133, 134, 135], "beta": [33, 35, 37, 39, 41, 46, 48, 50, 52, 54], "f1": [34, 36, 38, 40, 46, 47, 49, 51, 53], "form": [34, 47, 131, 132, 135], "6666666666666666": [34, 36, 47, 56, 78, 84], "harmon": [35, 37, 39, 41, 48, 50, 52, 54, 131, 132, 135], "8333333333333334": [35, 37, 50, 59, 62], "85714286": [36, 38], "9090909090909091": 37, "83333333": [37, 41, 50, 54], "55555556": [37, 50, 103], "90909091": [37, 39, 41], "85": [39, 80, 81, 84, 85, 98, 100, 131, 135], "total": [40, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 108, 132, 135], "count": [40, 49, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 63, 80, 81, 82, 83, 84, 85, 98, 99, 100, 131, 132, 133, 135], "predicit": 41, "constructor": 43, "arraylik": [47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 76, 93, 102], "ground": [47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 93, 102], "truth": [47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 93, 102], "npt": [48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63], "7142857142857143": 48, "estim": [49, 50, 66, 67, 68, 69, 93, 102, 123], "shape": [49, 50, 51, 52, 53, 54, 60, 61, 108, 109, 133, 134], "expect": [60, 61, 131, 132, 135], "like": [60, 61, 75, 131], "n": [60, 61, 131, 132, 133], "l": [60, 61], "sampl": [60, 61, 63, 119], "presenc": [60, 61, 133], "absenc": [60, 61], "rest": 61, "ratio": [62, 63, 105, 135], "correctli": [62, 131, 132, 133, 135], "observ": [62, 131, 135, 137], "precision_scor": 62, "tp": [63, 107, 108, 109, 133, 135], "fn": [63, 107, 108, 109, 133, 135], "intuit": 63, "abil": [63, 131, 132, 135], "recall_scor": 63, "3333333333333333": 63, "receiv": [65, 131, 132, 135], "characterist": [65, 131, 132, 135], "decis": [66, 67, 68, 69, 93, 121, 131, 132, 135], "fpr": [66, 67, 68, 69, 131, 132, 135], "tpr": [66, 67, 68, 69], "25": [66, 67, 68, 88, 90, 92, 93, 95, 105, 116, 117, 131, 132, 133, 134, 135], "softmax": [67, 69, 93], "1d": [67, 68, 69, 95], "33333333": [67, 85, 88, 90, 93, 94, 95, 100], "non": 69, "thei": 69, "evenli": [69, 95], "space": [69, 95], "increas": [69, 95], "assertionerror": [69, 121], "03": [69, 132, 133], "stat": [72, 106, 107, 108, 109, 110], "abc": 74, "properti": [74, 110, 123, 124], "other_metr": 75, "postfix": 75, "userdict": 75, "collect": [75, 131, 137], "want": 75, "behav": 75, "themselv": 75, "intern": 75, "similar": 75, "reduc": 75, "els": [75, 133, 134], "keep_bas": 75, "iter": 75, "underli": 75, "moduledict": 75, "hashabl": 75, "v": 75, "correspond": [75, 123, 124], "keyerror": [75, 121], "some": [75, 131, 132, 135], "pair": 75, "present": 75, "lack": 75, "metric_a": 76, "metric_b": 76, "metric1": 76, "metric2": 76, "unari": 76, "appropri": [84, 85, 100, 131, 132, 135], "375": [88, 90], "suniqu": 90, "45": [90, 105, 131, 132, 133, 135], "42857143": 90, "15": [103, 104, 105, 131, 132, 135], "57142857": 103, "sum": [105, 108, 109, 110, 132, 133, 135], "_abstractscor": [107, 108, 109], "fp": [107, 108, 109, 133, 135], "tn": [107, 108, 109, 133, 135], "classwis": [108, 110], "over": [108, 109, 110, 130, 132, 133, 135, 137], "labelwis": [109, 110, 133], "prior": [110, 131], "modul": [111, 120, 121, 131, 132, 135], "shift_typ": [112, 114], "shift_id": [112, 134], "induc": [112, 114], "synthet": [112, 114, 121, 130, 135, 136, 137], "categor": [112, 131, 132, 135], "origin": 112, "util": [112, 131, 132, 133, 135], "load_nih": 112, "mnt": [112, 131, 132, 133, 134, 135], "nihcxr": [112, 130, 133, 136], "hospital_type_1": 112, "hospital_type_2": 112, "hospital_type_3": 112, "hospital_type_4": 112, "hospital_type_5": 112, "ds_sourc": [112, 134], "ds_target": [112, 134], "num_proc": [112, 134], "process": [112, 130, 131, 133, 135, 137], "build": 112, "hospit": [112, 131, 132, 135, 137], "drift_detect": 114, "experiment": 114, "sklearn": [114, 131, 132, 135], "load_diabet": 114, "y": [114, 116, 117, 119, 123, 131, 132, 133, 135], "return_x_i": 114, "x_tr": 114, "x_te": 114, "y_tr": 114, "y_te": 114, "train_test_split": [114, 131, 132, 135], "test_siz": 114, "random_st": [114, 131, 132, 135], "42": [114, 131, 132, 134, 135], "gn_shift": 114, "x_shift": 114, "x_train": [114, 123], "noise_amt": [114, 118], "delta": [114, 115, 118, 119], "ko_shift": 114, "cp_shift": 114, "mfa_shift": 114, "bn_shift": 114, "tolerance_shift": 114, "ds_shift": 114, "nois": [114, 115, 118], "prob": 115, "covari": [115, 116, 117, 118, 119], "proport": [115, 131, 132, 133, 135], "fraction": [115, 118, 119, 135], "affect": [115, 118, 121, 131, 132, 135], "n_shuffl": [116, 117], "keep_rows_const": 116, "repermute_each_column": 116, "multiwai": 116, "associ": [116, 131, 132, 133, 135], "swap": [116, 117], "individu": [116, 131, 132, 135], "within": [116, 132], "cl": [116, 117], "etc": [116, 117, 131, 132, 133, 135], "floatnumpi": 116, "shuffl": [116, 117, 131], "permut": 116, "placehold": 116, "shift_class": [117, 119], "rank": 117, "changepoint": 117, "axi": [117, 132, 135], "x_ref": 117, "y_ref": 117, "normal": [118, 131, 132, 135], "clip": [118, 131, 132, 135], "gaussian": 118, "standard": [118, 131, 132, 135], "deviat": 118, "divid": 118, "255": [118, 133, 134], "placehol": 119, "output_dir": [121, 131, 132, 135], "serv": 121, "interfac": 121, "popul": [121, 130, 131, 132, 135, 137], "modelcard": 121, "directori": [121, 131, 132, 135], "save": [121, 123, 124, 131, 132, 135], "output_filenam": [121, 131, 132, 133, 135], "template_path": 121, "interact": [121, 132, 135], "save_json": 121, "synthetic_timestamp": [121, 131, 132, 133, 135], "date": [121, 131, 132, 135], "jinja2": 121, "json": [121, 131, 132, 135], "timestamp": [121, 130, 132, 133, 136], "back": 121, "classmethod": 121, "cyclops_report": [121, 131, 132, 135], "section_nam": [121, 131, 132, 133, 135], "model_detail": [121, 131, 132, 135], "extra": 121, "section": [121, 131, 132, 133, 135], "repres": [121, 133], "bibtex": 121, "entri": 121, "plain": 121, "text": [121, 133], "descript": [121, 131, 132, 133, 135], "license_id": [121, 131], "sensitive_featur": [121, 131], "sensitive_feature_justif": [121, 131], "inform": [121, 131], "about": [121, 131, 132, 133, 135], "resourc": [121, 131, 132, 135], "context": 121, "homepag": 121, "spdx": [121, 131], "identifi": [121, 130, 133, 137], "licens": [121, 131, 132, 133, 135], "apach": [121, 131, 132, 135], "unknown": 121, "unlicens": 121, "proprietari": 121, "justif": [121, 131], "field": [121, 130, 131, 132, 135, 137], "descriptor": 121, "new": [121, 131, 132, 135], "pydant": 121, "basemodel": 121, "subclass": 121, "As": 121, "long": 121, "conflict": 121, "defin": [121, 131, 132, 133, 135], "model_card": 121, "cylop": 121, "tradeoff": [121, 133], "trade": 121, "off": 121, "interpret": 121, "consider": [121, 131, 132, 133, 135], "affected_group": [121, 131, 132, 133, 135], "benefit": [121, 131, 132, 133, 135], "harm": [121, 131, 132, 133, 135], "mitigation_strategi": [121, 131, 132, 133, 135], "assess": 121, "mitig": [121, 131, 132, 133, 135], "strategi": [121, 131, 132, 133, 135], "relat": 121, "img_path": 121, "caption": [121, 131, 132, 133, 135], "full": 121, "whole": [121, 131, 132, 135], "left": [121, 135], "blank": 121, "instead": 121, "param": [121, 131, 132, 135], "contact": [121, 131, 132, 133, 135], "role": 121, "owner": [121, 131, 132, 133, 135], "quantit": [121, 131, 132, 133, 135], "slash": 121, "fig": [121, 131, 132, 133, 135], "plotli": [121, 131, 132, 133, 135], "figur": [121, 131, 132, 135], "plot": [121, 131, 132, 133, 135], "analysis_typ": 121, "metric_slic": [121, 131, 132, 133, 135], "decision_threshold": 121, "pass_fail_threshold": [121, 131, 132, 133, 135], "pass_fail_threshold_fn": [121, 131, 132, 133, 135], "explain": 121, "fail": 121, "regul": 121, "regulatori": [121, 131, 132, 135], "compli": 121, "risk": [121, 131, 132, 133, 135, 137], "kind": [121, 131, 132, 133, 135], "primari": [121, 131, 132, 133, 135], "scope": [121, 131, 132, 135], "usecas": 121, "version_str": [121, 131, 132, 135], "semant": 121, "v1": 121, "dt_date": 121, "dt_datetim": 121, "unix": 121, "yyyi": 121, "mm": 121, "dd": 121, "hh": 121, "ss": 121, "ffffff": 121, "z": 121, "summar": 121, "chang": [121, 131, 132, 133, 135], "made": [121, 131, 132, 135], "task_featur": [123, 124, 131, 132, 135], "task_target": [123, 124, 131, 132, 135], "basetask": [123, 124], "ptmodel": [123, 124, 133], "skmodel": [123, 124], "splits_map": [123, 124], "fit": [123, 131, 132, 135], "columntransform": [123, 131, 132, 135], "slicingconfig": 123, "default_max_batch_s": 123, "unnecessari": [123, 124], "filepath": [123, 124], "pretrain": [123, 124, 133], "proba": [123, 131, 132, 135], "mortal": [123, 130], "pd": [123, 132], "datafram": [123, 131, 132, 135], "notfittederror": 123, "destin": [123, 124], "parent": [123, 124], "dirctori": [123, 124], "best_model_param": [123, 131, 132, 135], "y_train": 123, "pipelin": [123, 131, 132, 135], "best": [123, 131, 132, 135], "64": [124, 131, 132, 133, 135], "compos": [124, 131, 132, 133, 134, 135], "pathologi": [124, 130, 131, 137], "represent": [124, 131, 132, 135], "kaggl": [130, 131], "heart": 130, "failur": 130, "librari": [130, 136, 137], "constant": [130, 137], "distribut": [130, 133, 137], "outcom": [130, 137], "preprocessor": [130, 137], "creation": [130, 137], "mimiciv": [130, 132], "queri": [130, 137], "inspect": [130, 131, 137], "preprocess": [130, 131, 137], "drop": [130, 131, 137], "nan_threshold": [130, 131, 137], "gender": [130, 131, 133, 134, 137], "synthea": [130, 135], "prolong": [130, 132], "length": [130, 132, 133], "stai": [130, 132], "diseas": [130, 131, 137], "histor": [130, 131, 137], "period": [130, 137], "w": [130, 137], "drift": [130, 136], "experi": [130, 136], "dimension": [130, 136], "reduct": [130, 136], "techniqu": [130, 136], "roll": [130, 136], "window": [130, 136], "biweekli": [130, 136], "showcas": [131, 132, 135, 137], "patient": [131, 132, 133, 134, 135, 137], "shutil": [131, 132, 133, 135], "express": [131, 132, 133, 135], "px": [131, 132, 133, 135], "kaggle_api_extend": 131, "kaggleapi": 131, "imput": [131, 132, 135], "simpleimput": [131, 132, 135], "minmaxscal": [131, 132, 135], "onehotencod": [131, 132, 135], "noqa": [131, 132, 133, 135], "e402": [131, 132, 133, 135], "catalog": [131, 132, 135], "create_model": [131, 132, 135], "tabularfeatur": [131, 132, 135], "classificationplott": [131, 132, 135], "flatten_results_dict": [131, 132, 135], "join": [131, 132, 135], "load_datafram": 131, "mhx6ujw0": [131, 132, 133, 134, 135], "py3": [131, 132, 133, 134, 135], "lib": [131, 132, 133, 134, 135], "site": [131, 132, 133, 134, 135, 137], "tqdm": [131, 132, 133, 134, 135], "auto": [131, 132, 133, 134, 135], "py": [131, 132, 133, 134, 135], "21": [131, 132, 133, 134, 135], "tqdmwarn": [131, 132, 133, 134, 135], "iprogress": [131, 132, 133, 134, 135], "ipywidget": [131, 132, 133, 134, 135], "readthedoc": [131, 132, 133, 134, 135], "io": [131, 132, 133, 134, 135], "en": [131, 132, 133, 134, 135], "user_instal": [131, 132, 133, 134, 135], "autonotebook": [131, 132, 133, 134, 135], "notebook_tqdm": [131, 132, 133, 134, 135], "offer": [131, 132, 133, 135], "document": [131, 132, 133, 135], "through": [131, 132, 133, 135], "overview": [131, 132, 133, 135], "how": [131, 132, 133, 135], "quick": [131, 132, 133, 135], "glanc": [131, 132, 133, 135], "sever": [131, 132, 133, 135], "subgroup": [131, 132, 133, 135], "statist": [131, 132, 133, 135, 136], "subpopul": [131, 132, 133, 135], "technic": [131, 132, 133, 135], "architectur": [131, 132, 133, 135], "involv": [131, 132, 133, 135], "intend": [131, 132, 133, 135], "go": [131, 132, 133, 135], "tool": [131, 132, 133, 135], "progress": [131, 132, 133, 135], "subject": [131, 132, 133, 135], "data_dir": [131, 133], "random_se": [131, 132, 135], "train_siz": [131, 132, 135], "sign": [131, 135], "com": [131, 133], "Then": 131, "profil": [131, 132, 135], "usernam": 131, "trigger": 131, "download": 131, "credenti": 131, "place": 131, "locat": 131, "machin": [131, 133], "authent": 131, "dataset_download_fil": 131, "fedesoriano": 131, "unzip": 131, "df": 131, "csv": [131, 135], "file_format": 131, "reset_index": [131, 132, 135], "index": [131, 132, 133, 135], "2023": [131, 132, 133, 135], "11": [131, 132, 133, 135, 137], "24": [131, 132, 135], "13": [131, 132, 133, 135], "043": 131, "chestpaintyp": 131, "restingbp": 131, "cholesterol": 131, "fastingb": 131, "restingecg": 131, "40": [131, 132, 133, 135], "ata": 131, "140": 131, "289": 131, "49": [131, 135], "nap": 131, "160": 131, "180": 131, "37": [131, 132, 133, 135], "130": 131, "283": 131, "st": 131, "48": [131, 135], "asi": 131, "138": 131, "214": 131, "54": [131, 132, 133], "150": 131, "195": 131, "913": 131, "ta": 131, "110": 131, "264": 131, "914": 131, "68": [131, 135], "144": 131, "193": 131, "915": 131, "57": [131, 133], "131": 131, "916": 131, "236": 131, "lvh": 131, "917": 131, "38": [131, 132, 135], "175": 131, "maxhr": 131, "exerciseangina": 131, "oldpeak": 131, "st_slope": 131, "heartdiseas": 131, "172": 131, "156": 131, "flat": 131, "98": [131, 133], "108": 131, "122": 131, "132": 131, "141": 131, "115": 131, "174": 131, "173": 131, "918": 131, "pie": [131, 132, 133, 135], "update_layout": [131, 132, 133, 135], "histogram": [131, 132, 133, 135], "xaxis_titl": [131, 132, 133, 135], "yaxis_titl": [131, 132, 133, 135], "bargap": [131, 132, 133, 135], "astyp": [131, 132, 135], "update_trac": [131, 132, 133, 135], "textinfo": [131, 132, 135], "percent": [131, 132, 135], "title_text": [131, 132, 135], "hovertempl": [131, 132, 135], "br": [131, 132, 135], "class_count": [131, 132, 135], "value_count": [131, 132, 135], "class_ratio": [131, 132, 135], "8070866141732284": 131, "14": [131, 132, 133, 135, 137], "39": [131, 132, 133, 135], "20": [131, 132, 133, 135], "wa": [131, 132, 133, 135], "li": 131, "et": 131, "al": 131, "most": 131, "features_list": [131, 132, 135], "sort": [131, 132, 135], "help": [131, 132, 133, 135], "essenti": [131, 132, 135], "step": [131, 132, 135], "understand": [131, 132, 135], "u": [131, 132, 135], "16": [131, 132, 133, 135], "tab_featur": [131, 132, 135], "ordin": [131, 132], "might": [131, 132, 135], "17": [131, 132, 134, 135], "numeric_transform": [131, 132, 135], "scaler": [131, 132, 135], "binary_transform": [131, 132, 135], "most_frequ": [131, 132, 135], "18": [131, 132, 133, 134, 135], "numeric_featur": [131, 132, 135], "features_by_typ": [131, 132, 135], "numeric_indic": [131, 132, 135], "get_loc": [131, 132, 135], "19": [131, 132, 133, 135], "binary_featur": [131, 132, 135], "ordinal_featur": [131, 132], "binary_indic": [131, 132, 135], "ordinal_indic": [131, 132], "num": [131, 132, 135], "onehot": [131, 132, 135], "handle_unknown": [131, 132, 135], "ignor": [131, 132, 133, 135], "remaind": [131, 132, 135], "passthrough": [131, 132, 135], "let": [131, 132, 135], "done": [131, 132, 135], "independ": 131, "everi": 131, "uci": 131, "archiv": 131, "ic": 131, "edu": 131, "databas": [131, 132, 135], "cleandoc": 131, "misc": 131, "cc0": 131, "demograph": [131, 133], "often": 131, "strong": 131, "correl": 131, "older": [131, 132, 135], "higher": 131, "panda": [131, 132, 135], "power": [131, 132, 135], "easi": [131, 132, 135], "compat": [131, 132, 135], "22": [131, 132, 133, 135], "from_panda": [131, 132, 135], "cleanup_cache_fil": [131, 132, 135], "num_row": 131, "cast_column": [131, 132, 135], "stratify_by_column": [131, 132, 135], "seed": [131, 132, 133, 134, 135], "100": [131, 132, 133, 134, 135], "lt": [131, 132, 133, 134, 135], "167138": 131, "56": [131, 132, 133], "straightforward": [131, 132, 135], "maintain": [131, 132, 135], "instanti": [131, 132, 135], "line": [131, 132, 135], "sgd": 131, "logisit": [131, 132, 135], "regress": [131, 132, 135], "sgdclassif": 131, "sgd_classifi": 131, "123": [131, 132, 135], "verbos": [131, 132, 135], "class_weight": 131, "balanc": 131, "encapsul": [131, 132, 135], "cohes": [131, 132, 135], "structur": [131, 132, 135], "smooth": [131, 132, 135], "manag": [131, 132, 135], "heart_failure_prediction_task": 131, "26": [131, 132, 133, 134, 135], "hyperparamet": [131, 132, 135], "search": [131, 132, 135], "grid": [131, 132, 135], "27": [131, 132, 135], "alpha": 131, "0001": 131, "001": 131, "learning_r": [131, 132, 135], "invscal": 131, "adapt": 131, "eta0": 131, "roc_auc": 131, "09": [131, 132, 133, 135], "127": 131, "wrapper": [131, 132, 133, 135], "sk_model": [131, 132, 135], "129": 131, "sgdclassifi": 131, "x27": [131, 132, 135], "early_stop": 131, "loss": 131, "log_loss": 131, "rerun": [131, 132, 135], "cell": [131, 132, 135], "trust": [131, 132, 135], "On": [131, 132, 133, 135], "github": [131, 132, 133, 135], "unabl": [131, 132, 135], "render": [131, 132, 135], "try": [131, 132, 135], "page": [131, 132, 135], "nbviewer": [131, 132, 135], "sgdclassifiersgdclassifi": 131, "28": [131, 132, 133, 135], "model_param": [131, 132, 135], "epsilon": 131, "fit_intercept": 131, "l1_ratio": 131, "max_it": 131, "n_iter_no_chang": 131, "n_job": [131, 132, 135], "penalti": 131, "l2": 131, "power_t": 131, "tol": 131, "validation_fract": 131, "warm_start": 131, "29": [131, 132, 133, 135], "30": [131, 132, 133, 135, 137], "y_pred": [131, 132, 135], "only_predict": [131, 132, 135], "len": [131, 132, 133, 135], "184": 131, "7930": 131, "53": [131, 132, 133], "variou": [131, 132, 135], "perspect": [131, 132, 135], "metric_collect": [131, 132, 135], "certain": [131, 132, 135], "70": [131, 133, 135], "33": [131, 132, 134, 135], "fnr": [131, 132, 135], "ber": [131, 132, 135], "fairness_metric_collect": [131, 132, 135], "34": [131, 132, 135], "dataset_with_pr": [131, 132, 135], "7823": 131, "77": [131, 134, 135], "7422": 131, "90": [131, 133, 134], "51674": 131, "gt": [131, 132, 133, 134, 135], "20061": 131, "20776": 131, "23321": 131, "41": [131, 132, 135], "19910": 131, "20903": 131, "92": [131, 133], "21302": 131, "36": [131, 132, 135], "results_femal": 131, "_": [131, 135], "8674": 131, "59": [131, 132, 134], "11171": 131, "51453": 131, "18951": 131, "72": 131, "right": [131, 132, 135], "results_flat": [131, 132, 133, 135], "remove_metr": [131, 132, 135], "results_female_flat": 131, "plw2901": [131, 132, 133, 135], "actual": [131, 132, 133, 135], "known": [131, 132, 133, 135], "measur": [131, 132, 135], "lambda": [131, 132, 133, 134, 135], "plotter": [131, 132, 134, 135], "class_nam": [131, 132, 135], "set_templ": [131, 132, 135], "plotly_whit": [131, 132, 135], "extract": [131, 132, 135], "slice_result": [131, 132, 135], "dict_kei": [131, 132, 135], "roc_plot": [131, 132, 135], "roc_curve_comparison": [131, 132, 135], "femal": [131, 132, 133, 134, 135], "overall_perform": [131, 132, 135], "metric_valu": [131, 132, 135], "overall_performance_plot": [131, 132, 135], "metrics_valu": [131, 132, 135], "43": [131, 132, 133, 135], "slice_metr": [131, 132, 135], "44": [131, 132, 133, 135], "slice_metrics_plot": [131, 132, 135], "metrics_comparison_bar": [131, 132, 135], "comparison": [131, 132, 133, 135], "reform": [131, 132, 135], "fairness_result": [131, 132, 135], "deepcopi": [131, 132, 135], "fairness_metr": [131, 132, 135], "group_siz": [131, 132, 135], "46": [131, 132, 133, 135], "fairness_plot": [131, 132, 135], "metrics_comparison_scatt": [131, 132, 135], "leverag": 131, "get_metrics_trend": 131, "gather": 131, "merg": [131, 132, 135], "recent": 131, "wish": 131, "metrics_trend": 131, "purpos": 131, "three": 131, "dummi": 131, "demonstr": [131, 137], "trend": 131, "audienc": [131, 132, 135], "organ": [131, 132, 135], "store": [131, 132, 135], "regulatory_requir": [131, 132, 135], "47": [131, 132, 135], "todai": [131, 132, 135], "releas": [131, 132, 135], "team": [131, 132, 135], "vectorinstitut": [131, 132, 135], "email": [131, 132, 133, 135], "ai": [131, 132, 135], "linear_model": 131, "e501": [131, 132, 135], "next": [131, 132, 135], "use_cas": [131, 132, 135], "These": [131, 132, 135], "could": [131, 132, 135], "downstream": [131, 132, 135], "fairness_assess": [131, 132, 135], "well": [131, 132, 133, 135], "taken": [131, 132, 135], "ethical_consider": [131, 132, 135], "clinician": [131, 132, 135], "engin": [131, 132, 135], "condit": 131, "improv": [131, 132, 135], "bias": [131, 132, 133, 135], "lead": [131, 132, 135], "wors": [131, 132, 135], "retrain": [131, 132, 135], "below": [131, 132, 135], "By": [131, 132, 135], "folder": [131, 132, 135], "_model_card": [131, 132, 135], "report_path": [131, 132, 133, 135], "heart_failure_report_period": 131, "quantitative_analysi": [131, 132, 135], "performance_metr": 131, "random": [131, 132, 134, 135], "rmtree": [131, 132, 135], "view": [131, 132, 133, 135, 137], "die": 132, "admiss": 132, "cycqueri": [132, 135], "op": [132, 135], "qo": [132, 135], "graph_object": [132, 135], "mimicivqueri": 132, "aggreg": 132, "restrict_timestamp": 132, "clean": 132, "normalize_nam": 132, "add_years_approxim": 132, "deathtim": 132, "lab": [132, 133], "event": 132, "querier": [132, 135], "dbm": [132, 135], "postgresql": [132, 135], "port": [132, 135], "5432": [132, 135], "host": [132, 135], "localhost": [132, 135], "postgr": [132, 135], "password": [132, 135], "pwd": [132, 135], "def": [132, 133, 135], "get_encount": [132, 135], "mimiciv_hosp": 132, "drop_op": 132, "insur": 132, "languag": 132, "marital_statu": 132, "edregtim": 132, "edouttim": 132, "patient_encount": [132, 135], "subject_id": 132, "admittim": 132, "dt": 132, "anchor_year": 132, "anchor_ag": 132, "col": 132, "dischtim": 132, "anchor_year_differ": 132, "hadm_id": 132, "admission_loc": 132, "hospital_expire_flag": 132, "compute_mortality_outcom": 132, "death": 132, "invalid": 132, "isna": 132, "shorter": 132, "di": 132, "mortality_outcom": 132, "get_labev": 132, "labev": 132, "index_col": 132, "batch_mod": 132, "process_labev": 132, "revers": 132, "deidentifi": 132, "charttim": 132, "categori": [132, 135], "start_timestamp": 132, "set_index": 132, "renam": [132, 135], "mean_aggreg": 132, "aggfunc": [132, 135], "valuenum": 132, "window_dur": 132, "timestamp_col": 132, "time_bi": 132, "agg_bi": 132, "means_df": 132, "batch_num": 132, "labevents_batch": 132, "enumer": [132, 133], "aggregate_valu": 132, "window_start_tim": 132, "pivot": 132, "add_prefix": [132, 135], "lab_": 132, "concat": 132, "break": 132, "run_queri": [132, 135], "cohort": [132, 135], "676": 132, "orm": [132, 135], "readi": [132, 135], "279": 132, "successfulli": [132, 135], "280": 132, "finish": [132, 135], "execut": [132, 135], "665870": 132, "105518": 132, "5925": 132, "012": 132, "013": 132, "885787": 132, "null_count": [132, 135], "isnul": [132, 135], "bar": [132, 133, 135], "height": [132, 133], "600": [132, 133], "respect": [132, 135], "larger": [132, 135], "thresh_nan": [132, 135], "dropna": [132, 135], "thresh": [132, 135], "heavili": 132, "unbalanc": 132, "55": 132, "36758893280632": 132, "tolist": 132, "lab_bicarbon": 132, "lab_hematocrit": 132, "lab_sodium": 132, "lab_magnesium": 132, "lab_aspar": 132, "aminotransferas": [132, 135], "ast": 132, "lab_calcium": 132, "lab_ptt": 132, "lab_alkalin": 132, "phosphatas": [132, 135], "lab_r": 132, "blood": [132, 135], "lab_urea": 132, "nitrogen": [132, 135], "lab_bilirubin": 132, "lab_h": 132, "lab_mcv": 132, "lab_potassium": 132, "lab_l": 132, "lab_hemoglobin": 132, "lab_ph": 132, "lab_chlorid": 132, "lab_mch": 132, "lab_rdw": 132, "lab_inr": 132, "pt": 132, "lab_whit": 132, "lab_creatinin": 132, "sd": 132, "lab_glucos": 132, "lab_pt": 132, "lab_anion": 132, "gap": 132, "lab_phosph": 132, "lab_alanin": 132, "alt": 132, "lab_platelet": 132, "lab_i": 132, "lab_mchc": 132, "14261": 132, "789834": 132, "67": 132, "xgboost": [132, 135], "xgbclassif": [132, 135], "xgb_classifi": [132, 135], "mortality_task": 132, "n_estim": [132, 135], "250": [132, 135], "500": [132, 135], "max_depth": [132, 135], "reg_lambda": [132, 135], "colsample_bytre": [132, 135], "gamma": [132, 135], "431": 132, "432": 132, "433": 132, "434": 132, "xgbclassifi": [132, 135], "base_scor": [132, 135], "booster": [132, 135], "callback": [132, 135], "colsample_bylevel": [132, 135], "colsample_bynod": [132, 135], "early_stopping_round": [132, 135], "enable_categor": [132, 135], "eval_metr": [132, 135], "logloss": [132, 135], "feature_typ": [132, 135], "gpu_id": [132, 135], "grow_polici": [132, 135], "importance_typ": [132, 135], "interaction_constraint": [132, 135], "max_bin": [132, 135], "max_cat_threshold": [132, 135], "max_cat_to_onehot": [132, 135], "max_delta_step": [132, 135], "max_leav": [132, 135], "min_child_weight": [132, 135], "miss": [132, 135], "monotone_constraint": [132, 135], "num_parallel_tre": [132, 135], "predictor": [132, 135], "xgbclassifierxgbclassifi": [132, 135], "logist": [132, 135], "use_label_encod": [132, 135], "reg_alpha": [132, 135], "sampling_method": [132, 135], "scale_pos_weight": [132, 135], "subsampl": [132, 135], "tree_method": [132, 135], "validate_paramet": [132, 135], "2853": 132, "3975": 132, "80": [132, 133, 135], "4028": 132, "76": 132, "3818": 132, "389200": 132, "8372": 132, "8771": 132, "63": [132, 133], "8622": 132, "8624": 132, "8877": 132, "amp": [132, 133, 135], "8292": 132, "07": 132, "8490": 132, "8426": 132, "8679": 132, "8507": 132, "97": 132, "8516": 132, "62": [132, 133, 135], "9942279942279942": 132, "7873730043541365": 132, "9855072463768116": 132, "17391304347826086": 132, "25806451612903225": 132, "9082341821416657": 132, "9785819793205317": 132, "125": 132, "21621621621621623": 132, "8854954614220878": 132, "9839893262174784": 132, "8717283072546229": 132, "9814230634419909": 132, "0784313725490196": 132, "13114754098360656": 132, "8808204223873703": 132, "python_api": [132, 135], "mortality_report_period": 132, "torchxrayvis": [133, 134], "functool": 133, "torchvis": [133, 134], "densenet": [133, 134], "loader": [133, 134], "load_nihcxr": [133, 134], "lambdad": [133, 134], "resiz": [133, 134], "apply_transform": 133, "generate_nihcxr_report": 133, "71": [133, 135], "550578": 133, "238096": 133, "400": 133, "1893": 133, "43740": 133, "79": [133, 135], "43260": 133, "44992": 133, "44819": 133, "65": [133, 134, 135], "45924": 133, "45090": 133, "45370": 133, "554215": 133, "238556": 133, "396": 133, "1882": 133, "43408": 133, "42945": 133, "45858": 133, "44587": 133, "91": 133, "44751": 133, "16723": 133, "83": 133, "25961": 133, "99": 133, "544997": 133, "241065": 133, "81": 133, "383": 133, "1794": 133, "43309": 133, "42959": 133, "45556": 133, "44647": 133, "45216": 133, "33329": 133, "46347": 133, "559389": 133, "239046": 133, "411": 133, "1906": 133, "44019": 133, "44166": 133, "45872": 133, "93": 133, "44765": 133, "45796": 133, "45506": 133, "47463": 133, "clinical_dataset": [133, 134], "nih_d": [133, 134], "spatial_s": [133, 134], "224": [133, 134], "allow_missing_kei": [133, 134], "func": [133, 134], "1024": [133, 134], "newaxi": [133, 134], "densenet121": [133, 134], "res224": [133, 134], "No": 133, "adjust": 133, "106190": 133, "661": 133, "1674": 133, "04": 133, "int64": 133, "originalimag": 133, "width": [133, 135], "originalimagepixelspac": 133, "unnam": 133, "atelectasi": 133, "float32": 133, "cardiomegali": 133, "consolid": 133, "edema": 133, "effus": 133, "emphysema": 133, "fibrosi": 133, "hernia": 133, "infiltr": 133, "mass": [133, 135], "nodul": 133, "pleural_thicken": 133, "pneumonia": 133, "pneumothorax": 133, "__index_level_0__": 133, "multilabelpositivepredictivevalu": 133, "registry_kei": 133, "positive_predictive_valu": 133, "super": 133, "overrid": 133, "_final_st": 133, "multilabelnegativepredictivevalu": 133, "negative_predictive_valu": 133, "ppv": 133, "npv": 133, "nih_eval_results_gend": 133, "46511": 133, "42315": 133, "49624": 133, "74": 133, "nih_eval_results_ag": 133, "46425": 133, "48688": 133, "45820": 133, "45602": 133, "48722": 133, "44049": 133, "44852": 133, "44538": 133, "44315": 133, "44226": 133, "male": [133, 134], "1200": 133, "showlegend": 133, "slice_": 133, "itr": 133, "among": 133, "112": [133, 137], "120": [133, 137], "frontal": [133, 137], "805": [133, 137], "fourteen": 133, "mine": 133, "radiolog": 133, "pleural": 133, "thicken": 133, "remain": 133, "arxiv": 133, "ab": 133, "2111": 133, "00595": 133, "inproceed": 133, "cohen2022xrv": 133, "cohen": 133, "joseph": 133, "paul": 133, "viviano": 133, "bertin": 133, "morrison": 133, "torabian": 133, "parsa": 133, "guarrera": 133, "matteo": 133, "lungren": 133, "matthew": 133, "chaudhari": 133, "akshai": 133, "brook": 133, "rupert": 133, "hashir": 133, "mohammad": 133, "bertrand": 133, "hadrien": 133, "booktitl": 133, "deep": 133, "mlmed": 133, "arxivid": 133, "cohen2020limit": 133, "cross": 133, "domain": 133, "autom": [133, 135], "2002": 133, "02497": 133, "medicin": 133, "josephpcohen": 133, "radiologist": 133, "scientist": 133, "inabl": 133, "addition": 133, "poor": 133, "qualiti": 133, "artifact": 133, "geograph": 133, "region": 133, "ethic": 133, "ensur": 133, "divers": 133, "regularli": 133, "human": 133, "expertis": 133, "address": 133, "rare": 133, "nihcxr_report_period": 133, "torch": 134, "detector": 134, "reductor": 134, "tstester": 134, "plot_drift_experi": 134, "plot_drift_timeseri": 134, "manual_se": 134, "_c": 134, "0x7f6a34056f50": 134, "shifter": 134, "source_d": 134, "target_d": 134, "25596": 134, "63635": 134, "dr_method": 134, "bbse": 134, "soft": 134, "txrv": 134, "ae": 134, "sensitivity_test": 134, "tester": 134, "tester_method": 134, "source_sample_s": 134, "target_sample_s": 134, "num_run": 134, "detect_shift": 134, "chexpert": 134, "chex": 134, "padchest": 134, "pc": 134, "source_slic": 134, "target_slic": 134, "51206": 134, "51982": 134, "50275": 134, "47692": 134, "48919": 134, "52475": 134, "51421": 134, "48649": 134, "rolling_window_drift": 134, "timestamp_column": 134, "window_s": 134, "4w": 134, "longer": 135, "v3": 135, "instruct": 135, "etl": 135, "datasetqueri": 135, "num_dai": 135, "synthea_demo": 135, "nativ": 135, "sequenti": 135, "patient_id": 135, "birthdat": 135, "race": 135, "ethnic": 135, "isout": 135, "encounter_id": 135, "extracttimestampcompon": 135, "start_year": 135, "birthdate_year": 135, "addcolumn": 135, "new_col_label": 135, "stop": 135, "lo": 135, "conditiongreaterthan": 135, "conditionlessthan": 135, "get_observ": 135, "conditionin": 135, "vital": 135, "conditionequ": 135, "groupby_op": 135, "groupbyaggreg": 135, "n_ob": 135, "observations_count": 135, "observations_stat": 135, "pivot_t": 135, "max": 135, "obs_": 135, "get_med": 135, "n_med": 135, "get_procedur": 135, "procedur": [135, 137], "n_procedur": 135, "cohort_queri": 135, "to_merg": 135, "extend": 135, "append": 135, "to_merge_df": 135, "628": 135, "635": 135, "636": 135, "683744": 135, "424": 135, "425": 135, "788084": 135, "673": 135, "675": 135, "392405": 135, "177": 135, "179": 135, "499542": 135, "271": 135, "272": 135, "092379": 135, "length_of_stai": 135, "length_of_stay_count": 135, "length_of_stay_kei": 135, "5573997233748271": 135, "obs_alanin": 135, "enzymat": 135, "volum": 135, "serum": 135, "plasma": 135, "obs_albumin": 135, "obs_alkalin": 135, "obs_aspart": 135, "obs_bilirubin": 135, "obs_bodi": 135, "obs_calcium": 135, "obs_carbon": 135, "dioxid": 135, "mole": 135, "obs_chlorid": 135, "obs_creatinin": 135, "obs_diastol": 135, "pressur": 135, "obs_erythrocyt": 135, "obs_ferritin": 135, "obs_glomerular": 135, "filtrat": 135, "73": 135, "sq": 135, "obs_glucos": 135, "obs_hematocrit": 135, "obs_hemoglobin": 135, "obs_leukocyt": 135, "obs_mch": 135, "entit": 135, "obs_mchc": 135, "obs_mcv": 135, "obs_oxygen": 135, "satur": 135, "arteri": 135, "obs_platelet": 135, "obs_potassium": 135, "obs_protein": 135, "obs_sodium": 135, "obs_systol": 135, "obs_troponin": 135, "cardiac": 135, "obs_urea": 135, "1126": 135, "134307": 135, "los_task": 135, "197": 135, "198": 135, "199": 135, "226": 135, "4553": 135, "4492": 135, "4111": 135, "94451": 135, "8305": 135, "9202": 135, "9153": 135, "9010": 135, "9472": 135, "8891": 135, "82": 135, "8808": 135, "8617": 135, "8652": 135, "9009": 135, "8950": 135, "8407079646017699": 135, "7391304347826086": 135, "9632740447957839": 135, "51": 135, "69": 135, "7962962962962963": 135, "7555555555555555": 135, "9006896551724138": 135, "8455284552845529": 135, "7738095238095238": 135, "87248322147651": 135, "9490231990231991": 135, "84": 135, "8640776699029126": 135, "9272727272727272": 135, "8360655737704918": 135, "8793103448275862": 135, "9644808743169399": 135, "61": 135, "8539823008849557": 135, "9666666666666667": 135, "8754716981132076": 135, "95436355896126": 135, "116": 135, "145": 135, "confusion_matrix": 135, "conf_plot": 135, "plot_confusion_matrix": 135, "length_of_stay_report_period": 135, "goal": 137, "ehr": 137, "icu": 137}, "objects": {"cyclops": [[125, 0, 0, "-", "data"], [126, 0, 0, "-", "evaluate"], [127, 0, 0, "-", "monitor"], [128, 0, 0, "-", "report"], [129, 0, 0, "-", "tasks"]], "cyclops.data": [[125, 0, 0, "-", "features"], [6, 0, 0, "-", "slicer"]], "cyclops.data.features": [[4, 0, 0, "-", "medical_image"]], "cyclops.data.features.medical_image": [[5, 1, 1, "", "MedicalImage"]], "cyclops.data.features.medical_image.MedicalImage": [[5, 2, 1, "", "__call__"], [5, 2, 1, "", "cast_storage"], [5, 2, 1, "", "decode_example"], [5, 2, 1, "", "embed_storage"], [5, 2, 1, "", "encode_example"], [5, 2, 1, "", "flatten"]], "cyclops.data.slicer": [[7, 1, 1, "", "SliceSpec"], [8, 4, 1, "", "compound_filter"], [9, 4, 1, "", "filter_datetime"], [10, 4, 1, "", "filter_non_null"], [11, 4, 1, "", "filter_range"], [12, 4, 1, "", "filter_string_contains"], [13, 4, 1, "", "filter_value"], [14, 4, 1, "", "is_datetime"], [15, 4, 1, "", "overall"]], "cyclops.data.slicer.SliceSpec": [[7, 3, 1, "", "_registry"], [7, 2, 1, "", "add_slice_spec"], [7, 3, 1, "", "column_names"], [7, 2, 1, "", "get_slices"], [7, 3, 1, "", "include_overall"], [7, 2, 1, "", "slices"], [7, 3, 1, "", "spec_list"], [7, 3, 1, "", "validate"]], "cyclops.evaluate": [[16, 0, 0, "-", "evaluator"], [126, 0, 0, "-", "fairness"], [126, 0, 0, "-", "metrics"]], "cyclops.evaluate.evaluator": [[17, 4, 1, "", "evaluate"]], "cyclops.evaluate.fairness": [[18, 0, 0, "-", "config"], [20, 0, 0, "-", "evaluator"]], "cyclops.evaluate.fairness.config": [[19, 1, 1, "", "FairnessConfig"]], "cyclops.evaluate.fairness.evaluator": [[21, 4, 1, "", "evaluate_fairness"], [22, 4, 1, "", "warn_too_many_unique_values"]], "cyclops.evaluate.metrics": [[23, 0, 0, "-", "accuracy"], [28, 0, 0, "-", "auroc"], [33, 0, 0, "-", "f_beta"], [42, 0, 0, "-", "factory"], [126, 0, 0, "-", "functional"], [73, 0, 0, "-", "metric"], [77, 0, 0, "-", "precision_recall"], [86, 0, 0, "-", "precision_recall_curve"], [91, 0, 0, "-", "roc"], [96, 0, 0, "-", "sensitivity"], [101, 0, 0, "-", "specificity"], [106, 0, 0, "-", "stat_scores"]], "cyclops.evaluate.metrics.accuracy": [[24, 1, 1, "", "Accuracy"], [25, 1, 1, "", "BinaryAccuracy"], [26, 1, 1, "", "MulticlassAccuracy"], [27, 1, 1, "", "MultilabelAccuracy"]], "cyclops.evaluate.metrics.accuracy.Accuracy": [[24, 2, 1, "", "__add__"], [24, 2, 1, "", "__call__"], [24, 2, 1, "", "__init__"], [24, 2, 1, "", "__mul__"], [24, 2, 1, "", "add_state"], [24, 2, 1, "", "clone"], [24, 2, 1, "", "compute"], [24, 2, 1, "", "reset_state"], [24, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.accuracy.BinaryAccuracy": [[25, 2, 1, "", "__add__"], [25, 2, 1, "", "__call__"], [25, 2, 1, "", "__init__"], [25, 2, 1, "", "__mul__"], [25, 2, 1, "", "add_state"], [25, 2, 1, "", "clone"], [25, 2, 1, "", "compute"], [25, 2, 1, "", "reset_state"], [25, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy": [[26, 2, 1, "", "__add__"], [26, 2, 1, "", "__call__"], [26, 2, 1, "", "__init__"], [26, 2, 1, "", "__mul__"], [26, 2, 1, "", "add_state"], [26, 2, 1, "", "clone"], [26, 2, 1, "", "compute"], [26, 2, 1, "", "reset_state"], [26, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy": [[27, 2, 1, "", "__add__"], [27, 2, 1, "", "__call__"], [27, 2, 1, "", "__init__"], [27, 2, 1, "", "__mul__"], [27, 2, 1, "", "add_state"], [27, 2, 1, "", "clone"], [27, 2, 1, "", "compute"], [27, 2, 1, "", "reset_state"], [27, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.auroc": [[29, 1, 1, "", "AUROC"], [30, 1, 1, "", "BinaryAUROC"], [31, 1, 1, "", "MulticlassAUROC"], [32, 1, 1, "", "MultilabelAUROC"]], "cyclops.evaluate.metrics.auroc.AUROC": [[29, 2, 1, "", "__add__"], [29, 2, 1, "", "__call__"], [29, 2, 1, "", "__init__"], [29, 2, 1, "", "__mul__"], [29, 2, 1, "", "add_state"], [29, 2, 1, "", "clone"], [29, 2, 1, "", "compute"], [29, 2, 1, "", "reset_state"], [29, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.auroc.BinaryAUROC": [[30, 2, 1, "", "__add__"], [30, 2, 1, "", "__call__"], [30, 2, 1, "", "__init__"], [30, 2, 1, "", "__mul__"], [30, 2, 1, "", "add_state"], [30, 2, 1, "", "clone"], [30, 2, 1, "", "compute"], [30, 2, 1, "", "reset_state"], [30, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.auroc.MulticlassAUROC": [[31, 2, 1, "", "__add__"], [31, 2, 1, "", "__call__"], [31, 2, 1, "", "__init__"], [31, 2, 1, "", "__mul__"], [31, 2, 1, "", "add_state"], [31, 2, 1, "", "clone"], [31, 2, 1, "", "compute"], [31, 2, 1, "", "reset_state"], [31, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.auroc.MultilabelAUROC": [[32, 2, 1, "", "__add__"], [32, 2, 1, "", "__call__"], [32, 2, 1, "", "__init__"], [32, 2, 1, "", "__mul__"], [32, 2, 1, "", "add_state"], [32, 2, 1, "", "clone"], [32, 2, 1, "", "compute"], [32, 2, 1, "", "reset_state"], [32, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta": [[34, 1, 1, "", "BinaryF1Score"], [35, 1, 1, "", "BinaryFbetaScore"], [36, 1, 1, "", "F1Score"], [37, 1, 1, "", "FbetaScore"], [38, 1, 1, "", "MulticlassF1Score"], [39, 1, 1, "", "MulticlassFbetaScore"], [40, 1, 1, "", "MultilabelF1Score"], [41, 1, 1, "", "MultilabelFbetaScore"]], "cyclops.evaluate.metrics.f_beta.BinaryF1Score": [[34, 2, 1, "", "__add__"], [34, 2, 1, "", "__call__"], [34, 2, 1, "", "__init__"], [34, 2, 1, "", "__mul__"], [34, 2, 1, "", "add_state"], [34, 2, 1, "", "clone"], [34, 2, 1, "", "compute"], [34, 2, 1, "", "reset_state"], [34, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore": [[35, 2, 1, "", "__add__"], [35, 2, 1, "", "__call__"], [35, 2, 1, "", "__init__"], [35, 2, 1, "", "__mul__"], [35, 2, 1, "", "add_state"], [35, 2, 1, "", "clone"], [35, 2, 1, "", "compute"], [35, 2, 1, "", "reset_state"], [35, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.F1Score": [[36, 2, 1, "", "__add__"], [36, 2, 1, "", "__call__"], [36, 2, 1, "", "__init__"], [36, 2, 1, "", "__mul__"], [36, 2, 1, "", "add_state"], [36, 2, 1, "", "clone"], [36, 2, 1, "", "compute"], [36, 2, 1, "", "reset_state"], [36, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.FbetaScore": [[37, 2, 1, "", "__add__"], [37, 2, 1, "", "__call__"], [37, 2, 1, "", "__init__"], [37, 2, 1, "", "__mul__"], [37, 2, 1, "", "add_state"], [37, 2, 1, "", "clone"], [37, 2, 1, "", "compute"], [37, 2, 1, "", "reset_state"], [37, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.MulticlassF1Score": [[38, 2, 1, "", "__add__"], [38, 2, 1, "", "__call__"], [38, 2, 1, "", "__init__"], [38, 2, 1, "", "__mul__"], [38, 2, 1, "", "add_state"], [38, 2, 1, "", "clone"], [38, 2, 1, "", "compute"], [38, 2, 1, "", "reset_state"], [38, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore": [[39, 2, 1, "", "__add__"], [39, 2, 1, "", "__call__"], [39, 2, 1, "", "__init__"], [39, 2, 1, "", "__mul__"], [39, 2, 1, "", "add_state"], [39, 2, 1, "", "clone"], [39, 2, 1, "", "compute"], [39, 2, 1, "", "reset_state"], [39, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.MultilabelF1Score": [[40, 2, 1, "", "__add__"], [40, 2, 1, "", "__call__"], [40, 2, 1, "", "__init__"], [40, 2, 1, "", "__mul__"], [40, 2, 1, "", "add_state"], [40, 2, 1, "", "clone"], [40, 2, 1, "", "compute"], [40, 2, 1, "", "reset_state"], [40, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore": [[41, 2, 1, "", "__add__"], [41, 2, 1, "", "__call__"], [41, 2, 1, "", "__init__"], [41, 2, 1, "", "__mul__"], [41, 2, 1, "", "add_state"], [41, 2, 1, "", "clone"], [41, 2, 1, "", "compute"], [41, 2, 1, "", "reset_state"], [41, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.factory": [[43, 4, 1, "", "create_metric"]], "cyclops.evaluate.metrics.functional": [[44, 0, 0, "-", "accuracy"], [45, 0, 0, "-", "auroc"], [46, 0, 0, "-", "f_beta"], [55, 0, 0, "-", "precision_recall"], [64, 0, 0, "-", "precision_recall_curve"], [65, 0, 0, "-", "roc"], [70, 0, 0, "-", "sensitivity"], [71, 0, 0, "-", "specificity"], [72, 0, 0, "-", "stat_scores"]], "cyclops.evaluate.metrics.functional.f_beta": [[47, 4, 1, "", "binary_f1_score"], [48, 4, 1, "", "binary_fbeta_score"], [49, 4, 1, "", "f1_score"], [50, 4, 1, "", "fbeta_score"], [51, 4, 1, "", "multiclass_f1_score"], [52, 4, 1, "", "multiclass_fbeta_score"], [53, 4, 1, "", "multilabel_f1_score"], [54, 4, 1, "", "multilabel_fbeta_score"]], "cyclops.evaluate.metrics.functional.precision_recall": [[56, 4, 1, "", "binary_precision"], [57, 4, 1, "", "binary_recall"], [58, 4, 1, "", "multiclass_precision"], [59, 4, 1, "", "multiclass_recall"], [60, 4, 1, "", "multilabel_precision"], [61, 4, 1, "", "multilabel_recall"], [62, 4, 1, "", "precision"], [63, 4, 1, "", "recall"]], "cyclops.evaluate.metrics.functional.roc": [[66, 4, 1, "", "binary_roc_curve"], [67, 4, 1, "", "multiclass_roc_curve"], [68, 4, 1, "", "multilabel_roc_curve"], [69, 4, 1, "", "roc_curve"]], "cyclops.evaluate.metrics.metric": [[74, 1, 1, "", "Metric"], [75, 1, 1, "", "MetricCollection"], [76, 1, 1, "", "OperatorMetric"]], "cyclops.evaluate.metrics.metric.Metric": [[74, 2, 1, "", "__add__"], [74, 2, 1, "", "__call__"], [74, 2, 1, "", "__init__"], [74, 2, 1, "", "__mul__"], [74, 2, 1, "", "add_state"], [74, 2, 1, "", "clone"], [74, 2, 1, "", "compute"], [74, 5, 1, "", "name"], [74, 2, 1, "", "reset_state"], [74, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.metric.MetricCollection": [[75, 2, 1, "", "__call__"], [75, 2, 1, "", "__init__"], [75, 2, 1, "", "add_metrics"], [75, 2, 1, "", "clear"], [75, 2, 1, "", "clone"], [75, 2, 1, "", "compute"], [75, 2, 1, "", "get"], [75, 2, 1, "", "items"], [75, 2, 1, "", "keys"], [75, 2, 1, "", "pop"], [75, 2, 1, "", "popitem"], [75, 2, 1, "", "reset_state"], [75, 2, 1, "", "setdefault"], [75, 2, 1, "", "update"], [75, 2, 1, "", "update_state"], [75, 2, 1, "", "values"]], "cyclops.evaluate.metrics.metric.OperatorMetric": [[76, 2, 1, "", "__add__"], [76, 2, 1, "", "__call__"], [76, 2, 1, "", "__init__"], [76, 2, 1, "", "__mul__"], [76, 2, 1, "", "add_state"], [76, 2, 1, "", "clone"], [76, 2, 1, "", "compute"], [76, 2, 1, "", "reset_state"], [76, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall": [[78, 1, 1, "", "BinaryPrecision"], [79, 1, 1, "", "BinaryRecall"], [80, 1, 1, "", "MulticlassPrecision"], [81, 1, 1, "", "MulticlassRecall"], [82, 1, 1, "", "MultilabelPrecision"], [83, 1, 1, "", "MultilabelRecall"], [84, 1, 1, "", "Precision"], [85, 1, 1, "", "Recall"]], "cyclops.evaluate.metrics.precision_recall.BinaryPrecision": [[78, 2, 1, "", "__add__"], [78, 2, 1, "", "__call__"], [78, 2, 1, "", "__init__"], [78, 2, 1, "", "__mul__"], [78, 2, 1, "", "add_state"], [78, 2, 1, "", "clone"], [78, 2, 1, "", "compute"], [78, 2, 1, "", "reset_state"], [78, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.BinaryRecall": [[79, 2, 1, "", "__add__"], [79, 2, 1, "", "__call__"], [79, 2, 1, "", "__init__"], [79, 2, 1, "", "__mul__"], [79, 2, 1, "", "add_state"], [79, 2, 1, "", "clone"], [79, 2, 1, "", "compute"], [79, 2, 1, "", "reset_state"], [79, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision": [[80, 2, 1, "", "__add__"], [80, 2, 1, "", "__call__"], [80, 2, 1, "", "__init__"], [80, 2, 1, "", "__mul__"], [80, 2, 1, "", "add_state"], [80, 2, 1, "", "clone"], [80, 2, 1, "", "compute"], [80, 2, 1, "", "reset_state"], [80, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.MulticlassRecall": [[81, 2, 1, "", "__add__"], [81, 2, 1, "", "__call__"], [81, 2, 1, "", "__init__"], [81, 2, 1, "", "__mul__"], [81, 2, 1, "", "add_state"], [81, 2, 1, "", "clone"], [81, 2, 1, "", "compute"], [81, 2, 1, "", "reset_state"], [81, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision": [[82, 2, 1, "", "__add__"], [82, 2, 1, "", "__call__"], [82, 2, 1, "", "__init__"], [82, 2, 1, "", "__mul__"], [82, 2, 1, "", "add_state"], [82, 2, 1, "", "clone"], [82, 2, 1, "", "compute"], [82, 2, 1, "", "reset_state"], [82, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.MultilabelRecall": [[83, 2, 1, "", "__add__"], [83, 2, 1, "", "__call__"], [83, 2, 1, "", "__init__"], [83, 2, 1, "", "__mul__"], [83, 2, 1, "", "add_state"], [83, 2, 1, "", "clone"], [83, 2, 1, "", "compute"], [83, 2, 1, "", "reset_state"], [83, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.Precision": [[84, 2, 1, "", "__add__"], [84, 2, 1, "", "__call__"], [84, 2, 1, "", "__init__"], [84, 2, 1, "", "__mul__"], [84, 2, 1, "", "add_state"], [84, 2, 1, "", "clone"], [84, 2, 1, "", "compute"], [84, 2, 1, "", "reset_state"], [84, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall.Recall": [[85, 2, 1, "", "__add__"], [85, 2, 1, "", "__call__"], [85, 2, 1, "", "__init__"], [85, 2, 1, "", "__mul__"], [85, 2, 1, "", "add_state"], [85, 2, 1, "", "clone"], [85, 2, 1, "", "compute"], [85, 2, 1, "", "reset_state"], [85, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall_curve": [[87, 1, 1, "", "BinaryPrecisionRecallCurve"], [88, 1, 1, "", "MulticlassPrecisionRecallCurve"], [89, 1, 1, "", "MultilabelPrecisionRecallCurve"], [90, 1, 1, "", "PrecisionRecallCurve"]], "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve": [[87, 2, 1, "", "__add__"], [87, 2, 1, "", "__call__"], [87, 2, 1, "", "__init__"], [87, 2, 1, "", "__mul__"], [87, 2, 1, "", "add_state"], [87, 2, 1, "", "clone"], [87, 2, 1, "", "compute"], [87, 2, 1, "", "reset_state"], [87, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve": [[88, 2, 1, "", "__add__"], [88, 2, 1, "", "__call__"], [88, 2, 1, "", "__init__"], [88, 2, 1, "", "__mul__"], [88, 2, 1, "", "add_state"], [88, 2, 1, "", "clone"], [88, 2, 1, "", "compute"], [88, 2, 1, "", "reset_state"], [88, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve": [[89, 2, 1, "", "__add__"], [89, 2, 1, "", "__call__"], [89, 2, 1, "", "__init__"], [89, 2, 1, "", "__mul__"], [89, 2, 1, "", "add_state"], [89, 2, 1, "", "clone"], [89, 2, 1, "", "compute"], [89, 2, 1, "", "reset_state"], [89, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve": [[90, 2, 1, "", "__add__"], [90, 2, 1, "", "__call__"], [90, 2, 1, "", "__init__"], [90, 2, 1, "", "__mul__"], [90, 2, 1, "", "add_state"], [90, 2, 1, "", "clone"], [90, 2, 1, "", "compute"], [90, 2, 1, "", "reset_state"], [90, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.roc": [[92, 1, 1, "", "BinaryROCCurve"], [93, 1, 1, "", "MulticlassROCCurve"], [94, 1, 1, "", "MultilabelROCCurve"], [95, 1, 1, "", "ROCCurve"]], "cyclops.evaluate.metrics.roc.BinaryROCCurve": [[92, 2, 1, "", "__add__"], [92, 2, 1, "", "__call__"], [92, 2, 1, "", "__init__"], [92, 2, 1, "", "__mul__"], [92, 2, 1, "", "add_state"], [92, 2, 1, "", "clone"], [92, 2, 1, "", "compute"], [92, 2, 1, "", "reset_state"], [92, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.roc.MulticlassROCCurve": [[93, 2, 1, "", "__add__"], [93, 2, 1, "", "__call__"], [93, 2, 1, "", "__init__"], [93, 2, 1, "", "__mul__"], [93, 2, 1, "", "add_state"], [93, 2, 1, "", "clone"], [93, 2, 1, "", "compute"], [93, 2, 1, "", "reset_state"], [93, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.roc.MultilabelROCCurve": [[94, 2, 1, "", "__add__"], [94, 2, 1, "", "__call__"], [94, 2, 1, "", "__init__"], [94, 2, 1, "", "__mul__"], [94, 2, 1, "", "add_state"], [94, 2, 1, "", "clone"], [94, 2, 1, "", "compute"], [94, 2, 1, "", "reset_state"], [94, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.roc.ROCCurve": [[95, 2, 1, "", "__add__"], [95, 2, 1, "", "__call__"], [95, 2, 1, "", "__init__"], [95, 2, 1, "", "__mul__"], [95, 2, 1, "", "add_state"], [95, 2, 1, "", "clone"], [95, 2, 1, "", "compute"], [95, 2, 1, "", "reset_state"], [95, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.sensitivity": [[97, 1, 1, "", "BinarySensitivity"], [98, 1, 1, "", "MulticlassSensitivity"], [99, 1, 1, "", "MultilabelSensitivity"], [100, 1, 1, "", "Sensitivity"]], "cyclops.evaluate.metrics.sensitivity.BinarySensitivity": [[97, 2, 1, "", "__add__"], [97, 2, 1, "", "__call__"], [97, 2, 1, "", "__init__"], [97, 2, 1, "", "__mul__"], [97, 2, 1, "", "add_state"], [97, 2, 1, "", "clone"], [97, 2, 1, "", "compute"], [97, 2, 1, "", "reset_state"], [97, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity": [[98, 2, 1, "", "__add__"], [98, 2, 1, "", "__call__"], [98, 2, 1, "", "__init__"], [98, 2, 1, "", "__mul__"], [98, 2, 1, "", "add_state"], [98, 2, 1, "", "clone"], [98, 2, 1, "", "compute"], [98, 2, 1, "", "reset_state"], [98, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity": [[99, 2, 1, "", "__add__"], [99, 2, 1, "", "__call__"], [99, 2, 1, "", "__init__"], [99, 2, 1, "", "__mul__"], [99, 2, 1, "", "add_state"], [99, 2, 1, "", "clone"], [99, 2, 1, "", "compute"], [99, 2, 1, "", "reset_state"], [99, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.sensitivity.Sensitivity": [[100, 2, 1, "", "__add__"], [100, 2, 1, "", "__call__"], [100, 2, 1, "", "__init__"], [100, 2, 1, "", "__mul__"], [100, 2, 1, "", "add_state"], [100, 2, 1, "", "clone"], [100, 2, 1, "", "compute"], [100, 2, 1, "", "reset_state"], [100, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.specificity": [[102, 1, 1, "", "BinarySpecificity"], [103, 1, 1, "", "MulticlassSpecificity"], [104, 1, 1, "", "MultilabelSpecificity"], [105, 1, 1, "", "Specificity"]], "cyclops.evaluate.metrics.specificity.BinarySpecificity": [[102, 2, 1, "", "__add__"], [102, 2, 1, "", "__call__"], [102, 2, 1, "", "__init__"], [102, 2, 1, "", "__mul__"], [102, 2, 1, "", "add_state"], [102, 2, 1, "", "clone"], [102, 2, 1, "", "compute"], [102, 2, 1, "", "reset_state"], [102, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.specificity.MulticlassSpecificity": [[103, 2, 1, "", "__add__"], [103, 2, 1, "", "__call__"], [103, 2, 1, "", "__init__"], [103, 2, 1, "", "__mul__"], [103, 2, 1, "", "add_state"], [103, 2, 1, "", "clone"], [103, 2, 1, "", "compute"], [103, 2, 1, "", "reset_state"], [103, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.specificity.MultilabelSpecificity": [[104, 2, 1, "", "__add__"], [104, 2, 1, "", "__call__"], [104, 2, 1, "", "__init__"], [104, 2, 1, "", "__mul__"], [104, 2, 1, "", "add_state"], [104, 2, 1, "", "clone"], [104, 2, 1, "", "compute"], [104, 2, 1, "", "reset_state"], [104, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.specificity.Specificity": [[105, 2, 1, "", "__add__"], [105, 2, 1, "", "__call__"], [105, 2, 1, "", "__init__"], [105, 2, 1, "", "__mul__"], [105, 2, 1, "", "add_state"], [105, 2, 1, "", "clone"], [105, 2, 1, "", "compute"], [105, 2, 1, "", "reset_state"], [105, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.stat_scores": [[107, 1, 1, "", "BinaryStatScores"], [108, 1, 1, "", "MulticlassStatScores"], [109, 1, 1, "", "MultilabelStatScores"], [110, 1, 1, "", "StatScores"]], "cyclops.evaluate.metrics.stat_scores.BinaryStatScores": [[107, 2, 1, "", "__add__"], [107, 2, 1, "", "__call__"], [107, 2, 1, "", "__init__"], [107, 2, 1, "", "__mul__"], [107, 2, 1, "", "add_state"], [107, 2, 1, "", "clone"], [107, 2, 1, "", "compute"], [107, 2, 1, "", "reset_state"], [107, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores": [[108, 2, 1, "", "__add__"], [108, 2, 1, "", "__call__"], [108, 2, 1, "", "__init__"], [108, 2, 1, "", "__mul__"], [108, 2, 1, "", "add_state"], [108, 2, 1, "", "clone"], [108, 2, 1, "", "compute"], [108, 2, 1, "", "reset_state"], [108, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores": [[109, 2, 1, "", "__add__"], [109, 2, 1, "", "__call__"], [109, 2, 1, "", "__init__"], [109, 2, 1, "", "__mul__"], [109, 2, 1, "", "add_state"], [109, 2, 1, "", "clone"], [109, 2, 1, "", "compute"], [109, 2, 1, "", "reset_state"], [109, 2, 1, "", "update_state"]], "cyclops.evaluate.metrics.stat_scores.StatScores": [[110, 2, 1, "", "__add__"], [110, 2, 1, "", "__call__"], [110, 2, 1, "", "__init__"], [110, 2, 1, "", "__mul__"], [110, 2, 1, "", "add_state"], [110, 2, 1, "", "clone"], [110, 2, 1, "", "compute"], [110, 5, 1, "", "name"], [110, 2, 1, "", "reset_state"], [110, 2, 1, "", "update_state"]], "cyclops.monitor": [[111, 0, 0, "-", "clinical_applicator"], [113, 0, 0, "-", "synthetic_applicator"]], "cyclops.monitor.clinical_applicator": [[112, 1, 1, "", "ClinicalShiftApplicator"]], "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator": [[112, 2, 1, "", "age"], [112, 2, 1, "", "apply_shift"], [112, 2, 1, "", "custom"], [112, 2, 1, "", "hospital_type"], [112, 2, 1, "", "month"], [112, 2, 1, "", "sex"], [112, 2, 1, "", "time"]], "cyclops.monitor.synthetic_applicator": [[114, 1, 1, "", "SyntheticShiftApplicator"], [115, 4, 1, "", "binary_noise_shift"], [116, 4, 1, "", "feature_association_shift"], [117, 4, 1, "", "feature_swap_shift"], [118, 4, 1, "", "gaussian_noise_shift"], [119, 4, 1, "", "knockout_shift"]], "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator": [[114, 2, 1, "", "apply_shift"]], "cyclops.report": [[120, 0, 0, "-", "report"]], "cyclops.report.report": [[121, 1, 1, "", "ModelCardReport"]], "cyclops.report.report.ModelCardReport": [[121, 2, 1, "", "export"], [121, 2, 1, "", "from_json_file"], [121, 2, 1, "", "log_citation"], [121, 2, 1, "", "log_dataset"], [121, 2, 1, "", "log_descriptor"], [121, 2, 1, "", "log_fairness_assessment"], [121, 2, 1, "", "log_from_dict"], [121, 2, 1, "", "log_image"], [121, 2, 1, "", "log_license"], [121, 2, 1, "", "log_model_parameters"], [121, 2, 1, "", "log_owner"], [121, 2, 1, "", "log_performance_metrics"], [121, 2, 1, "", "log_plotly_figure"], [121, 2, 1, "", "log_quantitative_analysis"], [121, 2, 1, "", "log_reference"], [121, 2, 1, "", "log_regulation"], [121, 2, 1, "", "log_risk"], [121, 2, 1, "", "log_use_case"], [121, 2, 1, "", "log_user"], [121, 2, 1, "", "log_version"]], "cyclops.tasks": [[122, 0, 0, "-", "classification"]], "cyclops.tasks.classification": [[123, 1, 1, "", "BinaryTabularClassificationTask"], [124, 1, 1, "", "MultilabelImageClassificationTask"]], "cyclops.tasks.classification.BinaryTabularClassificationTask": [[123, 2, 1, "", "__init__"], [123, 2, 1, "", "add_model"], [123, 5, 1, "", "data_type"], [123, 2, 1, "", "evaluate"], [123, 2, 1, "", "get_model"], [123, 2, 1, "", "list_models"], [123, 2, 1, "", "list_models_params"], [123, 2, 1, "", "load_model"], [123, 5, 1, "", "models_count"], [123, 2, 1, "", "predict"], [123, 2, 1, "", "save_model"], [123, 5, 1, "", "task_type"], [123, 2, 1, "", "train"]], "cyclops.tasks.classification.MultilabelImageClassificationTask": [[124, 2, 1, "", "__init__"], [124, 2, 1, "", "add_model"], [124, 5, 1, "", "data_type"], [124, 2, 1, "", "evaluate"], [124, 2, 1, "", "get_model"], [124, 2, 1, "", "list_models"], [124, 2, 1, "", "list_models_params"], [124, 2, 1, "", "load_model"], [124, 5, 1, "", "models_count"], [124, 2, 1, "", "predict"], [124, 2, 1, "", "save_model"], [124, 5, 1, "", "task_type"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:function", "5": "py:property"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"]}, "titleterms": {"api": [0, 136], "refer": 0, "contribut": [1, 3], "cyclop": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129], "pre": 1, "commit": 1, "hook": 1, "code": 1, "guidelin": 1, "welcom": 2, "": 2, "document": [2, 3], "content": 2, "get": 3, "start": 3, "instal": 3, "us": [3, 134, 137], "pip": 3, "develop": 3, "poetri": 3, "notebook": 3, "citat": 3, "data": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 125, 131, 132, 135, 137], "featur": [4, 5, 125, 131, 132, 135], "medical_imag": [4, 5], "medicalimag": 5, "slicer": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "slicespec": 7, "compound_filt": 8, "filter_datetim": 9, "filter_non_nul": 10, "filter_rang": 11, "filter_string_contain": 12, "filter_valu": 13, "is_datetim": 14, "overal": 15, "evalu": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 126, 131, 132, 135], "fair": [18, 19, 20, 21, 22, 126], "config": [18, 19], "fairnessconfig": 19, "evaluate_fair": 21, "warn_too_many_unique_valu": 22, "metric": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 126, 133], "accuraci": [23, 24, 25, 26, 27, 44], "binaryaccuraci": 25, "multiclassaccuraci": 26, "multilabelaccuraci": 27, "auroc": [28, 29, 30, 31, 32, 45, 133], "binaryauroc": 30, "multiclassauroc": 31, "multilabelauroc": 32, "f_beta": [33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 47, 48, 49, 50, 51, 52, 53, 54], "binaryf1scor": 34, "binaryfbetascor": 35, "f1score": 36, "fbetascor": 37, "multiclassf1scor": 38, "multiclassfbetascor": 39, "multilabelf1scor": 40, "multilabelfbetascor": 41, "factori": [42, 43], "create_metr": 43, "function": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 126], "binary_f1_scor": 47, "binary_fbeta_scor": 48, "f1_score": 49, "fbeta_scor": 50, "multiclass_f1_scor": 51, "multiclass_fbeta_scor": 52, "multilabel_f1_scor": 53, "multilabel_fbeta_scor": 54, "precision_recal": [55, 56, 57, 58, 59, 60, 61, 62, 63, 77, 78, 79, 80, 81, 82, 83, 84, 85], "binary_precis": 56, "binary_recal": 57, "multiclass_precis": 58, "multiclass_recal": 59, "multilabel_precis": 60, "multilabel_recal": 61, "precis": [62, 84], "recal": [63, 85], "precision_recall_curv": [64, 86, 87, 88, 89, 90], "roc": [65, 66, 67, 68, 69, 91, 92, 93, 94, 95], "binary_roc_curv": 66, "multiclass_roc_curv": 67, "multilabel_roc_curv": 68, "roc_curv": 69, "sensit": [70, 96, 97, 98, 99, 100, 134], "specif": [71, 101, 102, 103, 104, 105], "stat_scor": [72, 106, 107, 108, 109, 110], "metriccollect": 75, "operatormetr": 76, "binaryprecis": 78, "binaryrecal": 79, "multiclassprecis": 80, "multiclassrecal": 81, "multilabelprecis": 82, "multilabelrecal": 83, "binaryprecisionrecallcurv": 87, "multiclassprecisionrecallcurv": 88, "multilabelprecisionrecallcurv": 89, "precisionrecallcurv": 90, "binaryroccurv": 92, "multiclassroccurv": 93, "multilabelroccurv": 94, "roccurv": 95, "binarysensit": 97, "multiclasssensit": 98, "multilabelsensit": 99, "binaryspecif": 102, "multiclassspecif": 103, "multilabelspecif": 104, "binarystatscor": 107, "multiclassstatscor": 108, "multilabelstatscor": 109, "statscor": 110, "monitor": [111, 112, 113, 114, 115, 116, 117, 118, 119, 127, 136], "clinical_appl": [111, 112], "clinicalshiftappl": 112, "synthetic_appl": [113, 114, 115, 116, 117, 118, 119], "syntheticshiftappl": 114, "binary_noise_shift": 115, "feature_association_shift": 116, "feature_swap_shift": 117, "gaussian_noise_shift": 118, "knockout_shift": 119, "report": [120, 121, 128, 131, 132, 133, 135], "modelcardreport": 121, "task": [122, 123, 124, 129, 131, 132, 135], "classif": [122, 123, 124, 133, 137], "binarytabularclassificationtask": 123, "multilabelimageclassificationtask": 124, "tutori": [130, 134], "heart": [131, 137], "failur": [131, 137], "predict": [131, 132, 135, 137], "import": [131, 132, 133, 134, 135], "librari": [131, 132, 133, 134, 135], "constant": [131, 132, 135], "load": [131, 133, 134], "sex": [131, 133], "valu": 131, "ag": [131, 132, 133, 135], "distribut": [131, 132, 135], "outcom": [131, 132, 135], "identifi": [131, 132, 135], "type": [131, 132, 135], "creat": [131, 132, 135], "preprocessor": [131, 132, 135], "hug": [131, 132, 135], "face": [131, 132, 135], "dataset": [131, 132, 133, 134, 135], "model": [131, 132, 133, 134, 135], "creation": [131, 132, 133, 135], "train": [131, 132, 134, 135], "perform": [131, 133], "over": 131, "time": 131, "gener": [131, 132, 133, 134, 135], "mortal": [132, 137], "queri": [132, 135], "process": 132, "comput": [132, 135], "label": [132, 135], "inspect": [132, 135], "preprocess": [132, 135], "drop": [132, 135], "nan": [132, 135], "base": [132, 135], "nan_threshold": [132, 135], "gender": [132, 135], "chest": [133, 137], "x": [133, 137], "rai": [133, 137], "diseas": 133, "histor": 133, "initi": 133, "period": 133, "multilabel": 133, "pathologi": 133, "log": 133, "test": [133, 134], "w": 133, "threshold": 133, "popul": 133, "card": 133, "field": 133, "nihcxr": 134, "clinic": 134, "drift": 134, "experi": 134, "exampl": [134, 137], "1": 134, "sourc": 134, "target": 134, "2": 134, "3": 134, "dimension": 134, "reduct": 134, "techniqu": 134, "differ": 134, "4": 134, "shift": 134, "5": 134, "roll": 134, "window": 134, "synthet": 134, "timestamp": 134, "biweekli": 134, "prolong": [135, 137], "length": [135, 137], "stai": [135, 137], "case": 137, "tabular": 137, "kaggl": 137, "mimiciv": 137, "synthea": 137, "imag": 137, "nih": 137}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "nbsphinx": 4, "sphinx": 60}, "alltitles": {"API Reference": [[0, "api-reference"]], "Contributing to cyclops": [[1, "contributing-to-cyclops"]], "Pre-commit hooks": [[1, "pre-commit-hooks"]], "Coding guidelines": [[1, "coding-guidelines"]], "Welcome to cyclops\u2019s documentation!": [[2, "welcome-to-cyclops-s-documentation"]], "Contents:": [[2, null]], "\ud83d\udc23 Getting Started": [[3, "getting-started"]], "Installing cyclops using pip": [[3, "installing-cyclops-using-pip"]], "\ud83e\uddd1\ud83c\udfff\u200d\ud83d\udcbb Developing": [[3, "developing"]], "Using poetry": [[3, "using-poetry"]], "Contributing": [[3, "contributing"]], "\ud83d\udcda Documentation": [[3, "documentation"]], "\ud83d\udcd3 Notebooks": [[3, "notebooks"]], "\ud83c\udf93 Citation": [[3, "citation"]], "cyclops.data.features.medical_image": [[4, "module-cyclops.data.features.medical_image"]], "cyclops.data.features.medical_image.MedicalImage": [[5, "cyclops-data-features-medical-image-medicalimage"]], "cyclops.data.slicer": [[6, "module-cyclops.data.slicer"]], "cyclops.data.slicer.SliceSpec": [[7, "cyclops-data-slicer-slicespec"]], "cyclops.data.slicer.compound_filter": [[8, "cyclops-data-slicer-compound-filter"]], "cyclops.data.slicer.filter_datetime": [[9, "cyclops-data-slicer-filter-datetime"]], "cyclops.data.slicer.filter_non_null": [[10, "cyclops-data-slicer-filter-non-null"]], "cyclops.data.slicer.filter_range": [[11, "cyclops-data-slicer-filter-range"]], "cyclops.data.slicer.filter_string_contains": [[12, "cyclops-data-slicer-filter-string-contains"]], "cyclops.data.slicer.filter_value": [[13, "cyclops-data-slicer-filter-value"]], "cyclops.data.slicer.is_datetime": [[14, "cyclops-data-slicer-is-datetime"]], "cyclops.data.slicer.overall": [[15, "cyclops-data-slicer-overall"]], "cyclops.evaluate.evaluator": [[16, "module-cyclops.evaluate.evaluator"]], "cyclops.evaluate.evaluator.evaluate": [[17, "cyclops-evaluate-evaluator-evaluate"]], "cyclops.evaluate.fairness.config": [[18, "module-cyclops.evaluate.fairness.config"]], "cyclops.evaluate.fairness.config.FairnessConfig": [[19, "cyclops-evaluate-fairness-config-fairnessconfig"]], "cyclops.evaluate.fairness.evaluator": [[20, "module-cyclops.evaluate.fairness.evaluator"]], "cyclops.evaluate.fairness.evaluator.evaluate_fairness": [[21, "cyclops-evaluate-fairness-evaluator-evaluate-fairness"]], "cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values": [[22, "cyclops-evaluate-fairness-evaluator-warn-too-many-unique-values"]], "cyclops.evaluate.metrics.accuracy": [[23, "module-cyclops.evaluate.metrics.accuracy"]], "cyclops.evaluate.metrics.accuracy.Accuracy": [[24, "cyclops-evaluate-metrics-accuracy-accuracy"]], "cyclops.evaluate.metrics.accuracy.BinaryAccuracy": [[25, "cyclops-evaluate-metrics-accuracy-binaryaccuracy"]], "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy": [[26, "cyclops-evaluate-metrics-accuracy-multiclassaccuracy"]], "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy": [[27, "cyclops-evaluate-metrics-accuracy-multilabelaccuracy"]], "cyclops.evaluate.metrics.auroc": [[28, "module-cyclops.evaluate.metrics.auroc"]], "cyclops.evaluate.metrics.auroc.AUROC": [[29, "cyclops-evaluate-metrics-auroc-auroc"]], "cyclops.evaluate.metrics.auroc.BinaryAUROC": [[30, "cyclops-evaluate-metrics-auroc-binaryauroc"]], "cyclops.evaluate.metrics.auroc.MulticlassAUROC": [[31, "cyclops-evaluate-metrics-auroc-multiclassauroc"]], "cyclops.evaluate.metrics.auroc.MultilabelAUROC": [[32, "cyclops-evaluate-metrics-auroc-multilabelauroc"]], "cyclops.evaluate.metrics.f_beta": [[33, "module-cyclops.evaluate.metrics.f_beta"]], "cyclops.evaluate.metrics.f_beta.BinaryF1Score": [[34, "cyclops-evaluate-metrics-f-beta-binaryf1score"]], "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore": [[35, "cyclops-evaluate-metrics-f-beta-binaryfbetascore"]], "cyclops.evaluate.metrics.f_beta.F1Score": [[36, "cyclops-evaluate-metrics-f-beta-f1score"]], "cyclops.evaluate.metrics.f_beta.FbetaScore": [[37, "cyclops-evaluate-metrics-f-beta-fbetascore"]], "cyclops.evaluate.metrics.f_beta.MulticlassF1Score": [[38, "cyclops-evaluate-metrics-f-beta-multiclassf1score"]], "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore": [[39, "cyclops-evaluate-metrics-f-beta-multiclassfbetascore"]], "cyclops.evaluate.metrics.f_beta.MultilabelF1Score": [[40, "cyclops-evaluate-metrics-f-beta-multilabelf1score"]], "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore": [[41, "cyclops-evaluate-metrics-f-beta-multilabelfbetascore"]], "cyclops.evaluate.metrics.factory": [[42, "module-cyclops.evaluate.metrics.factory"]], "cyclops.evaluate.metrics.factory.create_metric": [[43, "cyclops-evaluate-metrics-factory-create-metric"]], "cyclops.evaluate.metrics.functional.accuracy": [[44, "module-cyclops.evaluate.metrics.functional.accuracy"]], "cyclops.evaluate.metrics.functional.auroc": [[45, "module-cyclops.evaluate.metrics.functional.auroc"]], "cyclops.evaluate.metrics.functional.f_beta": [[46, "module-cyclops.evaluate.metrics.functional.f_beta"]], "cyclops.evaluate.metrics.functional.f_beta.binary_f1_score": [[47, "cyclops-evaluate-metrics-functional-f-beta-binary-f1-score"]], "cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score": [[48, "cyclops-evaluate-metrics-functional-f-beta-binary-fbeta-score"]], "cyclops.evaluate.metrics.functional.f_beta.f1_score": [[49, "cyclops-evaluate-metrics-functional-f-beta-f1-score"]], "cyclops.evaluate.metrics.functional.f_beta.fbeta_score": [[50, "cyclops-evaluate-metrics-functional-f-beta-fbeta-score"]], "cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score": [[51, "cyclops-evaluate-metrics-functional-f-beta-multiclass-f1-score"]], "cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score": [[52, "cyclops-evaluate-metrics-functional-f-beta-multiclass-fbeta-score"]], "cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score": [[53, "cyclops-evaluate-metrics-functional-f-beta-multilabel-f1-score"]], "cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score": [[54, "cyclops-evaluate-metrics-functional-f-beta-multilabel-fbeta-score"]], "cyclops.evaluate.metrics.functional.precision_recall": [[55, "module-cyclops.evaluate.metrics.functional.precision_recall"]], "cyclops.evaluate.metrics.functional.precision_recall.binary_precision": [[56, "cyclops-evaluate-metrics-functional-precision-recall-binary-precision"]], "cyclops.evaluate.metrics.functional.precision_recall.binary_recall": [[57, "cyclops-evaluate-metrics-functional-precision-recall-binary-recall"]], "cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision": [[58, "cyclops-evaluate-metrics-functional-precision-recall-multiclass-precision"]], "cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall": [[59, "cyclops-evaluate-metrics-functional-precision-recall-multiclass-recall"]], "cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision": [[60, "cyclops-evaluate-metrics-functional-precision-recall-multilabel-precision"]], "cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall": [[61, "cyclops-evaluate-metrics-functional-precision-recall-multilabel-recall"]], "cyclops.evaluate.metrics.functional.precision_recall.precision": [[62, "cyclops-evaluate-metrics-functional-precision-recall-precision"]], "cyclops.evaluate.metrics.functional.precision_recall.recall": [[63, "cyclops-evaluate-metrics-functional-precision-recall-recall"]], "cyclops.evaluate.metrics.functional.precision_recall_curve": [[64, "module-cyclops.evaluate.metrics.functional.precision_recall_curve"]], "cyclops.evaluate.metrics.functional.roc": [[65, "module-cyclops.evaluate.metrics.functional.roc"]], "cyclops.evaluate.metrics.functional.roc.binary_roc_curve": [[66, "cyclops-evaluate-metrics-functional-roc-binary-roc-curve"]], "cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve": [[67, "cyclops-evaluate-metrics-functional-roc-multiclass-roc-curve"]], "cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve": [[68, "cyclops-evaluate-metrics-functional-roc-multilabel-roc-curve"]], "cyclops.evaluate.metrics.functional.roc.roc_curve": [[69, "cyclops-evaluate-metrics-functional-roc-roc-curve"]], "cyclops.evaluate.metrics.functional.sensitivity": [[70, "module-cyclops.evaluate.metrics.functional.sensitivity"]], "cyclops.evaluate.metrics.functional.specificity": [[71, "module-cyclops.evaluate.metrics.functional.specificity"]], "cyclops.evaluate.metrics.functional.stat_scores": [[72, "module-cyclops.evaluate.metrics.functional.stat_scores"]], "cyclops.evaluate.metrics.metric": [[73, "module-cyclops.evaluate.metrics.metric"]], "cyclops.evaluate.metrics.metric.Metric": [[74, "cyclops-evaluate-metrics-metric-metric"]], "cyclops.evaluate.metrics.metric.MetricCollection": [[75, "cyclops-evaluate-metrics-metric-metriccollection"]], "cyclops.evaluate.metrics.metric.OperatorMetric": [[76, "cyclops-evaluate-metrics-metric-operatormetric"]], "cyclops.evaluate.metrics.precision_recall": [[77, "module-cyclops.evaluate.metrics.precision_recall"]], "cyclops.evaluate.metrics.precision_recall.BinaryPrecision": [[78, "cyclops-evaluate-metrics-precision-recall-binaryprecision"]], "cyclops.evaluate.metrics.precision_recall.BinaryRecall": [[79, "cyclops-evaluate-metrics-precision-recall-binaryrecall"]], "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision": [[80, "cyclops-evaluate-metrics-precision-recall-multiclassprecision"]], "cyclops.evaluate.metrics.precision_recall.MulticlassRecall": [[81, "cyclops-evaluate-metrics-precision-recall-multiclassrecall"]], "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision": [[82, "cyclops-evaluate-metrics-precision-recall-multilabelprecision"]], "cyclops.evaluate.metrics.precision_recall.MultilabelRecall": [[83, "cyclops-evaluate-metrics-precision-recall-multilabelrecall"]], "cyclops.evaluate.metrics.precision_recall.Precision": [[84, "cyclops-evaluate-metrics-precision-recall-precision"]], "cyclops.evaluate.metrics.precision_recall.Recall": [[85, "cyclops-evaluate-metrics-precision-recall-recall"]], "cyclops.evaluate.metrics.precision_recall_curve": [[86, "module-cyclops.evaluate.metrics.precision_recall_curve"]], "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve": [[87, "cyclops-evaluate-metrics-precision-recall-curve-binaryprecisionrecallcurve"]], "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve": [[88, "cyclops-evaluate-metrics-precision-recall-curve-multiclassprecisionrecallcurve"]], "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve": [[89, "cyclops-evaluate-metrics-precision-recall-curve-multilabelprecisionrecallcurve"]], "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve": [[90, "cyclops-evaluate-metrics-precision-recall-curve-precisionrecallcurve"]], "cyclops.evaluate.metrics.roc": [[91, "module-cyclops.evaluate.metrics.roc"]], "cyclops.evaluate.metrics.roc.BinaryROCCurve": [[92, "cyclops-evaluate-metrics-roc-binaryroccurve"]], "cyclops.evaluate.metrics.roc.MulticlassROCCurve": [[93, "cyclops-evaluate-metrics-roc-multiclassroccurve"]], "cyclops.evaluate.metrics.roc.MultilabelROCCurve": [[94, "cyclops-evaluate-metrics-roc-multilabelroccurve"]], "cyclops.evaluate.metrics.roc.ROCCurve": [[95, "cyclops-evaluate-metrics-roc-roccurve"]], "cyclops.evaluate.metrics.sensitivity": [[96, "module-cyclops.evaluate.metrics.sensitivity"]], "cyclops.evaluate.metrics.sensitivity.BinarySensitivity": [[97, "cyclops-evaluate-metrics-sensitivity-binarysensitivity"]], "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity": [[98, "cyclops-evaluate-metrics-sensitivity-multiclasssensitivity"]], "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity": [[99, "cyclops-evaluate-metrics-sensitivity-multilabelsensitivity"]], "cyclops.evaluate.metrics.sensitivity.Sensitivity": [[100, "cyclops-evaluate-metrics-sensitivity-sensitivity"]], "cyclops.evaluate.metrics.specificity": [[101, "module-cyclops.evaluate.metrics.specificity"]], "cyclops.evaluate.metrics.specificity.BinarySpecificity": [[102, "cyclops-evaluate-metrics-specificity-binaryspecificity"]], "cyclops.evaluate.metrics.specificity.MulticlassSpecificity": [[103, "cyclops-evaluate-metrics-specificity-multiclassspecificity"]], "cyclops.evaluate.metrics.specificity.MultilabelSpecificity": [[104, "cyclops-evaluate-metrics-specificity-multilabelspecificity"]], "cyclops.evaluate.metrics.specificity.Specificity": [[105, "cyclops-evaluate-metrics-specificity-specificity"]], "cyclops.evaluate.metrics.stat_scores": [[106, "module-cyclops.evaluate.metrics.stat_scores"]], "cyclops.evaluate.metrics.stat_scores.BinaryStatScores": [[107, "cyclops-evaluate-metrics-stat-scores-binarystatscores"]], "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores": [[108, "cyclops-evaluate-metrics-stat-scores-multiclassstatscores"]], "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores": [[109, "cyclops-evaluate-metrics-stat-scores-multilabelstatscores"]], "cyclops.evaluate.metrics.stat_scores.StatScores": [[110, "cyclops-evaluate-metrics-stat-scores-statscores"]], "cyclops.monitor.clinical_applicator": [[111, "module-cyclops.monitor.clinical_applicator"]], "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator": [[112, "cyclops-monitor-clinical-applicator-clinicalshiftapplicator"]], "cyclops.monitor.synthetic_applicator": [[113, "module-cyclops.monitor.synthetic_applicator"]], "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator": [[114, "cyclops-monitor-synthetic-applicator-syntheticshiftapplicator"]], "cyclops.monitor.synthetic_applicator.binary_noise_shift": [[115, "cyclops-monitor-synthetic-applicator-binary-noise-shift"]], "cyclops.monitor.synthetic_applicator.feature_association_shift": [[116, "cyclops-monitor-synthetic-applicator-feature-association-shift"]], "cyclops.monitor.synthetic_applicator.feature_swap_shift": [[117, "cyclops-monitor-synthetic-applicator-feature-swap-shift"]], "cyclops.monitor.synthetic_applicator.gaussian_noise_shift": [[118, "cyclops-monitor-synthetic-applicator-gaussian-noise-shift"]], "cyclops.monitor.synthetic_applicator.knockout_shift": [[119, "cyclops-monitor-synthetic-applicator-knockout-shift"]], "cyclops.report.report": [[120, "module-cyclops.report.report"]], "cyclops.report.report.ModelCardReport": [[121, "cyclops-report-report-modelcardreport"]], "cyclops.tasks.classification": [[122, "module-cyclops.tasks.classification"]], "cyclops.tasks.classification.BinaryTabularClassificationTask": [[123, "cyclops-tasks-classification-binarytabularclassificationtask"]], "cyclops.tasks.classification.MultilabelImageClassificationTask": [[124, "cyclops-tasks-classification-multilabelimageclassificationtask"]], "cyclops.data": [[125, "module-cyclops.data"]], "cyclops.data.features": [[125, "module-cyclops.data.features"]], "cyclops.evaluate": [[126, "module-cyclops.evaluate"]], "cyclops.evaluate.metrics": [[126, "module-cyclops.evaluate.metrics"]], "cyclops.evaluate.metrics.functional": [[126, "module-cyclops.evaluate.metrics.functional"]], "cyclops.evaluate.fairness": [[126, "module-cyclops.evaluate.fairness"]], "cyclops.monitor": [[127, "module-cyclops.monitor"]], "cyclops.report": [[128, "module-cyclops.report"]], "cyclops.tasks": [[129, "module-cyclops.tasks"]], "Tutorials": [[130, "tutorials"]], "Heart Failure Prediction": [[131, "Heart-Failure-Prediction"]], "Import Libraries": [[131, "Import-Libraries"], [132, "Import-Libraries"], [133, "Import-Libraries"], [135, "Import-Libraries"]], "Constants": [[131, "Constants"], [132, "Constants"], [135, "Constants"]], "Data Loading": [[131, "Data-Loading"]], "Sex values": [[131, "Sex-values"]], "Age distribution": [[131, "Age-distribution"], [132, "Age-distribution"], [135, "Age-distribution"]], "Outcome distribution": [[131, "Outcome-distribution"], [132, "Outcome-distribution"], [135, "Outcome-distribution"]], "Identifying feature types": [[131, "Identifying-feature-types"], [132, "Identifying-feature-types"], [135, "Identifying-feature-types"]], "Creating data preprocessors": [[131, "Creating-data-preprocessors"], [132, "Creating-data-preprocessors"], [135, "Creating-data-preprocessors"]], "Creating Hugging Face Dataset": [[131, "Creating-Hugging-Face-Dataset"], [132, "Creating-Hugging-Face-Dataset"], [135, "Creating-Hugging-Face-Dataset"]], "Model Creation": [[131, "Model-Creation"], [132, "Model-Creation"], [133, "Model-Creation"], [135, "Model-Creation"]], "Task Creation": [[131, "Task-Creation"], [132, "Task-Creation"], [135, "Task-Creation"]], "Training": [[131, "Training"], [132, "Training"], [135, "Training"]], "Prediction": [[131, "Prediction"], [132, "Prediction"], [135, "Prediction"]], "Evaluation": [[131, "Evaluation"], [132, "Evaluation"], [135, "Evaluation"]], "Performance over time": [[131, "Performance-over-time"]], "Report Generation": [[131, "Report-Generation"], [132, "Report-Generation"], [135, "Report-Generation"]], "Mortality Prediction": [[132, "Mortality-Prediction"]], "Data Querying & Processing": [[132, "Data-Querying-&-Processing"]], "Compute mortality (labels)": [[132, "Compute-mortality-(labels)"]], "Data Inspection and Preprocessing": [[132, "Data-Inspection-and-Preprocessing"], [135, "Data-Inspection-and-Preprocessing"]], "Drop NaNs based on the NAN_THRESHOLD": [[132, "Drop-NaNs-based-on-the-NAN_THRESHOLD"], [135, "Drop-NaNs-based-on-the-NAN_THRESHOLD"]], "Gender distribution": [[132, "Gender-distribution"], [135, "Gender-distribution"]], "Chest X-Ray Disease Classification": [[133, "Chest-X-Ray-Disease-Classification"]], "Generate Historical Reports": [[133, "Generate-Historical-Reports"]], "Initialize Periodic Report": [[133, "Initialize-Periodic-Report"]], "Load Dataset": [[133, "Load-Dataset"]], "Multilabel AUROC by Pathology and Sex": [[133, "Multilabel-AUROC-by-Pathology-and-Sex"]], "Multilabel AUROC by Pathology and Age": [[133, "Multilabel-AUROC-by-Pathology-and-Age"]], "Log Performance Metrics as Tests w/ Thresholds": [[133, "Log-Performance-Metrics-as-Tests-w/-Thresholds"]], "Populate Model Card Fields": [[133, "Populate-Model-Card-Fields"]], "NIHCXR Clinical Drift Experiments Tutorial": [[134, "NIHCXR-Clinical-Drift-Experiments-Tutorial"]], "Import Libraries and Load NIHCXR Dataset": [[134, "Import-Libraries-and-Load-NIHCXR-Dataset"]], "Example 1. Generate Source/Target Dataset for Experiments (1-2)": [[134, "Example-1.-Generate-Source/Target-Dataset-for-Experiments-(1-2)"]], "Example 2. Sensitivity test experiment with 3 dimensionality reduction techniques": [[134, "Example-2.-Sensitivity-test-experiment-with-3-dimensionality-reduction-techniques"]], "Example 3. Sensitivity test experiment with models trained on different datasets": [[134, "Example-3.-Sensitivity-test-experiment-with-models-trained-on-different-datasets"]], "Example 4. Sensitivity test experiment with different clinical shifts": [[134, "Example-4.-Sensitivity-test-experiment-with-different-clinical-shifts"]], "Example 5. Rolling window experiment with synthetic timestamps using biweekly window": [[134, "Example-5.-Rolling-window-experiment-with-synthetic-timestamps-using-biweekly-window"]], "Prolonged Length of Stay Prediction": [[135, "Prolonged-Length-of-Stay-Prediction"]], "Data Querying": [[135, "Data-Querying"]], "Compute length of stay (labels)": [[135, "Compute-length-of-stay-(labels)"]], "Length of stay distribution": [[135, "Length-of-stay-distribution"]], "monitor API": [[136, "monitor-api"]], "Example use cases": [[137, "example-use-cases"]], "Tabular data": [[137, "tabular-data"]], "Kaggle Heart Failure Prediction": [[137, "kaggle-heart-failure-prediction"]], "MIMICIV Mortality Prediction": [[137, "mimiciv-mortality-prediction"]], "Synthea Prolonged Length of Stay Prediction": [[137, "synthea-prolonged-length-of-stay-prediction"]], "Image data": [[137, "image-data"]], "NIH Chest X-ray classification": [[137, "nih-chest-x-ray-classification"]]}, "indexentries": {"cyclops.data.features.medical_image": [[4, "module-cyclops.data.features.medical_image"]], "module": [[4, "module-cyclops.data.features.medical_image"], [6, "module-cyclops.data.slicer"], [16, "module-cyclops.evaluate.evaluator"], [18, "module-cyclops.evaluate.fairness.config"], [20, "module-cyclops.evaluate.fairness.evaluator"], [23, "module-cyclops.evaluate.metrics.accuracy"], [28, "module-cyclops.evaluate.metrics.auroc"], [33, "module-cyclops.evaluate.metrics.f_beta"], [42, "module-cyclops.evaluate.metrics.factory"], [44, "module-cyclops.evaluate.metrics.functional.accuracy"], [45, "module-cyclops.evaluate.metrics.functional.auroc"], [46, "module-cyclops.evaluate.metrics.functional.f_beta"], [55, "module-cyclops.evaluate.metrics.functional.precision_recall"], [64, "module-cyclops.evaluate.metrics.functional.precision_recall_curve"], [65, "module-cyclops.evaluate.metrics.functional.roc"], [70, "module-cyclops.evaluate.metrics.functional.sensitivity"], [71, "module-cyclops.evaluate.metrics.functional.specificity"], [72, "module-cyclops.evaluate.metrics.functional.stat_scores"], [73, "module-cyclops.evaluate.metrics.metric"], [77, "module-cyclops.evaluate.metrics.precision_recall"], [86, "module-cyclops.evaluate.metrics.precision_recall_curve"], [91, "module-cyclops.evaluate.metrics.roc"], [96, "module-cyclops.evaluate.metrics.sensitivity"], [101, "module-cyclops.evaluate.metrics.specificity"], [106, "module-cyclops.evaluate.metrics.stat_scores"], [111, "module-cyclops.monitor.clinical_applicator"], [113, "module-cyclops.monitor.synthetic_applicator"], [120, "module-cyclops.report.report"], [122, "module-cyclops.tasks.classification"], [125, "module-cyclops.data"], [125, "module-cyclops.data.features"], [126, "module-cyclops.evaluate"], [126, "module-cyclops.evaluate.fairness"], [126, "module-cyclops.evaluate.metrics"], [126, "module-cyclops.evaluate.metrics.functional"], [127, "module-cyclops.monitor"], [128, "module-cyclops.report"], [129, "module-cyclops.tasks"]], "medicalimage (class in cyclops.data.features.medical_image)": [[5, "cyclops.data.features.medical_image.MedicalImage"]], "__call__() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.__call__"]], "cast_storage() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.cast_storage"]], "decode_example() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.decode_example"]], "embed_storage() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.embed_storage"]], "encode_example() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.encode_example"]], "flatten() (medicalimage method)": [[5, "cyclops.data.features.medical_image.MedicalImage.flatten"]], "cyclops.data.slicer": [[6, "module-cyclops.data.slicer"]], "slicespec (class in cyclops.data.slicer)": [[7, "cyclops.data.slicer.SliceSpec"]], "_registry (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec._registry"]], "add_slice_spec() (slicespec method)": [[7, "cyclops.data.slicer.SliceSpec.add_slice_spec"]], "column_names (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec.column_names"]], "get_slices() (slicespec method)": [[7, "cyclops.data.slicer.SliceSpec.get_slices"]], "include_overall (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec.include_overall"]], "slices() (slicespec method)": [[7, "cyclops.data.slicer.SliceSpec.slices"]], "spec_list (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec.spec_list"]], "validate (slicespec attribute)": [[7, "cyclops.data.slicer.SliceSpec.validate"]], "compound_filter() (in module cyclops.data.slicer)": [[8, "cyclops.data.slicer.compound_filter"]], "filter_datetime() (in module cyclops.data.slicer)": [[9, "cyclops.data.slicer.filter_datetime"]], "filter_non_null() (in module cyclops.data.slicer)": [[10, "cyclops.data.slicer.filter_non_null"]], "filter_range() (in module cyclops.data.slicer)": [[11, "cyclops.data.slicer.filter_range"]], "filter_string_contains() (in module cyclops.data.slicer)": [[12, "cyclops.data.slicer.filter_string_contains"]], "filter_value() (in module cyclops.data.slicer)": [[13, "cyclops.data.slicer.filter_value"]], "is_datetime() (in module cyclops.data.slicer)": [[14, "cyclops.data.slicer.is_datetime"]], "overall() (in module cyclops.data.slicer)": [[15, "cyclops.data.slicer.overall"]], "cyclops.evaluate.evaluator": [[16, "module-cyclops.evaluate.evaluator"]], "evaluate() (in module cyclops.evaluate.evaluator)": [[17, "cyclops.evaluate.evaluator.evaluate"]], "cyclops.evaluate.fairness.config": [[18, "module-cyclops.evaluate.fairness.config"]], "fairnessconfig (class in cyclops.evaluate.fairness.config)": [[19, "cyclops.evaluate.fairness.config.FairnessConfig"]], "cyclops.evaluate.fairness.evaluator": [[20, "module-cyclops.evaluate.fairness.evaluator"]], "evaluate_fairness() (in module cyclops.evaluate.fairness.evaluator)": [[21, "cyclops.evaluate.fairness.evaluator.evaluate_fairness"]], "warn_too_many_unique_values() (in module cyclops.evaluate.fairness.evaluator)": [[22, "cyclops.evaluate.fairness.evaluator.warn_too_many_unique_values"]], "cyclops.evaluate.metrics.accuracy": [[23, "module-cyclops.evaluate.metrics.accuracy"]], "accuracy (class in cyclops.evaluate.metrics.accuracy)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy"]], "__add__() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.__add__"]], "__call__() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.__call__"]], "__init__() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.__init__"]], "__mul__() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.__mul__"]], "add_state() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.add_state"]], "clone() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.clone"]], "compute() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.compute"]], "reset_state() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.reset_state"]], "update_state() (accuracy method)": [[24, "cyclops.evaluate.metrics.accuracy.Accuracy.update_state"]], "binaryaccuracy (class in cyclops.evaluate.metrics.accuracy)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy"]], "__add__() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.__add__"]], "__call__() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.__call__"]], "__init__() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.__init__"]], "__mul__() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.__mul__"]], "add_state() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.add_state"]], "clone() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.clone"]], "compute() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.compute"]], "reset_state() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.reset_state"]], "update_state() (binaryaccuracy method)": [[25, "cyclops.evaluate.metrics.accuracy.BinaryAccuracy.update_state"]], "multiclassaccuracy (class in cyclops.evaluate.metrics.accuracy)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy"]], "__add__() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.__add__"]], "__call__() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.__call__"]], "__init__() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.__init__"]], "__mul__() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.__mul__"]], "add_state() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.add_state"]], "clone() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.clone"]], "compute() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.compute"]], "reset_state() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.reset_state"]], "update_state() (multiclassaccuracy method)": [[26, "cyclops.evaluate.metrics.accuracy.MulticlassAccuracy.update_state"]], "multilabelaccuracy (class in cyclops.evaluate.metrics.accuracy)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy"]], "__add__() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.__add__"]], "__call__() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.__call__"]], "__init__() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.__init__"]], "__mul__() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.__mul__"]], "add_state() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.add_state"]], "clone() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.clone"]], "compute() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.compute"]], "reset_state() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.reset_state"]], "update_state() (multilabelaccuracy method)": [[27, "cyclops.evaluate.metrics.accuracy.MultilabelAccuracy.update_state"]], "cyclops.evaluate.metrics.auroc": [[28, "module-cyclops.evaluate.metrics.auroc"]], "auroc (class in cyclops.evaluate.metrics.auroc)": [[29, "cyclops.evaluate.metrics.auroc.AUROC"]], "__add__() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.__add__"]], "__call__() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.__call__"]], "__init__() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.__init__"]], "__mul__() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.__mul__"]], "add_state() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.add_state"]], "clone() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.clone"]], "compute() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.compute"]], "reset_state() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.reset_state"]], "update_state() (auroc method)": [[29, "cyclops.evaluate.metrics.auroc.AUROC.update_state"]], "binaryauroc (class in cyclops.evaluate.metrics.auroc)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC"]], "__add__() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.__add__"]], "__call__() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.__call__"]], "__init__() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.__init__"]], "__mul__() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.__mul__"]], "add_state() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.add_state"]], "clone() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.clone"]], "compute() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.compute"]], "reset_state() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.reset_state"]], "update_state() (binaryauroc method)": [[30, "cyclops.evaluate.metrics.auroc.BinaryAUROC.update_state"]], "multiclassauroc (class in cyclops.evaluate.metrics.auroc)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC"]], "__add__() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.__add__"]], "__call__() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.__call__"]], "__init__() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.__init__"]], "__mul__() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.__mul__"]], "add_state() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.add_state"]], "clone() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.clone"]], "compute() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.compute"]], "reset_state() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.reset_state"]], "update_state() (multiclassauroc method)": [[31, "cyclops.evaluate.metrics.auroc.MulticlassAUROC.update_state"]], "multilabelauroc (class in cyclops.evaluate.metrics.auroc)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC"]], "__add__() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.__add__"]], "__call__() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.__call__"]], "__init__() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.__init__"]], "__mul__() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.__mul__"]], "add_state() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.add_state"]], "clone() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.clone"]], "compute() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.compute"]], "reset_state() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.reset_state"]], "update_state() (multilabelauroc method)": [[32, "cyclops.evaluate.metrics.auroc.MultilabelAUROC.update_state"]], "cyclops.evaluate.metrics.f_beta": [[33, "module-cyclops.evaluate.metrics.f_beta"]], "binaryf1score (class in cyclops.evaluate.metrics.f_beta)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score"]], "__add__() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.__add__"]], "__call__() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.__call__"]], "__init__() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.__init__"]], "__mul__() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.__mul__"]], "add_state() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.add_state"]], "clone() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.clone"]], "compute() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.compute"]], "reset_state() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.reset_state"]], "update_state() (binaryf1score method)": [[34, "cyclops.evaluate.metrics.f_beta.BinaryF1Score.update_state"]], "binaryfbetascore (class in cyclops.evaluate.metrics.f_beta)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore"]], "__add__() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.__add__"]], "__call__() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.__call__"]], "__init__() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.__init__"]], "__mul__() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.__mul__"]], "add_state() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.add_state"]], "clone() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.clone"]], "compute() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.compute"]], "reset_state() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.reset_state"]], "update_state() (binaryfbetascore method)": [[35, "cyclops.evaluate.metrics.f_beta.BinaryFbetaScore.update_state"]], "f1score (class in cyclops.evaluate.metrics.f_beta)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score"]], "__add__() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.__add__"]], "__call__() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.__call__"]], "__init__() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.__init__"]], "__mul__() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.__mul__"]], "add_state() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.add_state"]], "clone() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.clone"]], "compute() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.compute"]], "reset_state() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.reset_state"]], "update_state() (f1score method)": [[36, "cyclops.evaluate.metrics.f_beta.F1Score.update_state"]], "fbetascore (class in cyclops.evaluate.metrics.f_beta)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore"]], "__add__() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.__add__"]], "__call__() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.__call__"]], "__init__() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.__init__"]], "__mul__() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.__mul__"]], "add_state() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.add_state"]], "clone() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.clone"]], "compute() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.compute"]], "reset_state() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.reset_state"]], "update_state() (fbetascore method)": [[37, "cyclops.evaluate.metrics.f_beta.FbetaScore.update_state"]], "multiclassf1score (class in cyclops.evaluate.metrics.f_beta)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score"]], "__add__() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.__add__"]], "__call__() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.__call__"]], "__init__() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.__init__"]], "__mul__() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.__mul__"]], "add_state() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.add_state"]], "clone() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.clone"]], "compute() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.compute"]], "reset_state() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.reset_state"]], "update_state() (multiclassf1score method)": [[38, "cyclops.evaluate.metrics.f_beta.MulticlassF1Score.update_state"]], "multiclassfbetascore (class in cyclops.evaluate.metrics.f_beta)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore"]], "__add__() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.__add__"]], "__call__() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.__call__"]], "__init__() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.__init__"]], "__mul__() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.__mul__"]], "add_state() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.add_state"]], "clone() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.clone"]], "compute() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.compute"]], "reset_state() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.reset_state"]], "update_state() (multiclassfbetascore method)": [[39, "cyclops.evaluate.metrics.f_beta.MulticlassFbetaScore.update_state"]], "multilabelf1score (class in cyclops.evaluate.metrics.f_beta)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score"]], "__add__() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.__add__"]], "__call__() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.__call__"]], "__init__() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.__init__"]], "__mul__() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.__mul__"]], "add_state() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.add_state"]], "clone() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.clone"]], "compute() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.compute"]], "reset_state() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.reset_state"]], "update_state() (multilabelf1score method)": [[40, "cyclops.evaluate.metrics.f_beta.MultilabelF1Score.update_state"]], "multilabelfbetascore (class in cyclops.evaluate.metrics.f_beta)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore"]], "__add__() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.__add__"]], "__call__() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.__call__"]], "__init__() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.__init__"]], "__mul__() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.__mul__"]], "add_state() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.add_state"]], "clone() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.clone"]], "compute() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.compute"]], "reset_state() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.reset_state"]], "update_state() (multilabelfbetascore method)": [[41, "cyclops.evaluate.metrics.f_beta.MultilabelFbetaScore.update_state"]], "cyclops.evaluate.metrics.factory": [[42, "module-cyclops.evaluate.metrics.factory"]], "create_metric() (in module cyclops.evaluate.metrics.factory)": [[43, "cyclops.evaluate.metrics.factory.create_metric"]], "cyclops.evaluate.metrics.functional.accuracy": [[44, "module-cyclops.evaluate.metrics.functional.accuracy"]], "cyclops.evaluate.metrics.functional.auroc": [[45, "module-cyclops.evaluate.metrics.functional.auroc"]], "cyclops.evaluate.metrics.functional.f_beta": [[46, "module-cyclops.evaluate.metrics.functional.f_beta"]], "binary_f1_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[47, "cyclops.evaluate.metrics.functional.f_beta.binary_f1_score"]], "binary_fbeta_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[48, "cyclops.evaluate.metrics.functional.f_beta.binary_fbeta_score"]], "f1_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[49, "cyclops.evaluate.metrics.functional.f_beta.f1_score"]], "fbeta_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[50, "cyclops.evaluate.metrics.functional.f_beta.fbeta_score"]], "multiclass_f1_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[51, "cyclops.evaluate.metrics.functional.f_beta.multiclass_f1_score"]], "multiclass_fbeta_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[52, "cyclops.evaluate.metrics.functional.f_beta.multiclass_fbeta_score"]], "multilabel_f1_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[53, "cyclops.evaluate.metrics.functional.f_beta.multilabel_f1_score"]], "multilabel_fbeta_score() (in module cyclops.evaluate.metrics.functional.f_beta)": [[54, "cyclops.evaluate.metrics.functional.f_beta.multilabel_fbeta_score"]], "cyclops.evaluate.metrics.functional.precision_recall": [[55, "module-cyclops.evaluate.metrics.functional.precision_recall"]], "binary_precision() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[56, "cyclops.evaluate.metrics.functional.precision_recall.binary_precision"]], "binary_recall() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[57, "cyclops.evaluate.metrics.functional.precision_recall.binary_recall"]], "multiclass_precision() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[58, "cyclops.evaluate.metrics.functional.precision_recall.multiclass_precision"]], "multiclass_recall() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[59, "cyclops.evaluate.metrics.functional.precision_recall.multiclass_recall"]], "multilabel_precision() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[60, "cyclops.evaluate.metrics.functional.precision_recall.multilabel_precision"]], "multilabel_recall() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[61, "cyclops.evaluate.metrics.functional.precision_recall.multilabel_recall"]], "precision() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[62, "cyclops.evaluate.metrics.functional.precision_recall.precision"]], "recall() (in module cyclops.evaluate.metrics.functional.precision_recall)": [[63, "cyclops.evaluate.metrics.functional.precision_recall.recall"]], "cyclops.evaluate.metrics.functional.precision_recall_curve": [[64, "module-cyclops.evaluate.metrics.functional.precision_recall_curve"]], "cyclops.evaluate.metrics.functional.roc": [[65, "module-cyclops.evaluate.metrics.functional.roc"]], "binary_roc_curve() (in module cyclops.evaluate.metrics.functional.roc)": [[66, "cyclops.evaluate.metrics.functional.roc.binary_roc_curve"]], "multiclass_roc_curve() (in module cyclops.evaluate.metrics.functional.roc)": [[67, "cyclops.evaluate.metrics.functional.roc.multiclass_roc_curve"]], "multilabel_roc_curve() (in module cyclops.evaluate.metrics.functional.roc)": [[68, "cyclops.evaluate.metrics.functional.roc.multilabel_roc_curve"]], "roc_curve() (in module cyclops.evaluate.metrics.functional.roc)": [[69, "cyclops.evaluate.metrics.functional.roc.roc_curve"]], "cyclops.evaluate.metrics.functional.sensitivity": [[70, "module-cyclops.evaluate.metrics.functional.sensitivity"]], "cyclops.evaluate.metrics.functional.specificity": [[71, "module-cyclops.evaluate.metrics.functional.specificity"]], "cyclops.evaluate.metrics.functional.stat_scores": [[72, "module-cyclops.evaluate.metrics.functional.stat_scores"]], "cyclops.evaluate.metrics.metric": [[73, "module-cyclops.evaluate.metrics.metric"]], "metric (class in cyclops.evaluate.metrics.metric)": [[74, "cyclops.evaluate.metrics.metric.Metric"]], "__add__() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.__add__"]], "__call__() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.__call__"]], "__init__() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.__init__"]], "__mul__() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.__mul__"]], "add_state() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.add_state"]], "clone() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.clone"]], "compute() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.compute"]], "name (metric property)": [[74, "cyclops.evaluate.metrics.metric.Metric.name"]], "reset_state() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.reset_state"]], "update_state() (metric method)": [[74, "cyclops.evaluate.metrics.metric.Metric.update_state"]], "metriccollection (class in cyclops.evaluate.metrics.metric)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection"]], "__call__() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.__call__"]], "__init__() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.__init__"]], "add_metrics() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.add_metrics"]], "clear() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.clear"]], "clone() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.clone"]], "compute() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.compute"]], "get() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.get"]], "items() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.items"]], "keys() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.keys"]], "pop() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.pop"]], "popitem() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.popitem"]], "reset_state() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.reset_state"]], "setdefault() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.setdefault"]], "update() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.update"]], "update_state() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.update_state"]], "values() (metriccollection method)": [[75, "cyclops.evaluate.metrics.metric.MetricCollection.values"]], "operatormetric (class in cyclops.evaluate.metrics.metric)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric"]], "__add__() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.__add__"]], "__call__() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.__call__"]], "__init__() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.__init__"]], "__mul__() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.__mul__"]], "add_state() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.add_state"]], "clone() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.clone"]], "compute() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.compute"]], "reset_state() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.reset_state"]], "update_state() (operatormetric method)": [[76, "cyclops.evaluate.metrics.metric.OperatorMetric.update_state"]], "cyclops.evaluate.metrics.precision_recall": [[77, "module-cyclops.evaluate.metrics.precision_recall"]], "binaryprecision (class in cyclops.evaluate.metrics.precision_recall)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision"]], "__add__() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.__add__"]], "__call__() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.__call__"]], "__init__() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.__init__"]], "__mul__() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.__mul__"]], "add_state() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.add_state"]], "clone() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.clone"]], "compute() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.compute"]], "reset_state() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.reset_state"]], "update_state() (binaryprecision method)": [[78, "cyclops.evaluate.metrics.precision_recall.BinaryPrecision.update_state"]], "binaryrecall (class in cyclops.evaluate.metrics.precision_recall)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall"]], "__add__() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.__add__"]], "__call__() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.__call__"]], "__init__() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.__init__"]], "__mul__() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.__mul__"]], "add_state() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.add_state"]], "clone() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.clone"]], "compute() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.compute"]], "reset_state() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.reset_state"]], "update_state() (binaryrecall method)": [[79, "cyclops.evaluate.metrics.precision_recall.BinaryRecall.update_state"]], "multiclassprecision (class in cyclops.evaluate.metrics.precision_recall)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision"]], "__add__() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.__add__"]], "__call__() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.__call__"]], "__init__() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.__init__"]], "__mul__() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.__mul__"]], "add_state() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.add_state"]], "clone() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.clone"]], "compute() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.compute"]], "reset_state() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.reset_state"]], "update_state() (multiclassprecision method)": [[80, "cyclops.evaluate.metrics.precision_recall.MulticlassPrecision.update_state"]], "multiclassrecall (class in cyclops.evaluate.metrics.precision_recall)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall"]], "__add__() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.__add__"]], "__call__() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.__call__"]], "__init__() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.__init__"]], "__mul__() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.__mul__"]], "add_state() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.add_state"]], "clone() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.clone"]], "compute() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.compute"]], "reset_state() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.reset_state"]], "update_state() (multiclassrecall method)": [[81, "cyclops.evaluate.metrics.precision_recall.MulticlassRecall.update_state"]], "multilabelprecision (class in cyclops.evaluate.metrics.precision_recall)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision"]], "__add__() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.__add__"]], "__call__() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.__call__"]], "__init__() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.__init__"]], "__mul__() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.__mul__"]], "add_state() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.add_state"]], "clone() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.clone"]], "compute() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.compute"]], "reset_state() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.reset_state"]], "update_state() (multilabelprecision method)": [[82, "cyclops.evaluate.metrics.precision_recall.MultilabelPrecision.update_state"]], "multilabelrecall (class in cyclops.evaluate.metrics.precision_recall)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall"]], "__add__() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.__add__"]], "__call__() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.__call__"]], "__init__() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.__init__"]], "__mul__() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.__mul__"]], "add_state() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.add_state"]], "clone() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.clone"]], "compute() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.compute"]], "reset_state() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.reset_state"]], "update_state() (multilabelrecall method)": [[83, "cyclops.evaluate.metrics.precision_recall.MultilabelRecall.update_state"]], "precision (class in cyclops.evaluate.metrics.precision_recall)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision"]], "__add__() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.__add__"]], "__call__() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.__call__"]], "__init__() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.__init__"]], "__mul__() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.__mul__"]], "add_state() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.add_state"]], "clone() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.clone"]], "compute() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.compute"]], "reset_state() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.reset_state"]], "update_state() (precision method)": [[84, "cyclops.evaluate.metrics.precision_recall.Precision.update_state"]], "recall (class in cyclops.evaluate.metrics.precision_recall)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall"]], "__add__() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.__add__"]], "__call__() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.__call__"]], "__init__() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.__init__"]], "__mul__() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.__mul__"]], "add_state() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.add_state"]], "clone() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.clone"]], "compute() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.compute"]], "reset_state() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.reset_state"]], "update_state() (recall method)": [[85, "cyclops.evaluate.metrics.precision_recall.Recall.update_state"]], "cyclops.evaluate.metrics.precision_recall_curve": [[86, "module-cyclops.evaluate.metrics.precision_recall_curve"]], "binaryprecisionrecallcurve (class in cyclops.evaluate.metrics.precision_recall_curve)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve"]], "__add__() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.__add__"]], "__call__() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.__call__"]], "__init__() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.__init__"]], "__mul__() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.__mul__"]], "add_state() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.add_state"]], "clone() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.clone"]], "compute() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.compute"]], "reset_state() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.reset_state"]], "update_state() (binaryprecisionrecallcurve method)": [[87, "cyclops.evaluate.metrics.precision_recall_curve.BinaryPrecisionRecallCurve.update_state"]], "multiclassprecisionrecallcurve (class in cyclops.evaluate.metrics.precision_recall_curve)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve"]], "__add__() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.__add__"]], "__call__() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.__call__"]], "__init__() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.__init__"]], "__mul__() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.__mul__"]], "add_state() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.add_state"]], "clone() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.clone"]], "compute() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.compute"]], "reset_state() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.reset_state"]], "update_state() (multiclassprecisionrecallcurve method)": [[88, "cyclops.evaluate.metrics.precision_recall_curve.MulticlassPrecisionRecallCurve.update_state"]], "multilabelprecisionrecallcurve (class in cyclops.evaluate.metrics.precision_recall_curve)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve"]], "__add__() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.__add__"]], "__call__() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.__call__"]], "__init__() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.__init__"]], "__mul__() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.__mul__"]], "add_state() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.add_state"]], "clone() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.clone"]], "compute() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.compute"]], "reset_state() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.reset_state"]], "update_state() (multilabelprecisionrecallcurve method)": [[89, "cyclops.evaluate.metrics.precision_recall_curve.MultilabelPrecisionRecallCurve.update_state"]], "precisionrecallcurve (class in cyclops.evaluate.metrics.precision_recall_curve)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve"]], "__add__() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.__add__"]], "__call__() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.__call__"]], "__init__() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.__init__"]], "__mul__() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.__mul__"]], "add_state() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.add_state"]], "clone() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.clone"]], "compute() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.compute"]], "reset_state() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.reset_state"]], "update_state() (precisionrecallcurve method)": [[90, "cyclops.evaluate.metrics.precision_recall_curve.PrecisionRecallCurve.update_state"]], "cyclops.evaluate.metrics.roc": [[91, "module-cyclops.evaluate.metrics.roc"]], "binaryroccurve (class in cyclops.evaluate.metrics.roc)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve"]], "__add__() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.__add__"]], "__call__() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.__call__"]], "__init__() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.__init__"]], "__mul__() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.__mul__"]], "add_state() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.add_state"]], "clone() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.clone"]], "compute() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.compute"]], "reset_state() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.reset_state"]], "update_state() (binaryroccurve method)": [[92, "cyclops.evaluate.metrics.roc.BinaryROCCurve.update_state"]], "multiclassroccurve (class in cyclops.evaluate.metrics.roc)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve"]], "__add__() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.__add__"]], "__call__() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.__call__"]], "__init__() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.__init__"]], "__mul__() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.__mul__"]], "add_state() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.add_state"]], "clone() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.clone"]], "compute() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.compute"]], "reset_state() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.reset_state"]], "update_state() (multiclassroccurve method)": [[93, "cyclops.evaluate.metrics.roc.MulticlassROCCurve.update_state"]], "multilabelroccurve (class in cyclops.evaluate.metrics.roc)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve"]], "__add__() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.__add__"]], "__call__() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.__call__"]], "__init__() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.__init__"]], "__mul__() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.__mul__"]], "add_state() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.add_state"]], "clone() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.clone"]], "compute() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.compute"]], "reset_state() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.reset_state"]], "update_state() (multilabelroccurve method)": [[94, "cyclops.evaluate.metrics.roc.MultilabelROCCurve.update_state"]], "roccurve (class in cyclops.evaluate.metrics.roc)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve"]], "__add__() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.__add__"]], "__call__() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.__call__"]], "__init__() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.__init__"]], "__mul__() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.__mul__"]], "add_state() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.add_state"]], "clone() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.clone"]], "compute() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.compute"]], "reset_state() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.reset_state"]], "update_state() (roccurve method)": [[95, "cyclops.evaluate.metrics.roc.ROCCurve.update_state"]], "cyclops.evaluate.metrics.sensitivity": [[96, "module-cyclops.evaluate.metrics.sensitivity"]], "binarysensitivity (class in cyclops.evaluate.metrics.sensitivity)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity"]], "__add__() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.__add__"]], "__call__() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.__call__"]], "__init__() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.__init__"]], "__mul__() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.__mul__"]], "add_state() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.add_state"]], "clone() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.clone"]], "compute() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.compute"]], "reset_state() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.reset_state"]], "update_state() (binarysensitivity method)": [[97, "cyclops.evaluate.metrics.sensitivity.BinarySensitivity.update_state"]], "multiclasssensitivity (class in cyclops.evaluate.metrics.sensitivity)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity"]], "__add__() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.__add__"]], "__call__() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.__call__"]], "__init__() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.__init__"]], "__mul__() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.__mul__"]], "add_state() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.add_state"]], "clone() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.clone"]], "compute() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.compute"]], "reset_state() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.reset_state"]], "update_state() (multiclasssensitivity method)": [[98, "cyclops.evaluate.metrics.sensitivity.MulticlassSensitivity.update_state"]], "multilabelsensitivity (class in cyclops.evaluate.metrics.sensitivity)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity"]], "__add__() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.__add__"]], "__call__() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.__call__"]], "__init__() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.__init__"]], "__mul__() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.__mul__"]], "add_state() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.add_state"]], "clone() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.clone"]], "compute() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.compute"]], "reset_state() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.reset_state"]], "update_state() (multilabelsensitivity method)": [[99, "cyclops.evaluate.metrics.sensitivity.MultilabelSensitivity.update_state"]], "sensitivity (class in cyclops.evaluate.metrics.sensitivity)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity"]], "__add__() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.__add__"]], "__call__() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.__call__"]], "__init__() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.__init__"]], "__mul__() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.__mul__"]], "add_state() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.add_state"]], "clone() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.clone"]], "compute() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.compute"]], "reset_state() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.reset_state"]], "update_state() (sensitivity method)": [[100, "cyclops.evaluate.metrics.sensitivity.Sensitivity.update_state"]], "cyclops.evaluate.metrics.specificity": [[101, "module-cyclops.evaluate.metrics.specificity"]], "binaryspecificity (class in cyclops.evaluate.metrics.specificity)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity"]], "__add__() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.__add__"]], "__call__() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.__call__"]], "__init__() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.__init__"]], "__mul__() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.__mul__"]], "add_state() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.add_state"]], "clone() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.clone"]], "compute() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.compute"]], "reset_state() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.reset_state"]], "update_state() (binaryspecificity method)": [[102, "cyclops.evaluate.metrics.specificity.BinarySpecificity.update_state"]], "multiclassspecificity (class in cyclops.evaluate.metrics.specificity)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity"]], "__add__() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.__add__"]], "__call__() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.__call__"]], "__init__() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.__init__"]], "__mul__() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.__mul__"]], "add_state() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.add_state"]], "clone() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.clone"]], "compute() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.compute"]], "reset_state() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.reset_state"]], "update_state() (multiclassspecificity method)": [[103, "cyclops.evaluate.metrics.specificity.MulticlassSpecificity.update_state"]], "multilabelspecificity (class in cyclops.evaluate.metrics.specificity)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity"]], "__add__() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.__add__"]], "__call__() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.__call__"]], "__init__() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.__init__"]], "__mul__() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.__mul__"]], "add_state() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.add_state"]], "clone() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.clone"]], "compute() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.compute"]], "reset_state() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.reset_state"]], "update_state() (multilabelspecificity method)": [[104, "cyclops.evaluate.metrics.specificity.MultilabelSpecificity.update_state"]], "specificity (class in cyclops.evaluate.metrics.specificity)": [[105, "cyclops.evaluate.metrics.specificity.Specificity"]], "__add__() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.__add__"]], "__call__() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.__call__"]], "__init__() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.__init__"]], "__mul__() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.__mul__"]], "add_state() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.add_state"]], "clone() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.clone"]], "compute() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.compute"]], "reset_state() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.reset_state"]], "update_state() (specificity method)": [[105, "cyclops.evaluate.metrics.specificity.Specificity.update_state"]], "cyclops.evaluate.metrics.stat_scores": [[106, "module-cyclops.evaluate.metrics.stat_scores"]], "binarystatscores (class in cyclops.evaluate.metrics.stat_scores)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores"]], "__add__() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.__add__"]], "__call__() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.__call__"]], "__init__() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.__init__"]], "__mul__() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.__mul__"]], "add_state() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.add_state"]], "clone() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.clone"]], "compute() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.compute"]], "reset_state() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.reset_state"]], "update_state() (binarystatscores method)": [[107, "cyclops.evaluate.metrics.stat_scores.BinaryStatScores.update_state"]], "multiclassstatscores (class in cyclops.evaluate.metrics.stat_scores)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores"]], "__add__() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.__add__"]], "__call__() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.__call__"]], "__init__() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.__init__"]], "__mul__() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.__mul__"]], "add_state() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.add_state"]], "clone() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.clone"]], "compute() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.compute"]], "reset_state() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.reset_state"]], "update_state() (multiclassstatscores method)": [[108, "cyclops.evaluate.metrics.stat_scores.MulticlassStatScores.update_state"]], "multilabelstatscores (class in cyclops.evaluate.metrics.stat_scores)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores"]], "__add__() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.__add__"]], "__call__() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.__call__"]], "__init__() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.__init__"]], "__mul__() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.__mul__"]], "add_state() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.add_state"]], "clone() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.clone"]], "compute() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.compute"]], "reset_state() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.reset_state"]], "update_state() (multilabelstatscores method)": [[109, "cyclops.evaluate.metrics.stat_scores.MultilabelStatScores.update_state"]], "statscores (class in cyclops.evaluate.metrics.stat_scores)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores"]], "__add__() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.__add__"]], "__call__() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.__call__"]], "__init__() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.__init__"]], "__mul__() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.__mul__"]], "add_state() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.add_state"]], "clone() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.clone"]], "compute() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.compute"]], "name (statscores property)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.name"]], "reset_state() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.reset_state"]], "update_state() (statscores method)": [[110, "cyclops.evaluate.metrics.stat_scores.StatScores.update_state"]], "cyclops.monitor.clinical_applicator": [[111, "module-cyclops.monitor.clinical_applicator"]], "clinicalshiftapplicator (class in cyclops.monitor.clinical_applicator)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator"]], "age() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.age"]], "apply_shift() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.apply_shift"]], "custom() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.custom"]], "hospital_type() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.hospital_type"]], "month() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.month"]], "sex() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.sex"]], "time() (clinicalshiftapplicator method)": [[112, "cyclops.monitor.clinical_applicator.ClinicalShiftApplicator.time"]], "cyclops.monitor.synthetic_applicator": [[113, "module-cyclops.monitor.synthetic_applicator"]], "syntheticshiftapplicator (class in cyclops.monitor.synthetic_applicator)": [[114, "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator"]], "apply_shift() (syntheticshiftapplicator method)": [[114, "cyclops.monitor.synthetic_applicator.SyntheticShiftApplicator.apply_shift"]], "binary_noise_shift() (in module cyclops.monitor.synthetic_applicator)": [[115, "cyclops.monitor.synthetic_applicator.binary_noise_shift"]], "feature_association_shift() (in module cyclops.monitor.synthetic_applicator)": [[116, "cyclops.monitor.synthetic_applicator.feature_association_shift"]], "feature_swap_shift() (in module cyclops.monitor.synthetic_applicator)": [[117, "cyclops.monitor.synthetic_applicator.feature_swap_shift"]], "gaussian_noise_shift() (in module cyclops.monitor.synthetic_applicator)": [[118, "cyclops.monitor.synthetic_applicator.gaussian_noise_shift"]], "knockout_shift() (in module cyclops.monitor.synthetic_applicator)": [[119, "cyclops.monitor.synthetic_applicator.knockout_shift"]], "cyclops.report.report": [[120, "module-cyclops.report.report"]], "modelcardreport (class in cyclops.report.report)": [[121, "cyclops.report.report.ModelCardReport"]], "export() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.export"]], "from_json_file() (modelcardreport class method)": [[121, "cyclops.report.report.ModelCardReport.from_json_file"]], "log_citation() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_citation"]], "log_dataset() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_dataset"]], "log_descriptor() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_descriptor"]], "log_fairness_assessment() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_fairness_assessment"]], "log_from_dict() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_from_dict"]], "log_image() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_image"]], "log_license() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_license"]], "log_model_parameters() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_model_parameters"]], "log_owner() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_owner"]], "log_performance_metrics() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_performance_metrics"]], "log_plotly_figure() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_plotly_figure"]], "log_quantitative_analysis() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_quantitative_analysis"]], "log_reference() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_reference"]], "log_regulation() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_regulation"]], "log_risk() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_risk"]], "log_use_case() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_use_case"]], "log_user() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_user"]], "log_version() (modelcardreport method)": [[121, "cyclops.report.report.ModelCardReport.log_version"]], "cyclops.tasks.classification": [[122, "module-cyclops.tasks.classification"]], "binarytabularclassificationtask (class in cyclops.tasks.classification)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask"]], "__init__() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.__init__"]], "add_model() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.add_model"]], "data_type (binarytabularclassificationtask property)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.data_type"]], "evaluate() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.evaluate"]], "get_model() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.get_model"]], "list_models() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.list_models"]], "list_models_params() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.list_models_params"]], "load_model() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.load_model"]], "models_count (binarytabularclassificationtask property)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.models_count"]], "predict() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.predict"]], "save_model() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.save_model"]], "task_type (binarytabularclassificationtask property)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.task_type"]], "train() (binarytabularclassificationtask method)": [[123, "cyclops.tasks.classification.BinaryTabularClassificationTask.train"]], "multilabelimageclassificationtask (class in cyclops.tasks.classification)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask"]], "__init__() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.__init__"]], "add_model() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.add_model"]], "data_type (multilabelimageclassificationtask property)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.data_type"]], "evaluate() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.evaluate"]], "get_model() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.get_model"]], "list_models() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.list_models"]], "list_models_params() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.list_models_params"]], "load_model() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.load_model"]], "models_count (multilabelimageclassificationtask property)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.models_count"]], "predict() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.predict"]], "save_model() (multilabelimageclassificationtask method)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.save_model"]], "task_type (multilabelimageclassificationtask property)": [[124, "cyclops.tasks.classification.MultilabelImageClassificationTask.task_type"]], "cyclops.data": [[125, "module-cyclops.data"]], "cyclops.data.features": [[125, "module-cyclops.data.features"]], "cyclops.evaluate": [[126, "module-cyclops.evaluate"]], "cyclops.evaluate.fairness": [[126, "module-cyclops.evaluate.fairness"]], "cyclops.evaluate.metrics": [[126, "module-cyclops.evaluate.metrics"]], "cyclops.evaluate.metrics.functional": [[126, "module-cyclops.evaluate.metrics.functional"]], "cyclops.monitor": [[127, "module-cyclops.monitor"]], "cyclops.report": [[128, "module-cyclops.report"]], "cyclops.tasks": [[129, "module-cyclops.tasks"]]}}) \ No newline at end of file diff --git a/api/tutorials/kaggle/heart_failure_prediction.html b/api/tutorials/kaggle/heart_failure_prediction.html index 6279be385..d17ff3555 100644 --- a/api/tutorials/kaggle/heart_failure_prediction.html +++ b/api/tutorials/kaggle/heart_failure_prediction.html @@ -485,7 +485,7 @@

Import Libraries
-/mnt/data/poetry/pycyclops-wIzUAwxh-py3.10/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
+/mnt/data/poetry/pycyclops-mhx6UJW0-py3.10/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
   from .autonotebook import tqdm as notebook_tqdm
 
@@ -557,7 +557,7 @@

Data Loading
-2023-11-23 08:24:41,145 INFO cyclops.utils.file - Loading DataFrame from ./data/heart.csv
+2023-11-24 11:13:02,043 INFO cyclops.utils.file - Loading DataFrame from ./data/heart.csv
 
-
+
@@ -1353,7 +1353,7 @@

Graphics

-
+
@@ -1361,7 +1361,7 @@

Graphics

-
+
@@ -1424,7 +1424,7 @@

Quantitative Analysis

- 0.8 + 0.71 @@ -1457,7 +1457,7 @@

Quantitative Analysis

- 0.9 + 1.0 @@ -1490,7 +1490,7 @@

Quantitative Analysis

- 0.85 + 0.9 @@ -1523,7 +1523,7 @@

Quantitative Analysis

- 0.99 + 1.0 @@ -1556,7 +1556,7 @@

Quantitative Analysis

- 0.84 + 0.6 @@ -1574,6 +1574,49 @@

Quantitative Analysis

+ + +
+

Graphics

+ +
+ + +
+ + + +
+ +
+ +
+ + + +
+ +
+ +
+ + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
@@ -1614,7 +1657,7 @@

Graphics

-
+
@@ -1669,7 +1712,7 @@

Version

- Date: 2023-11-23 + Date: 2023-11-24
@@ -1887,8 +1930,8 @@

Model Parameters

-

Validation_fraction

- 0.1 +

Power_t

+ 0.5
@@ -1896,26 +1939,22 @@

Validation_fraction

-

Penalty

- l2 +

Shuffle

+ True
-
-

Learning_rate

- adaptive -
-

Class_weight

- balanced +

Learning_rate

+ adaptive
@@ -1923,8 +1962,8 @@

Class_weight

-

Epsilon

- 0.1 +

Class_weight

+ balanced
@@ -1932,8 +1971,8 @@

Epsilon

-

Power_t

- 0.5 +

Average

+ False
@@ -1941,8 +1980,8 @@

Power_t

-

Warm_start

- False +

Verbose

+ 0
@@ -1959,8 +1998,8 @@

Max_iter

-

Alpha

- 0.001 +

Epsilon

+ 0.1
@@ -1968,8 +2007,8 @@

Alpha

-

Eta0

- 0.01 +

Random_state

+ 123
@@ -1977,8 +2016,8 @@

Eta0

-

Random_state

- 123 +

Warm_start

+ False
@@ -1986,7 +2025,7 @@

Random_state

-

Shuffle

+

Fit_intercept

True
@@ -1995,8 +2034,8 @@

Shuffle

-

Average

- False +

Validation_fraction

+ 0.1
@@ -2004,7 +2043,7 @@

Average

-

Fit_intercept

+

Early_stopping

True
@@ -2012,14 +2051,18 @@

Fit_intercept

+
+

Alpha

+ 0.001 +
-

N_iter_no_change

- 5 +

Penalty

+ l2
@@ -2027,8 +2070,8 @@

N_iter_no_change

-

L1_ratio

- 0.15 +

Tol

+ 0.001
@@ -2036,8 +2079,8 @@

L1_ratio

-

Verbose

- 0 +

N_iter_no_change

+ 5
@@ -2054,8 +2097,8 @@

Loss

-

Early_stopping

- True +

L1_ratio

+ 0.15
@@ -2063,8 +2106,8 @@

Early_stopping

-

Tol

- 0.001 +

Eta0

+ 0.01
@@ -2366,7 +2409,7 @@

Ethical Considerations

function generate_model_card_plot() { var model_card_plots = [] var overall_indices = [11, 12, 13, 14, 15] - var histories = JSON.parse("{\"0\": [\"0.8421052631578947\", \"0.9388452425942916\", \"0.7715498754845974\", \"0.7707471738924495\", \"0.8047192596079443\"], \"1\": [\"0.796875\", \"0.6473237331294894\", \"0.8904259730789965\", \"0.8876018804852451\", \"0.8136140274078921\"], \"2\": [\"0.8260869565217391\", \"0.7353343863368134\", \"1.0\", \"0.6544648927913362\", \"0.8210955737933718\"], \"3\": [\"0.6785714285714286\", \"0.7919668952937902\", \"0.6291783820910926\", \"0.5326082114183496\", \"0.5813701391072909\"], \"4\": [\"0.7450980392156863\", \"0.7644056435517494\", \"0.6853215239323296\", \"0.9626711874114409\", \"0.6702254333330125\"], \"5\": [\"0.8819444444444444\", \"0.994280029220096\", \"0.9571455905998957\", \"1.0\", \"0.7405786835226612\"], \"6\": [\"0.8623853211009175\", \"0.9172910829625154\", \"0.7657936656898735\", \"0.807871635560329\", \"0.7623651469403532\"], \"7\": [\"0.8676470588235294\", \"0.8135356598294874\", \"0.9450972604455096\", \"0.8268379025565245\", \"0.8626006007692846\"], \"8\": [\"0.9076923076923077\", \"0.9832478504674755\", \"1.0\", \"0.7961972386510326\", \"0.9014257673033106\"], \"9\": [\"0.8872180451127819\", \"0.9594326314640675\", \"0.9370363304040299\", \"0.9186284118847525\", \"0.7714923619447597\"], \"10\": [\"0.927972027972028\", \"0.8113611118890558\", \"0.9144437731851586\", \"0.9698325116171631\", \"0.9302504901737985\"], \"11\": [\"0.842391304347826\", \"0.9193114683535377\", \"0.9864783970277446\", \"0.7658222453419492\", \"0.7960421624802183\"], \"12\": [\"0.8686868686868687\", \"0.9556311389295675\", \"0.8807940946251006\", \"0.8053572715828856\", \"0.8970872746375872\"], \"13\": [\"0.8431372549019608\", \"0.8502327170958246\", \"0.7896432133785524\", \"0.9211576269580154\", \"0.8532945318236702\"], \"14\": [\"0.8557213930348259\", \"0.8164620859125082\", \"0.6723061832241325\", \"0.967304897158582\", \"0.990864550321209\"], \"15\": [\"0.9152319464371114\", \"0.8854306465584685\", \"0.8334144524161107\", \"0.8987415298849972\", \"0.8371863032723775\"]}"); + var histories = JSON.parse("{\"0\": [\"0.8421052631578947\", \"1.0\", \"1.0\", \"0.915029695471783\", \"0.8854227199246666\"], \"1\": [\"0.796875\", \"0.9919385585353486\", \"0.9946577698769941\", \"1.0\", \"1.0\"], \"2\": [\"0.8260869565217391\", \"0.7791735634138384\", \"0.7361794759259214\", \"0.6637711983856686\", \"0.8492747575572651\"], \"3\": [\"0.6785714285714286\", \"0.7349141241505789\", \"0.6506482245446827\", \"0.5340384515844391\", \"0.5962424134969672\"], \"4\": [\"0.7450980392156863\", \"0.749871238584802\", \"0.6806186088648097\", \"0.7029628905458104\", \"0.48266279770789233\"], \"5\": [\"0.8819444444444444\", \"0.9421074101446135\", \"0.9449605616784943\", \"0.9659403151543672\", \"0.8750350710495738\"], \"6\": [\"0.8623853211009175\", \"1.0\", \"0.9636390887760267\", \"0.9497848408413192\", \"0.8622753529425798\"], \"7\": [\"0.8676470588235294\", \"0.9138119245411664\", \"0.949523660604063\", \"0.9495041804447839\", \"1.0\"], \"8\": [\"0.9076923076923077\", \"0.8246041361147964\", \"0.8105302874620731\", \"0.9606215148160199\", \"0.9047802046146495\"], \"9\": [\"0.8872180451127819\", \"0.8949539233306965\", \"0.9671811054211867\", \"1.0\", \"0.9820965257002248\"], \"10\": [\"0.927972027972028\", \"0.9470545772243185\", \"1.0\", \"0.8827269667133483\", \"0.7908747856531504\"], \"11\": [\"0.842391304347826\", \"0.7688468661069753\", \"0.7669910936596005\", \"0.8372392681204278\", \"0.7081580620963568\"], \"12\": [\"0.8686868686868687\", \"0.9956847539282012\", \"0.9780280982854744\", \"1.0\", \"1.0\"], \"13\": [\"0.8431372549019608\", \"0.7390753216035594\", \"0.7240150394812629\", \"0.6953490064151775\", \"0.9047196566719026\"], \"14\": [\"0.8557213930348259\", \"0.968955119297434\", \"1.0\", \"0.9757272482787275\", \"1.0\"], \"15\": [\"0.9152319464371114\", \"0.8564523022715463\", \"0.8447313905909526\", \"0.7185590966888746\", \"0.5999692893957338\"]}"); var thresholds = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\"}"); var timestamps = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"]}"); @@ -2647,10 +2690,10 @@

Ethical Considerations

} } var slices_all = JSON.parse("{\"0\": [\"metric:Accuracy\", \"Sex:F\", \"Age:overall_Age\"], \"1\": [\"metric:Accuracy\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"2\": [\"metric:Precision\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"3\": [\"metric:Recall\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"4\": [\"metric:F1 Score\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"5\": [\"metric:AUROC\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"6\": [\"metric:Accuracy\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"7\": [\"metric:Precision\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"8\": [\"metric:Recall\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"9\": [\"metric:F1 Score\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"10\": [\"metric:AUROC\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"11\": [\"metric:Accuracy\", \"Sex:overall_Sex\", \"Age:overall_Age\"], \"12\": [\"metric:Precision\", \"Sex:overall_Sex\", \"Age:overall_Age\"], \"13\": [\"metric:Recall\", \"Sex:overall_Sex\", \"Age:overall_Age\"], \"14\": [\"metric:F1 Score\", \"Sex:overall_Sex\", \"Age:overall_Age\"], \"15\": [\"metric:AUROC\", \"Sex:overall_Sex\", \"Age:overall_Age\"]}"); - var histories_all = JSON.parse("{\"0\": [\"0.8421052631578947\", \"0.9388452425942916\", \"0.7715498754845974\", \"0.7707471738924495\", \"0.8047192596079443\"], \"1\": [\"0.796875\", \"0.6473237331294894\", \"0.8904259730789965\", \"0.8876018804852451\", \"0.8136140274078921\"], \"2\": [\"0.8260869565217391\", \"0.7353343863368134\", \"1.0\", \"0.6544648927913362\", \"0.8210955737933718\"], \"3\": [\"0.6785714285714286\", \"0.7919668952937902\", \"0.6291783820910926\", \"0.5326082114183496\", \"0.5813701391072909\"], \"4\": [\"0.7450980392156863\", \"0.7644056435517494\", \"0.6853215239323296\", \"0.9626711874114409\", \"0.6702254333330125\"], \"5\": [\"0.8819444444444444\", \"0.994280029220096\", \"0.9571455905998957\", \"1.0\", \"0.7405786835226612\"], \"6\": [\"0.8623853211009175\", \"0.9172910829625154\", \"0.7657936656898735\", \"0.807871635560329\", \"0.7623651469403532\"], \"7\": [\"0.8676470588235294\", \"0.8135356598294874\", \"0.9450972604455096\", \"0.8268379025565245\", \"0.8626006007692846\"], \"8\": [\"0.9076923076923077\", \"0.9832478504674755\", \"1.0\", \"0.7961972386510326\", \"0.9014257673033106\"], \"9\": [\"0.8872180451127819\", \"0.9594326314640675\", \"0.9370363304040299\", \"0.9186284118847525\", \"0.7714923619447597\"], \"10\": [\"0.927972027972028\", \"0.8113611118890558\", \"0.9144437731851586\", \"0.9698325116171631\", \"0.9302504901737985\"], \"11\": [\"0.842391304347826\", \"0.9193114683535377\", \"0.9864783970277446\", \"0.7658222453419492\", \"0.7960421624802183\"], \"12\": [\"0.8686868686868687\", \"0.9556311389295675\", \"0.8807940946251006\", \"0.8053572715828856\", \"0.8970872746375872\"], \"13\": [\"0.8431372549019608\", \"0.8502327170958246\", \"0.7896432133785524\", \"0.9211576269580154\", \"0.8532945318236702\"], \"14\": [\"0.8557213930348259\", \"0.8164620859125082\", \"0.6723061832241325\", \"0.967304897158582\", \"0.990864550321209\"], \"15\": [\"0.9152319464371114\", \"0.8854306465584685\", \"0.8334144524161107\", \"0.8987415298849972\", \"0.8371863032723775\"]}"); + var histories_all = JSON.parse("{\"0\": [\"0.8421052631578947\", \"1.0\", \"1.0\", \"0.915029695471783\", \"0.8854227199246666\"], \"1\": [\"0.796875\", \"0.9919385585353486\", \"0.9946577698769941\", \"1.0\", \"1.0\"], \"2\": [\"0.8260869565217391\", \"0.7791735634138384\", \"0.7361794759259214\", \"0.6637711983856686\", \"0.8492747575572651\"], \"3\": [\"0.6785714285714286\", \"0.7349141241505789\", \"0.6506482245446827\", \"0.5340384515844391\", \"0.5962424134969672\"], \"4\": [\"0.7450980392156863\", \"0.749871238584802\", \"0.6806186088648097\", \"0.7029628905458104\", \"0.48266279770789233\"], \"5\": [\"0.8819444444444444\", \"0.9421074101446135\", \"0.9449605616784943\", \"0.9659403151543672\", \"0.8750350710495738\"], \"6\": [\"0.8623853211009175\", \"1.0\", \"0.9636390887760267\", \"0.9497848408413192\", \"0.8622753529425798\"], \"7\": [\"0.8676470588235294\", \"0.9138119245411664\", \"0.949523660604063\", \"0.9495041804447839\", \"1.0\"], \"8\": [\"0.9076923076923077\", \"0.8246041361147964\", \"0.8105302874620731\", \"0.9606215148160199\", \"0.9047802046146495\"], \"9\": [\"0.8872180451127819\", \"0.8949539233306965\", \"0.9671811054211867\", \"1.0\", \"0.9820965257002248\"], \"10\": [\"0.927972027972028\", \"0.9470545772243185\", \"1.0\", \"0.8827269667133483\", \"0.7908747856531504\"], \"11\": [\"0.842391304347826\", \"0.7688468661069753\", \"0.7669910936596005\", \"0.8372392681204278\", \"0.7081580620963568\"], \"12\": [\"0.8686868686868687\", \"0.9956847539282012\", \"0.9780280982854744\", \"1.0\", \"1.0\"], \"13\": [\"0.8431372549019608\", \"0.7390753216035594\", \"0.7240150394812629\", \"0.6953490064151775\", \"0.9047196566719026\"], \"14\": [\"0.8557213930348259\", \"0.968955119297434\", \"1.0\", \"0.9757272482787275\", \"1.0\"], \"15\": [\"0.9152319464371114\", \"0.8564523022715463\", \"0.8447313905909526\", \"0.7185590966888746\", \"0.5999692893957338\"]}"); var thresholds_all = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\"}"); - var trends_all = JSON.parse("{\"0\": \"negative\", \"1\": \"positive\", \"2\": \"neutral\", \"3\": \"negative\", \"4\": \"neutral\", \"5\": \"negative\", \"6\": \"negative\", \"7\": \"neutral\", \"8\": \"negative\", \"9\": \"negative\", \"10\": \"positive\", \"11\": \"negative\", \"12\": \"neutral\", \"13\": \"neutral\", \"14\": \"positive\", \"15\": \"negative\"}"); - var passed_all = JSON.parse("{\"0\": true, \"1\": true, \"2\": true, \"3\": false, \"4\": false, \"5\": true, \"6\": true, \"7\": true, \"8\": true, \"9\": true, \"10\": true, \"11\": true, \"12\": true, \"13\": true, \"14\": true, \"15\": true}"); + var trends_all = JSON.parse("{\"0\": \"neutral\", \"1\": \"positive\", \"2\": \"neutral\", \"3\": \"negative\", \"4\": \"negative\", \"5\": \"neutral\", \"6\": \"neutral\", \"7\": \"positive\", \"8\": \"positive\", \"9\": \"positive\", \"10\": \"negative\", \"11\": \"negative\", \"12\": \"positive\", \"13\": \"neutral\", \"14\": \"positive\", \"15\": \"negative\"}"); + var passed_all = JSON.parse("{\"0\": true, \"1\": true, \"2\": true, \"3\": false, \"4\": true, \"5\": true, \"6\": true, \"7\": true, \"8\": true, \"9\": true, \"10\": true, \"11\": true, \"12\": true, \"13\": true, \"14\": true, \"15\": true}"); var names_all = JSON.parse("{\"0\": \"Accuracy\", \"1\": \"Accuracy\", \"2\": \"Precision\", \"3\": \"Recall\", \"4\": \"F1 Score\", \"5\": \"AUROC\", \"6\": \"Accuracy\", \"7\": \"Precision\", \"8\": \"Recall\", \"9\": \"F1 Score\", \"10\": \"AUROC\", \"11\": \"Accuracy\", \"12\": \"Precision\", \"13\": \"Recall\", \"14\": \"F1 Score\", \"15\": \"AUROC\"}"); var timestamps_all = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"]}"); @@ -2923,10 +2966,10 @@

Ethical Considerations

} } var slices_all = JSON.parse("{\"0\": [\"metric:Accuracy\", \"Sex:F\", \"Age:overall_Age\"], \"1\": [\"metric:Accuracy\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"2\": [\"metric:Precision\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"3\": [\"metric:Recall\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"4\": [\"metric:F1 Score\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"5\": [\"metric:AUROC\", \"Age:[30 - 50)\", \"Sex:overall_Sex\"], \"6\": [\"metric:Accuracy\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"7\": [\"metric:Precision\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"8\": [\"metric:Recall\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"9\": [\"metric:F1 Score\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"10\": [\"metric:AUROC\", \"Age:[50 - 70)\", \"Sex:overall_Sex\"], \"11\": [\"metric:Accuracy\", \"Sex:overall_Sex\", \"Age:overall_Age\"], \"12\": [\"metric:Precision\", \"Sex:overall_Sex\", \"Age:overall_Age\"], \"13\": [\"metric:Recall\", \"Sex:overall_Sex\", \"Age:overall_Age\"], \"14\": [\"metric:F1 Score\", \"Sex:overall_Sex\", \"Age:overall_Age\"], \"15\": [\"metric:AUROC\", \"Sex:overall_Sex\", \"Age:overall_Age\"]}"); - var histories_all = JSON.parse("{\"0\": [\"0.8421052631578947\", \"0.9388452425942916\", \"0.7715498754845974\", \"0.7707471738924495\", \"0.8047192596079443\"], \"1\": [\"0.796875\", \"0.6473237331294894\", \"0.8904259730789965\", \"0.8876018804852451\", \"0.8136140274078921\"], \"2\": [\"0.8260869565217391\", \"0.7353343863368134\", \"1.0\", \"0.6544648927913362\", \"0.8210955737933718\"], \"3\": [\"0.6785714285714286\", \"0.7919668952937902\", \"0.6291783820910926\", \"0.5326082114183496\", \"0.5813701391072909\"], \"4\": [\"0.7450980392156863\", \"0.7644056435517494\", \"0.6853215239323296\", \"0.9626711874114409\", \"0.6702254333330125\"], \"5\": [\"0.8819444444444444\", \"0.994280029220096\", \"0.9571455905998957\", \"1.0\", \"0.7405786835226612\"], \"6\": [\"0.8623853211009175\", \"0.9172910829625154\", \"0.7657936656898735\", \"0.807871635560329\", \"0.7623651469403532\"], \"7\": [\"0.8676470588235294\", \"0.8135356598294874\", \"0.9450972604455096\", \"0.8268379025565245\", \"0.8626006007692846\"], \"8\": [\"0.9076923076923077\", \"0.9832478504674755\", \"1.0\", \"0.7961972386510326\", \"0.9014257673033106\"], \"9\": [\"0.8872180451127819\", \"0.9594326314640675\", \"0.9370363304040299\", \"0.9186284118847525\", \"0.7714923619447597\"], \"10\": [\"0.927972027972028\", \"0.8113611118890558\", \"0.9144437731851586\", \"0.9698325116171631\", \"0.9302504901737985\"], \"11\": [\"0.842391304347826\", \"0.9193114683535377\", \"0.9864783970277446\", \"0.7658222453419492\", \"0.7960421624802183\"], \"12\": [\"0.8686868686868687\", \"0.9556311389295675\", \"0.8807940946251006\", \"0.8053572715828856\", \"0.8970872746375872\"], \"13\": [\"0.8431372549019608\", \"0.8502327170958246\", \"0.7896432133785524\", \"0.9211576269580154\", \"0.8532945318236702\"], \"14\": [\"0.8557213930348259\", \"0.8164620859125082\", \"0.6723061832241325\", \"0.967304897158582\", \"0.990864550321209\"], \"15\": [\"0.9152319464371114\", \"0.8854306465584685\", \"0.8334144524161107\", \"0.8987415298849972\", \"0.8371863032723775\"]}"); + var histories_all = JSON.parse("{\"0\": [\"0.8421052631578947\", \"1.0\", \"1.0\", \"0.915029695471783\", \"0.8854227199246666\"], \"1\": [\"0.796875\", \"0.9919385585353486\", \"0.9946577698769941\", \"1.0\", \"1.0\"], \"2\": [\"0.8260869565217391\", \"0.7791735634138384\", \"0.7361794759259214\", \"0.6637711983856686\", \"0.8492747575572651\"], \"3\": [\"0.6785714285714286\", \"0.7349141241505789\", \"0.6506482245446827\", \"0.5340384515844391\", \"0.5962424134969672\"], \"4\": [\"0.7450980392156863\", \"0.749871238584802\", \"0.6806186088648097\", \"0.7029628905458104\", \"0.48266279770789233\"], \"5\": [\"0.8819444444444444\", \"0.9421074101446135\", \"0.9449605616784943\", \"0.9659403151543672\", \"0.8750350710495738\"], \"6\": [\"0.8623853211009175\", \"1.0\", \"0.9636390887760267\", \"0.9497848408413192\", \"0.8622753529425798\"], \"7\": [\"0.8676470588235294\", \"0.9138119245411664\", \"0.949523660604063\", \"0.9495041804447839\", \"1.0\"], \"8\": [\"0.9076923076923077\", \"0.8246041361147964\", \"0.8105302874620731\", \"0.9606215148160199\", \"0.9047802046146495\"], \"9\": [\"0.8872180451127819\", \"0.8949539233306965\", \"0.9671811054211867\", \"1.0\", \"0.9820965257002248\"], \"10\": [\"0.927972027972028\", \"0.9470545772243185\", \"1.0\", \"0.8827269667133483\", \"0.7908747856531504\"], \"11\": [\"0.842391304347826\", \"0.7688468661069753\", \"0.7669910936596005\", \"0.8372392681204278\", \"0.7081580620963568\"], \"12\": [\"0.8686868686868687\", \"0.9956847539282012\", \"0.9780280982854744\", \"1.0\", \"1.0\"], \"13\": [\"0.8431372549019608\", \"0.7390753216035594\", \"0.7240150394812629\", \"0.6953490064151775\", \"0.9047196566719026\"], \"14\": [\"0.8557213930348259\", \"0.968955119297434\", \"1.0\", \"0.9757272482787275\", \"1.0\"], \"15\": [\"0.9152319464371114\", \"0.8564523022715463\", \"0.8447313905909526\", \"0.7185590966888746\", \"0.5999692893957338\"]}"); var thresholds_all = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\"}"); - var trends_all = JSON.parse("{\"0\": \"negative\", \"1\": \"positive\", \"2\": \"neutral\", \"3\": \"negative\", \"4\": \"neutral\", \"5\": \"negative\", \"6\": \"negative\", \"7\": \"neutral\", \"8\": \"negative\", \"9\": \"negative\", \"10\": \"positive\", \"11\": \"negative\", \"12\": \"neutral\", \"13\": \"neutral\", \"14\": \"positive\", \"15\": \"negative\"}"); - var passed_all = JSON.parse("{\"0\": true, \"1\": true, \"2\": true, \"3\": false, \"4\": false, \"5\": true, \"6\": true, \"7\": true, \"8\": true, \"9\": true, \"10\": true, \"11\": true, \"12\": true, \"13\": true, \"14\": true, \"15\": true}"); + var trends_all = JSON.parse("{\"0\": \"neutral\", \"1\": \"positive\", \"2\": \"neutral\", \"3\": \"negative\", \"4\": \"negative\", \"5\": \"neutral\", \"6\": \"neutral\", \"7\": \"positive\", \"8\": \"positive\", \"9\": \"positive\", \"10\": \"negative\", \"11\": \"negative\", \"12\": \"positive\", \"13\": \"neutral\", \"14\": \"positive\", \"15\": \"negative\"}"); + var passed_all = JSON.parse("{\"0\": true, \"1\": true, \"2\": true, \"3\": false, \"4\": true, \"5\": true, \"6\": true, \"7\": true, \"8\": true, \"9\": true, \"10\": true, \"11\": true, \"12\": true, \"13\": true, \"14\": true, \"15\": true}"); var names_all = JSON.parse("{\"0\": \"Accuracy\", \"1\": \"Accuracy\", \"2\": \"Precision\", \"3\": \"Recall\", \"4\": \"F1 Score\", \"5\": \"AUROC\", \"6\": \"Accuracy\", \"7\": \"Precision\", \"8\": \"Recall\", \"9\": \"F1 Score\", \"10\": \"AUROC\", \"11\": \"Accuracy\", \"12\": \"Precision\", \"13\": \"Recall\", \"14\": \"F1 Score\", \"15\": \"AUROC\"}"); var timestamps_all = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"]}"); diff --git a/api/tutorials/mimiciv/mortality_prediction.html b/api/tutorials/mimiciv/mortality_prediction.html index de782e9a2..8f979cbeb 100644 --- a/api/tutorials/mimiciv/mortality_prediction.html +++ b/api/tutorials/mimiciv/mortality_prediction.html @@ -489,7 +489,7 @@

Import Libraries
-/mnt/data/poetry/pycyclops-wIzUAwxh-py3.10/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
+/mnt/data/poetry/pycyclops-mhx6UJW0-py3.10/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
   from .autonotebook import tqdm as notebook_tqdm
 

@@ -713,9 +713,9 @@

Compute mortality (labels)
-2023-11-23 08:25:00,453 INFO cycquery.orm    - Database setup, ready to run queries!
-2023-11-23 08:25:07,192 INFO cycquery.orm    - Query returned successfully!
-2023-11-23 08:25:07,193 INFO cycquery.utils.profile - Finished executing function run_query in 4.665388 s
+2023-11-24 11:13:20,676 INFO cycquery.orm    - Database setup, ready to run queries!
+2023-11-24 11:13:27,279 INFO cycquery.orm    - Query returned successfully!
+2023-11-24 11:13:27,280 INFO cycquery.utils.profile - Finished executing function run_query in 4.665870 s
 

@@ -800,9 +800,9 @@

Drop NaNs based on the

-
+
@@ -1417,7 +1417,7 @@

Graphics

-
+
@@ -1425,7 +1425,7 @@

Graphics

-
+
@@ -1433,7 +1433,7 @@

Graphics

-
+
@@ -1514,7 +1514,7 @@

Quantitative Analysis

- 1.0 + 0.97 @@ -1547,7 +1547,7 @@

Quantitative Analysis

- 0.05 + 0.54 @@ -1580,7 +1580,7 @@

Quantitative Analysis

- 0.0 + 0.17 @@ -1646,7 +1646,7 @@

Quantitative Analysis

- 0.75 + 0.99 @@ -1719,7 +1719,7 @@

Quantitative Analysis

- 0.9 + 0.88 @@ -1752,7 +1752,7 @@

Quantitative Analysis

- 0.08 + 0.51 @@ -1785,7 +1785,7 @@

Quantitative Analysis

- 0.0 + 0.13 @@ -1818,7 +1818,7 @@

Quantitative Analysis

- 0.06 + 0.23 @@ -1851,7 +1851,7 @@

Quantitative Analysis

- 0.73 + 0.91 @@ -1869,6 +1869,9 @@

Quantitative Analysis

+ + +
@@ -1909,7 +1912,7 @@

Graphics

-
+
@@ -1964,7 +1967,7 @@

Version

- Date: 2023-11-23 + Date: 2023-11-24
@@ -2191,10 +2194,6 @@

Model Parameters

-
-

Gamma

- 10 -
@@ -2205,24 +2204,20 @@

Gamma

+
+

Random_state

+ 123 +
-
-

Objective

- binary:logistic -
-
-

Random_state

- 123 -
@@ -2238,6 +2233,19 @@

Random_state

+
+

Gamma

+ 0 +
+ + + + + +
+

Max_depth

+ 2 +
@@ -2268,10 +2276,6 @@

Random_state

-
-

Missing

- nan -
@@ -2288,8 +2292,8 @@

Missing

-

Seed

- 123 +

Missing

+ nan
@@ -2301,6 +2305,10 @@

Seed

+
+

N_estimators

+ 250 +
@@ -2312,18 +2320,14 @@

Seed

-

Colsample_bytree

- 0.8 +

Min_child_weight

+ 3
-
-

Enable_categorical

- False -
@@ -2340,8 +2344,8 @@

Enable_categorical

-

N_estimators

- 500 +

Seed

+ 123
@@ -2349,8 +2353,8 @@

N_estimators

-

Reg_lambda

- 10 +

Eval_metric

+ logloss
@@ -2363,8 +2367,8 @@

Reg_lambda

-

Eval_metric

- logloss +

Reg_lambda

+ 0
@@ -2377,8 +2381,8 @@

Eval_metric

-

Max_depth

- 5 +

Learning_rate

+ 0.1
@@ -2390,11 +2394,10 @@

Max_depth

- - - - - +
+

Enable_categorical

+ False +
@@ -2406,14 +2409,18 @@

Max_depth

-

Learning_rate

- 0.01 +

Colsample_bytree

+ 0.7
+
+

Objective

+ binary:logistic +
@@ -2424,10 +2431,6 @@

Learning_rate

-
-

Min_child_weight

- 3 -
@@ -2703,7 +2706,7 @@

Ethical Considerations

function generate_model_card_plot() { var model_card_plots = [] var overall_indices = [20, 21, 22, 23, 24, 45, 46, 47, 48, 49] - var histories = JSON.parse("{\"0\": [\"0.9938556067588326\", \"1.0\", \"1.0\", \"1.0\", \"0.9624791516577729\", \"0.9684155793292565\", \"1.0\", \"0.9322132496657871\"], \"1\": [\"0.0\", \"0.09971832307720793\", \"0.0\", \"0.0\", \"0.038443657820264196\", \"0.0\", \"0.07858249637040482\", \"0.061570421819291135\"], \"2\": [\"0.0\", \"0.0\", \"0.21979967941589065\", \"0.15202165141211327\", \"0.0\", \"0.0\", \"0.078096307870897\", \"0.0\"], \"3\": [\"0.0\", \"0.0\", \"0.09105647730583516\", \"0.0\", \"0.0\", \"0.22316854841702705\", \"0.0\", \"0.0\"], \"4\": [\"0.7482612055641422\", \"0.719862989681311\", \"0.7445177672186913\", \"0.7831315648403597\", \"0.6248692306176002\", \"0.9026667908500056\", \"0.7483615351710936\", \"0.6968843874934543\"], \"5\": [\"0.9868184541641701\", \"0.9561559632039621\", \"1.0\", \"0.8890350948324139\", \"0.9061253253169075\", \"1.0\", \"0.9554172251312234\", \"1.0\"], \"6\": [\"0.0\", \"0.11621016177733319\", \"0.0\", \"0.0025444729693200447\", \"0.10367468378142052\", \"0.0\", \"0.008875244086175444\", \"0.10673727865066363\"], \"7\": [\"0.0\", \"0.027138301602683376\", \"0.0\", \"0.0\", \"0.037976948609530936\", \"0.06422998127948823\", \"0.006593106121994086\", \"0.0\"], \"8\": [\"0.0\", \"0.0\", \"0.0076989604074267325\", \"0.04042806262160304\", \"0.0991827754307281\", \"0.0\", \"0.13649589008489377\", \"0.09380571831467463\"], \"9\": [\"0.8595380029806259\", \"0.7691904349721002\", \"0.9600788839291399\", \"0.8282775995129016\", \"0.878776435670868\", \"0.9333389163458563\", \"0.9787477386465779\", \"0.878917157319109\"], \"10\": [\"0.9755571531272466\", \"1.0\", \"1.0\", \"1.0\", \"0.9318934530955364\", \"1.0\", \"0.9078569142260178\", \"1.0\"], \"11\": [\"0.0\", \"0.0\", \"0.0\", \"0.08487166865765733\", \"0.07691937885651284\", \"0.14122120553678105\", \"0.0\", \"0.0\"], \"12\": [\"0.0\", \"0.047747879045533514\", \"0.0\", \"0.1224542067698369\", \"0.14397548239768707\", \"0.20318834352718707\", \"0.0\", \"0.03138137418675985\"], \"13\": [\"0.0\", \"0.0\", \"0.02800493604075518\", \"0.0\", \"0.0\", \"0.01789939217816505\", \"0.07106448031583336\", \"0.06673015341839304\"], \"14\": [\"0.8030148684381637\", \"0.6791560389729489\", \"0.8372962075729853\", \"0.962354749685657\", \"0.7362284586425828\", \"0.5678681660695661\", \"0.5500755630591415\", \"0.8362123392050905\"], \"15\": [\"0.9883720930232558\", \"1.0\", \"1.0\", \"0.7893196672803455\", \"1.0\", \"0.9835823483012499\", \"1.0\", \"0.7203832895438956\"], \"16\": [\"0.0\", \"0.0\", \"0.09578782265189635\", \"0.047638197685841994\", \"0.0\", \"0.14137367216595606\", \"0.0\", \"0.12197535771823882\"], \"17\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.011236234587489465\", \"0.030128043374910665\"], \"18\": [\"0.0\", \"0.0059083967835457185\", \"0.0\", \"0.0\", \"0.04178778860280271\", \"0.08787351815107622\", \"0.012956583022895492\", \"0.0007738551289361559\"], \"19\": [\"0.8488703439853451\", \"0.9127310386437131\", \"0.7796661407050053\", \"0.7282146766614328\", \"0.9307617989220323\", \"0.6979642133505481\", \"0.858507492541033\", \"0.9223149963128429\"], \"20\": [\"0.982124079915878\", \"0.9456210314817315\", \"1.0\", \"0.9577191324952529\", \"0.9764907964257965\", \"0.8505876630607123\", \"0.9759570070982758\", \"1.0\"], \"21\": [\"0.0\", \"0.0\", \"0.16498694780973078\", \"0.10178726506486496\", \"0.0\", \"0.0\", \"0.1214325068997815\", \"0.045606091153573176\"], \"22\": [\"0.0\", \"0.12459881244704388\", \"0.0\", \"0.0\", \"0.10071970835634388\", \"0.028781611018928368\", \"0.0\", \"0.0\"], \"23\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.030089728851838776\", \"0.0\", \"0.0\", \"0.0\"], \"24\": [\"0.8262060712936137\", \"0.882856522862133\", \"0.6536468342491204\", \"0.870719989604237\", \"0.8098316461099845\", \"0.9463595020554448\", \"0.9325249457459681\", \"0.7538263217935368\"], \"25\": [\"0.9938556067588326\", \"1.0\", \"1.0\", \"1.0\", \"0.9624791516577729\", \"0.9684155793292565\", \"1.0\", \"0.9322132496657871\", \"0.9562372812203237\"], \"26\": [\"0.0\", \"0.09971832307720793\", \"0.0\", \"0.0\", \"0.038443657820264196\", \"0.0\", \"0.07858249637040482\", \"0.061570421819291135\", \"0.0\"], \"27\": [\"0.0\", \"0.0\", \"0.21979967941589065\", \"0.15202165141211327\", \"0.0\", \"0.0\", \"0.078096307870897\", \"0.0\", \"0.0\"], \"28\": [\"0.0\", \"0.0\", \"0.09105647730583516\", \"0.0\", \"0.0\", \"0.22316854841702705\", \"0.0\", \"0.0\", \"0.04532526103716064\"], \"29\": [\"0.7482612055641422\", \"0.719862989681311\", \"0.7445177672186913\", \"0.7831315648403597\", \"0.6248692306176002\", \"0.9026667908500056\", \"0.7483615351710936\", \"0.6968843874934543\", \"0.7563975419116553\"], \"30\": [\"0.9868184541641701\", \"0.9561559632039621\", \"1.0\", \"0.8890350948324139\", \"0.9061253253169075\", \"1.0\", \"0.9554172251312234\", \"1.0\", \"1.0\"], \"31\": [\"0.0\", \"0.11621016177733319\", \"0.0\", \"0.0025444729693200447\", \"0.10367468378142052\", \"0.0\", \"0.008875244086175444\", \"0.10673727865066363\", \"0.0\"], \"32\": [\"0.0\", \"0.027138301602683376\", \"0.0\", \"0.0\", \"0.037976948609530936\", \"0.06422998127948823\", \"0.006593106121994086\", \"0.0\", \"0.10532519537736414\"], \"33\": [\"0.0\", \"0.0\", \"0.0076989604074267325\", \"0.04042806262160304\", \"0.0991827754307281\", \"0.0\", \"0.13649589008489377\", \"0.09380571831467463\", \"0.0988430051703231\"], \"34\": [\"0.8595380029806259\", \"0.7691904349721002\", \"0.9600788839291399\", \"0.8282775995129016\", \"0.878776435670868\", \"0.9333389163458563\", \"0.9787477386465779\", \"0.878917157319109\", \"0.9432769130880525\"], \"35\": [\"0.9755571531272466\", \"1.0\", \"1.0\", \"1.0\", \"0.9318934530955364\", \"1.0\", \"0.9078569142260178\", \"1.0\", \"0.9288170044221256\"], \"36\": [\"0.0\", \"0.0\", \"0.0\", \"0.08487166865765733\", \"0.07691937885651284\", \"0.14122120553678105\", \"0.0\", \"0.0\", \"0.08950538352460372\"], \"37\": [\"0.0\", \"0.047747879045533514\", \"0.0\", \"0.1224542067698369\", \"0.14397548239768707\", \"0.20318834352718707\", \"0.0\", \"0.03138137418675985\", \"0.07175049133610613\"], \"38\": [\"0.0\", \"0.0\", \"0.02800493604075518\", \"0.0\", \"0.0\", \"0.01789939217816505\", \"0.07106448031583336\", \"0.06673015341839304\", \"0.08953128034808681\"], \"39\": [\"0.8030148684381637\", \"0.6791560389729489\", \"0.8372962075729853\", \"0.962354749685657\", \"0.7362284586425828\", \"0.5678681660695661\", \"0.5500755630591415\", \"0.8362123392050905\", \"0.8968793124468617\"], \"40\": [\"0.9883720930232558\", \"1.0\", \"1.0\", \"0.7893196672803455\", \"1.0\", \"0.9835823483012499\", \"1.0\", \"0.7203832895438956\", \"1.0\"], \"41\": [\"0.0\", \"0.0\", \"0.09578782265189635\", \"0.047638197685841994\", \"0.0\", \"0.14137367216595606\", \"0.0\", \"0.12197535771823882\", \"0.0\"], \"42\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.011236234587489465\", \"0.030128043374910665\", \"0.02841367550252792\"], \"43\": [\"0.0\", \"0.0059083967835457185\", \"0.0\", \"0.0\", \"0.04178778860280271\", \"0.08787351815107622\", \"0.012956583022895492\", \"0.0007738551289361559\", \"0.07247702997288386\"], \"44\": [\"0.8488703439853451\", \"0.9127310386437131\", \"0.7796661407050053\", \"0.7282146766614328\", \"0.9307617989220323\", \"0.6979642133505481\", \"0.858507492541033\", \"0.9223149963128429\", \"0.7766476570651996\"], \"45\": [\"0.982124079915878\", \"0.9456210314817315\", \"1.0\", \"0.9577191324952529\", \"0.9764907964257965\", \"0.8505876630607123\", \"0.9759570070982758\", \"1.0\", \"0.8980457855125427\"], \"46\": [\"0.0\", \"0.0\", \"0.16498694780973078\", \"0.10178726506486496\", \"0.0\", \"0.0\", \"0.1214325068997815\", \"0.045606091153573176\", \"0.0800467534922995\"], \"47\": [\"0.0\", \"0.12459881244704388\", \"0.0\", \"0.0\", \"0.10071970835634388\", \"0.028781611018928368\", \"0.0\", \"0.0\", \"0.0\"], \"48\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.030089728851838776\", \"0.0\", \"0.0\", \"0.0\", \"0.06429407099940196\"], \"49\": [\"0.8262060712936137\", \"0.882856522862133\", \"0.6536468342491204\", \"0.870719989604237\", \"0.8098316461099845\", \"0.9463595020554448\", \"0.9325249457459681\", \"0.7538263217935368\", \"0.7300461954914608\"]}"); + var histories = JSON.parse("{\"0\": [\"0.9942279942279942\", \"0.7594144965282804\", \"0.9529435179909627\", \"1.0\", \"0.9824222087172482\", \"0.8918760706294051\", \"1.0\", \"0.9192617580826633\"], \"1\": [\"0.0\", \"0.039238992815548435\", \"0.0\", \"0.055517905809275285\", \"0.0\", \"0.13421211539934277\", \"0.0\", \"0.04463031659295377\"], \"2\": [\"0.0\", \"0.0\", \"0.08711249881031106\", \"0.07241396632645575\", \"0.08128642675685682\", \"0.02902037431332784\", \"0.0\", \"0.04474303889930112\"], \"3\": [\"0.0\", \"0.02205527619535966\", \"0.03243902948582891\", \"0.03494230964539643\", \"0.0\", \"0.0\", \"0.024057418374333433\", \"0.11112365920573815\"], \"4\": [\"0.7873730043541365\", \"0.8490645002357041\", \"0.8284713265874177\", \"0.7725107538646363\", \"0.8669065970069708\", \"0.7330137201245794\", \"0.7150319244733144\", \"0.6964042400231425\"], \"5\": [\"0.9855072463768116\", \"0.9476931593826841\", \"0.9879239618756389\", \"1.0\", \"0.9746544306089349\", \"0.7902046471798005\", \"0.7976488988761291\", \"0.9494576043250694\"], \"6\": [\"0.5\", \"0.3678441498661924\", \"0.5292269735666868\", \"0.5305294150629818\", \"0.35836260429896805\", \"0.47847272137702107\", \"0.55514972590488\", \"0.37351242736419443\"], \"7\": [\"0.17391304347826086\", \"0.3320907228868427\", \"0.36502179115312994\", \"0.0\", \"0.00271057995514265\", \"0.17106348095286344\", \"0.2809067739249912\", \"0.146257989720016\"], \"8\": [\"0.25806451612903225\", \"0.24223931150711597\", \"0.11546244070507433\", \"0.017291302768986883\", \"0.20669981383759975\", \"0.16472540906888358\", \"0.35577441497030965\", \"0.3178680487264552\"], \"9\": [\"0.9082341821416657\", \"0.76426587141965\", \"1.0\", \"0.8561398085736192\", \"0.92943589011621\", \"0.8058255388359045\", \"0.8074467931292719\", \"0.8775635640987218\"], \"10\": [\"0.9785819793205317\", \"0.925754895225367\", \"1.0\", \"0.9249110470119646\", \"0.9902885546536232\", \"0.9217424791342514\", \"1.0\", \"1.0\"], \"11\": [\"0.8\", \"0.890978490101253\", \"0.9750319727760646\", \"0.7578298434530611\", \"0.6799970068448035\", \"0.7751204321677446\", \"0.6945600252889785\", \"0.7768056304526473\"], \"12\": [\"0.125\", \"0.10523429421794395\", \"0.2118909125310025\", \"0.23489391114366323\", \"0.009646074369691601\", \"0.0\", \"0.11874761421371996\", \"0.0527955541221309\"], \"13\": [\"0.21621621621621623\", \"0.2755990793640338\", \"0.1969201674829802\", \"0.2953896409279389\", \"0.3015843931634597\", \"0.11554201048347584\", \"0.17548242292280566\", \"0.1588659564099655\"], \"14\": [\"0.8854954614220878\", \"0.7901343495291016\", \"0.6735490291492734\", \"0.7248234202606522\", \"0.8540815562901561\", \"0.8495278761798312\", \"0.8451647849021927\", \"0.7491110760974696\"], \"15\": [\"0.9839893262174784\", \"1.0\", \"0.8957344350379133\", \"0.8848133210118219\", \"0.827140572253577\", \"0.9388111096357881\", \"1.0\", \"1.0\"], \"16\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.05446986285420115\", \"0.11260208809180404\", \"0.0\", \"0.0649971042447053\"], \"17\": [\"0.0\", \"0.0\", \"0.06684893191000317\", \"0.0067764777693481715\", \"0.0\", \"0.0\", \"0.0\", \"0.11494890051043105\"], \"18\": [\"0.0\", \"0.16429095440635488\", \"0.0\", \"0.0\", \"0.0\", \"0.07168311553224681\", \"0.09235130658559526\", \"0.1310269931772118\"], \"19\": [\"0.8717283072546229\", \"1.0\", \"0.8570517170387312\", \"0.8746594189789219\", \"0.8308022148127684\", \"0.8653946685389643\", \"0.7708804399994251\", \"0.8579005798224476\"], \"20\": [\"0.9814230634419909\", \"0.9963978770381511\", \"1.0\", \"0.8218075211799654\", \"0.9591253663211922\", \"0.855653908628556\", \"1.0\", \"0.9731598153025469\"], \"21\": [\"0.4\", \"0.250038791297359\", \"0.40584941487144915\", \"0.3014925493939453\", \"0.572832617828055\", \"0.4124427574687024\", \"0.47851573961831473\", \"0.544650438336034\"], \"22\": [\"0.0784313725490196\", \"0.14995223132733781\", \"0.12311393437201215\", \"0.17565667327164983\", \"0.0\", \"0.131544112788465\", \"0.06008001069152505\", \"0.16566158911607187\"], \"23\": [\"0.13114754098360656\", \"0.15834272573578892\", \"0.03462685706967854\", \"0.0\", \"0.13399851975796426\", \"0.06428351916645836\", \"0.08231010130394614\", \"0.004070883213888515\"], \"24\": [\"0.8808204223873703\", \"0.848890252305633\", \"0.8638368844821835\", \"0.7660640805070529\", \"0.8965918083791469\", \"0.7883976569818673\", \"0.7281985649352972\", \"0.9923236715966286\"], \"25\": [\"0.9942279942279942\", \"0.7594144965282804\", \"0.9529435179909627\", \"1.0\", \"0.9824222087172482\", \"0.8918760706294051\", \"1.0\", \"0.9192617580826633\", \"0.8507706093937389\"], \"26\": [\"0.0\", \"0.039238992815548435\", \"0.0\", \"0.055517905809275285\", \"0.0\", \"0.13421211539934277\", \"0.0\", \"0.04463031659295377\", \"0.0\"], \"27\": [\"0.0\", \"0.0\", \"0.08711249881031106\", \"0.07241396632645575\", \"0.08128642675685682\", \"0.02902037431332784\", \"0.0\", \"0.04474303889930112\", \"0.05355241932936568\"], \"28\": [\"0.0\", \"0.02205527619535966\", \"0.03243902948582891\", \"0.03494230964539643\", \"0.0\", \"0.0\", \"0.024057418374333433\", \"0.11112365920573815\", \"0.17433895525394807\"], \"29\": [\"0.7873730043541365\", \"0.8490645002357041\", \"0.8284713265874177\", \"0.7725107538646363\", \"0.8669065970069708\", \"0.7330137201245794\", \"0.7150319244733144\", \"0.6964042400231425\", \"0.6889387330339705\"], \"30\": [\"0.9855072463768116\", \"0.9476931593826841\", \"0.9879239618756389\", \"1.0\", \"0.9746544306089349\", \"0.7902046471798005\", \"0.7976488988761291\", \"0.9494576043250694\", \"0.884552060746134\"], \"31\": [\"0.5\", \"0.3678441498661924\", \"0.5292269735666868\", \"0.5305294150629818\", \"0.35836260429896805\", \"0.47847272137702107\", \"0.55514972590488\", \"0.37351242736419443\", \"0.6749529534618067\"], \"32\": [\"0.17391304347826086\", \"0.3320907228868427\", \"0.36502179115312994\", \"0.0\", \"0.00271057995514265\", \"0.17106348095286344\", \"0.2809067739249912\", \"0.146257989720016\", \"0.2382389043459825\"], \"33\": [\"0.25806451612903225\", \"0.24223931150711597\", \"0.11546244070507433\", \"0.017291302768986883\", \"0.20669981383759975\", \"0.16472540906888358\", \"0.35577441497030965\", \"0.3178680487264552\", \"0.16859720226378236\"], \"34\": [\"0.9082341821416657\", \"0.76426587141965\", \"1.0\", \"0.8561398085736192\", \"0.92943589011621\", \"0.8058255388359045\", \"0.8074467931292719\", \"0.8775635640987218\", \"0.9620463280472934\"], \"35\": [\"0.9785819793205317\", \"0.925754895225367\", \"1.0\", \"0.9249110470119646\", \"0.9902885546536232\", \"0.9217424791342514\", \"1.0\", \"1.0\", \"1.0\"], \"36\": [\"0.8\", \"0.890978490101253\", \"0.9750319727760646\", \"0.7578298434530611\", \"0.6799970068448035\", \"0.7751204321677446\", \"0.6945600252889785\", \"0.7768056304526473\", \"0.8748730386475903\"], \"37\": [\"0.125\", \"0.10523429421794395\", \"0.2118909125310025\", \"0.23489391114366323\", \"0.009646074369691601\", \"0.0\", \"0.11874761421371996\", \"0.0527955541221309\", \"0.06404874859519369\"], \"38\": [\"0.21621621621621623\", \"0.2755990793640338\", \"0.1969201674829802\", \"0.2953896409279389\", \"0.3015843931634597\", \"0.11554201048347584\", \"0.17548242292280566\", \"0.1588659564099655\", \"0.19888908119268434\"], \"39\": [\"0.8854954614220878\", \"0.7901343495291016\", \"0.6735490291492734\", \"0.7248234202606522\", \"0.8540815562901561\", \"0.8495278761798312\", \"0.8451647849021927\", \"0.7491110760974696\", \"0.9109505112268653\"], \"40\": [\"0.9839893262174784\", \"1.0\", \"0.8957344350379133\", \"0.8848133210118219\", \"0.827140572253577\", \"0.9388111096357881\", \"1.0\", \"1.0\", \"1.0\"], \"41\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.05446986285420115\", \"0.11260208809180404\", \"0.0\", \"0.0649971042447053\", \"0.03291679948937264\"], \"42\": [\"0.0\", \"0.0\", \"0.06684893191000317\", \"0.0067764777693481715\", \"0.0\", \"0.0\", \"0.0\", \"0.11494890051043105\", \"0.0\"], \"43\": [\"0.0\", \"0.16429095440635488\", \"0.0\", \"0.0\", \"0.0\", \"0.07168311553224681\", \"0.09235130658559526\", \"0.1310269931772118\", \"0.0\"], \"44\": [\"0.8717283072546229\", \"1.0\", \"0.8570517170387312\", \"0.8746594189789219\", \"0.8308022148127684\", \"0.8653946685389643\", \"0.7708804399994251\", \"0.8579005798224476\", \"0.7343811414228953\"], \"45\": [\"0.9814230634419909\", \"0.9963978770381511\", \"1.0\", \"0.8218075211799654\", \"0.9591253663211922\", \"0.855653908628556\", \"1.0\", \"0.9731598153025469\", \"0.876626125744864\"], \"46\": [\"0.4\", \"0.250038791297359\", \"0.40584941487144915\", \"0.3014925493939453\", \"0.572832617828055\", \"0.4124427574687024\", \"0.47851573961831473\", \"0.544650438336034\", \"0.5128191799957126\"], \"47\": [\"0.0784313725490196\", \"0.14995223132733781\", \"0.12311393437201215\", \"0.17565667327164983\", \"0.0\", \"0.131544112788465\", \"0.06008001069152505\", \"0.16566158911607187\", \"0.12769215042169926\"], \"48\": [\"0.13114754098360656\", \"0.15834272573578892\", \"0.03462685706967854\", \"0.0\", \"0.13399851975796426\", \"0.06428351916645836\", \"0.08231010130394614\", \"0.004070883213888515\", \"0.23011987591430827\"], \"49\": [\"0.8808204223873703\", \"0.848890252305633\", \"0.8638368844821835\", \"0.7660640805070529\", \"0.8965918083791469\", \"0.7883976569818673\", \"0.7281985649352972\", \"0.9923236715966286\", \"0.9134169503450666\"]}"); var thresholds = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\", \"16\": \"0.7\", \"17\": \"0.7\", \"18\": \"0.7\", \"19\": \"0.7\", \"20\": \"0.7\", \"21\": \"0.7\", \"22\": \"0.7\", \"23\": \"0.7\", \"24\": \"0.7\", \"25\": \"0.7\", \"26\": \"0.7\", \"27\": \"0.7\", \"28\": \"0.7\", \"29\": \"0.7\", \"30\": \"0.7\", \"31\": \"0.7\", \"32\": \"0.7\", \"33\": \"0.7\", \"34\": \"0.7\", \"35\": \"0.7\", \"36\": \"0.7\", \"37\": \"0.7\", \"38\": \"0.7\", \"39\": \"0.7\", \"40\": \"0.7\", \"41\": \"0.7\", \"42\": \"0.7\", \"43\": \"0.7\", \"44\": \"0.7\", \"45\": \"0.7\", \"46\": \"0.7\", \"47\": \"0.7\", \"48\": \"0.7\", \"49\": \"0.7\"}"); var timestamps = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"16\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"17\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"18\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"19\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"20\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"21\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"22\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"23\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"24\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"25\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"26\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"27\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"28\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"29\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"30\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"31\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"32\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"33\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"34\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"35\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"36\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"37\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"38\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"39\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"40\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"41\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"42\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"43\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"44\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"45\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"46\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"47\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"48\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"49\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"]}"); @@ -2984,10 +2987,10 @@

Ethical Considerations

} } var slices_all = JSON.parse("{\"0\": [\"metric:Accuracy\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"1\": [\"metric:Precision\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"2\": [\"metric:Recall\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"3\": [\"metric:F1 Score\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"4\": [\"metric:AUROC\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"5\": [\"metric:Accuracy\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"6\": [\"metric:Precision\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"7\": [\"metric:Recall\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"8\": [\"metric:F1 Score\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"9\": [\"metric:AUROC\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"10\": [\"metric:Accuracy\", \"gender:M\", \"age:overall_age\"], \"11\": [\"metric:Precision\", \"gender:M\", \"age:overall_age\"], \"12\": [\"metric:Recall\", \"gender:M\", \"age:overall_age\"], \"13\": [\"metric:F1 Score\", \"gender:M\", \"age:overall_age\"], \"14\": [\"metric:AUROC\", \"gender:M\", \"age:overall_age\"], \"15\": [\"metric:Accuracy\", \"gender:F\", \"age:overall_age\"], \"16\": [\"metric:Precision\", \"gender:F\", \"age:overall_age\"], \"17\": [\"metric:Recall\", \"gender:F\", \"age:overall_age\"], \"18\": [\"metric:F1 Score\", \"gender:F\", \"age:overall_age\"], \"19\": [\"metric:AUROC\", \"gender:F\", \"age:overall_age\"], \"20\": [\"metric:Accuracy\", \"age:overall_age\", \"gender:overall_gender\"], \"21\": [\"metric:Precision\", \"age:overall_age\", \"gender:overall_gender\"], \"22\": [\"metric:Recall\", \"age:overall_age\", \"gender:overall_gender\"], \"23\": [\"metric:F1 Score\", \"age:overall_age\", \"gender:overall_gender\"], \"24\": [\"metric:AUROC\", \"age:overall_age\", \"gender:overall_gender\"], \"25\": [\"metric:Accuracy\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"26\": [\"metric:Precision\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"27\": [\"metric:Recall\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"28\": [\"metric:F1 Score\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"29\": [\"metric:AUROC\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"30\": [\"metric:Accuracy\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"31\": [\"metric:Precision\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"32\": [\"metric:Recall\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"33\": [\"metric:F1 Score\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"34\": [\"metric:AUROC\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"35\": [\"metric:Accuracy\", \"gender:M\", \"age:overall_age\"], \"36\": [\"metric:Precision\", \"gender:M\", \"age:overall_age\"], \"37\": [\"metric:Recall\", \"gender:M\", \"age:overall_age\"], \"38\": [\"metric:F1 Score\", \"gender:M\", \"age:overall_age\"], \"39\": [\"metric:AUROC\", \"gender:M\", \"age:overall_age\"], \"40\": [\"metric:Accuracy\", \"gender:F\", \"age:overall_age\"], \"41\": [\"metric:Precision\", \"gender:F\", \"age:overall_age\"], \"42\": [\"metric:Recall\", \"gender:F\", \"age:overall_age\"], \"43\": [\"metric:F1 Score\", \"gender:F\", \"age:overall_age\"], \"44\": [\"metric:AUROC\", \"gender:F\", \"age:overall_age\"], \"45\": [\"metric:Accuracy\", \"age:overall_age\", \"gender:overall_gender\"], \"46\": [\"metric:Precision\", \"age:overall_age\", \"gender:overall_gender\"], \"47\": [\"metric:Recall\", \"age:overall_age\", \"gender:overall_gender\"], \"48\": [\"metric:F1 Score\", \"age:overall_age\", \"gender:overall_gender\"], \"49\": [\"metric:AUROC\", \"age:overall_age\", \"gender:overall_gender\"]}"); - var histories_all = JSON.parse("{\"0\": [\"0.9938556067588326\", \"1.0\", \"1.0\", \"1.0\", \"0.9624791516577729\", \"0.9684155793292565\", \"1.0\", \"0.9322132496657871\"], \"1\": [\"0.0\", \"0.09971832307720793\", \"0.0\", \"0.0\", \"0.038443657820264196\", \"0.0\", \"0.07858249637040482\", \"0.061570421819291135\"], \"2\": [\"0.0\", \"0.0\", \"0.21979967941589065\", \"0.15202165141211327\", \"0.0\", \"0.0\", \"0.078096307870897\", \"0.0\"], \"3\": [\"0.0\", \"0.0\", \"0.09105647730583516\", \"0.0\", \"0.0\", \"0.22316854841702705\", \"0.0\", \"0.0\"], \"4\": [\"0.7482612055641422\", \"0.719862989681311\", \"0.7445177672186913\", \"0.7831315648403597\", \"0.6248692306176002\", \"0.9026667908500056\", \"0.7483615351710936\", \"0.6968843874934543\"], \"5\": [\"0.9868184541641701\", \"0.9561559632039621\", \"1.0\", \"0.8890350948324139\", \"0.9061253253169075\", \"1.0\", \"0.9554172251312234\", \"1.0\"], \"6\": [\"0.0\", \"0.11621016177733319\", \"0.0\", \"0.0025444729693200447\", \"0.10367468378142052\", \"0.0\", \"0.008875244086175444\", \"0.10673727865066363\"], \"7\": [\"0.0\", \"0.027138301602683376\", \"0.0\", \"0.0\", \"0.037976948609530936\", \"0.06422998127948823\", \"0.006593106121994086\", \"0.0\"], \"8\": [\"0.0\", \"0.0\", \"0.0076989604074267325\", \"0.04042806262160304\", \"0.0991827754307281\", \"0.0\", \"0.13649589008489377\", \"0.09380571831467463\"], \"9\": [\"0.8595380029806259\", \"0.7691904349721002\", \"0.9600788839291399\", \"0.8282775995129016\", \"0.878776435670868\", \"0.9333389163458563\", \"0.9787477386465779\", \"0.878917157319109\"], \"10\": [\"0.9755571531272466\", \"1.0\", \"1.0\", \"1.0\", \"0.9318934530955364\", \"1.0\", \"0.9078569142260178\", \"1.0\"], \"11\": [\"0.0\", \"0.0\", \"0.0\", \"0.08487166865765733\", \"0.07691937885651284\", \"0.14122120553678105\", \"0.0\", \"0.0\"], \"12\": [\"0.0\", \"0.047747879045533514\", \"0.0\", \"0.1224542067698369\", \"0.14397548239768707\", \"0.20318834352718707\", \"0.0\", \"0.03138137418675985\"], \"13\": [\"0.0\", \"0.0\", \"0.02800493604075518\", \"0.0\", \"0.0\", \"0.01789939217816505\", \"0.07106448031583336\", \"0.06673015341839304\"], \"14\": [\"0.8030148684381637\", \"0.6791560389729489\", \"0.8372962075729853\", \"0.962354749685657\", \"0.7362284586425828\", \"0.5678681660695661\", \"0.5500755630591415\", \"0.8362123392050905\"], \"15\": [\"0.9883720930232558\", \"1.0\", \"1.0\", \"0.7893196672803455\", \"1.0\", \"0.9835823483012499\", \"1.0\", \"0.7203832895438956\"], \"16\": [\"0.0\", \"0.0\", \"0.09578782265189635\", \"0.047638197685841994\", \"0.0\", \"0.14137367216595606\", \"0.0\", \"0.12197535771823882\"], \"17\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.011236234587489465\", \"0.030128043374910665\"], \"18\": [\"0.0\", \"0.0059083967835457185\", \"0.0\", \"0.0\", \"0.04178778860280271\", \"0.08787351815107622\", \"0.012956583022895492\", \"0.0007738551289361559\"], \"19\": [\"0.8488703439853451\", \"0.9127310386437131\", \"0.7796661407050053\", \"0.7282146766614328\", \"0.9307617989220323\", \"0.6979642133505481\", \"0.858507492541033\", \"0.9223149963128429\"], \"20\": [\"0.982124079915878\", \"0.9456210314817315\", \"1.0\", \"0.9577191324952529\", \"0.9764907964257965\", \"0.8505876630607123\", \"0.9759570070982758\", \"1.0\"], \"21\": [\"0.0\", \"0.0\", \"0.16498694780973078\", \"0.10178726506486496\", \"0.0\", \"0.0\", \"0.1214325068997815\", \"0.045606091153573176\"], \"22\": [\"0.0\", \"0.12459881244704388\", \"0.0\", \"0.0\", \"0.10071970835634388\", \"0.028781611018928368\", \"0.0\", \"0.0\"], \"23\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.030089728851838776\", \"0.0\", \"0.0\", \"0.0\"], \"24\": [\"0.8262060712936137\", \"0.882856522862133\", \"0.6536468342491204\", \"0.870719989604237\", \"0.8098316461099845\", \"0.9463595020554448\", \"0.9325249457459681\", \"0.7538263217935368\"], \"25\": [\"0.9938556067588326\", \"1.0\", \"1.0\", \"1.0\", \"0.9624791516577729\", \"0.9684155793292565\", \"1.0\", \"0.9322132496657871\", \"0.9562372812203237\"], \"26\": [\"0.0\", \"0.09971832307720793\", \"0.0\", \"0.0\", \"0.038443657820264196\", \"0.0\", \"0.07858249637040482\", \"0.061570421819291135\", \"0.0\"], \"27\": [\"0.0\", \"0.0\", \"0.21979967941589065\", \"0.15202165141211327\", \"0.0\", \"0.0\", \"0.078096307870897\", \"0.0\", \"0.0\"], \"28\": [\"0.0\", \"0.0\", \"0.09105647730583516\", \"0.0\", \"0.0\", \"0.22316854841702705\", \"0.0\", \"0.0\", \"0.04532526103716064\"], \"29\": [\"0.7482612055641422\", \"0.719862989681311\", \"0.7445177672186913\", \"0.7831315648403597\", \"0.6248692306176002\", \"0.9026667908500056\", \"0.7483615351710936\", \"0.6968843874934543\", \"0.7563975419116553\"], \"30\": [\"0.9868184541641701\", \"0.9561559632039621\", \"1.0\", \"0.8890350948324139\", \"0.9061253253169075\", \"1.0\", \"0.9554172251312234\", \"1.0\", \"1.0\"], \"31\": [\"0.0\", \"0.11621016177733319\", \"0.0\", \"0.0025444729693200447\", \"0.10367468378142052\", \"0.0\", \"0.008875244086175444\", \"0.10673727865066363\", \"0.0\"], \"32\": [\"0.0\", \"0.027138301602683376\", \"0.0\", \"0.0\", \"0.037976948609530936\", \"0.06422998127948823\", \"0.006593106121994086\", \"0.0\", \"0.10532519537736414\"], \"33\": [\"0.0\", \"0.0\", \"0.0076989604074267325\", \"0.04042806262160304\", \"0.0991827754307281\", \"0.0\", \"0.13649589008489377\", \"0.09380571831467463\", \"0.0988430051703231\"], \"34\": [\"0.8595380029806259\", \"0.7691904349721002\", \"0.9600788839291399\", \"0.8282775995129016\", \"0.878776435670868\", \"0.9333389163458563\", \"0.9787477386465779\", \"0.878917157319109\", \"0.9432769130880525\"], \"35\": [\"0.9755571531272466\", \"1.0\", \"1.0\", \"1.0\", \"0.9318934530955364\", \"1.0\", \"0.9078569142260178\", \"1.0\", \"0.9288170044221256\"], \"36\": [\"0.0\", \"0.0\", \"0.0\", \"0.08487166865765733\", \"0.07691937885651284\", \"0.14122120553678105\", \"0.0\", \"0.0\", \"0.08950538352460372\"], \"37\": [\"0.0\", \"0.047747879045533514\", \"0.0\", \"0.1224542067698369\", \"0.14397548239768707\", \"0.20318834352718707\", \"0.0\", \"0.03138137418675985\", \"0.07175049133610613\"], \"38\": [\"0.0\", \"0.0\", \"0.02800493604075518\", \"0.0\", \"0.0\", \"0.01789939217816505\", \"0.07106448031583336\", \"0.06673015341839304\", \"0.08953128034808681\"], \"39\": [\"0.8030148684381637\", \"0.6791560389729489\", \"0.8372962075729853\", \"0.962354749685657\", \"0.7362284586425828\", \"0.5678681660695661\", \"0.5500755630591415\", \"0.8362123392050905\", \"0.8968793124468617\"], \"40\": [\"0.9883720930232558\", \"1.0\", \"1.0\", \"0.7893196672803455\", \"1.0\", \"0.9835823483012499\", \"1.0\", \"0.7203832895438956\", \"1.0\"], \"41\": [\"0.0\", \"0.0\", \"0.09578782265189635\", \"0.047638197685841994\", \"0.0\", \"0.14137367216595606\", \"0.0\", \"0.12197535771823882\", \"0.0\"], \"42\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.011236234587489465\", \"0.030128043374910665\", \"0.02841367550252792\"], \"43\": [\"0.0\", \"0.0059083967835457185\", \"0.0\", \"0.0\", \"0.04178778860280271\", \"0.08787351815107622\", \"0.012956583022895492\", \"0.0007738551289361559\", \"0.07247702997288386\"], \"44\": [\"0.8488703439853451\", \"0.9127310386437131\", \"0.7796661407050053\", \"0.7282146766614328\", \"0.9307617989220323\", \"0.6979642133505481\", \"0.858507492541033\", \"0.9223149963128429\", \"0.7766476570651996\"], \"45\": [\"0.982124079915878\", \"0.9456210314817315\", \"1.0\", \"0.9577191324952529\", \"0.9764907964257965\", \"0.8505876630607123\", \"0.9759570070982758\", \"1.0\", \"0.8980457855125427\"], \"46\": [\"0.0\", \"0.0\", \"0.16498694780973078\", \"0.10178726506486496\", \"0.0\", \"0.0\", \"0.1214325068997815\", \"0.045606091153573176\", \"0.0800467534922995\"], \"47\": [\"0.0\", \"0.12459881244704388\", \"0.0\", \"0.0\", \"0.10071970835634388\", \"0.028781611018928368\", \"0.0\", \"0.0\", \"0.0\"], \"48\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.030089728851838776\", \"0.0\", \"0.0\", \"0.0\", \"0.06429407099940196\"], \"49\": [\"0.8262060712936137\", \"0.882856522862133\", \"0.6536468342491204\", \"0.870719989604237\", \"0.8098316461099845\", \"0.9463595020554448\", \"0.9325249457459681\", \"0.7538263217935368\", \"0.7300461954914608\"]}"); + var histories_all = JSON.parse("{\"0\": [\"0.9942279942279942\", \"0.7594144965282804\", \"0.9529435179909627\", \"1.0\", \"0.9824222087172482\", \"0.8918760706294051\", \"1.0\", \"0.9192617580826633\"], \"1\": [\"0.0\", \"0.039238992815548435\", \"0.0\", \"0.055517905809275285\", \"0.0\", \"0.13421211539934277\", \"0.0\", \"0.04463031659295377\"], \"2\": [\"0.0\", \"0.0\", \"0.08711249881031106\", \"0.07241396632645575\", \"0.08128642675685682\", \"0.02902037431332784\", \"0.0\", \"0.04474303889930112\"], \"3\": [\"0.0\", \"0.02205527619535966\", \"0.03243902948582891\", \"0.03494230964539643\", \"0.0\", \"0.0\", \"0.024057418374333433\", \"0.11112365920573815\"], \"4\": [\"0.7873730043541365\", \"0.8490645002357041\", \"0.8284713265874177\", \"0.7725107538646363\", \"0.8669065970069708\", \"0.7330137201245794\", \"0.7150319244733144\", \"0.6964042400231425\"], \"5\": [\"0.9855072463768116\", \"0.9476931593826841\", \"0.9879239618756389\", \"1.0\", \"0.9746544306089349\", \"0.7902046471798005\", \"0.7976488988761291\", \"0.9494576043250694\"], \"6\": [\"0.5\", \"0.3678441498661924\", \"0.5292269735666868\", \"0.5305294150629818\", \"0.35836260429896805\", \"0.47847272137702107\", \"0.55514972590488\", \"0.37351242736419443\"], \"7\": [\"0.17391304347826086\", \"0.3320907228868427\", \"0.36502179115312994\", \"0.0\", \"0.00271057995514265\", \"0.17106348095286344\", \"0.2809067739249912\", \"0.146257989720016\"], \"8\": [\"0.25806451612903225\", \"0.24223931150711597\", \"0.11546244070507433\", \"0.017291302768986883\", \"0.20669981383759975\", \"0.16472540906888358\", \"0.35577441497030965\", \"0.3178680487264552\"], \"9\": [\"0.9082341821416657\", \"0.76426587141965\", \"1.0\", \"0.8561398085736192\", \"0.92943589011621\", \"0.8058255388359045\", \"0.8074467931292719\", \"0.8775635640987218\"], \"10\": [\"0.9785819793205317\", \"0.925754895225367\", \"1.0\", \"0.9249110470119646\", \"0.9902885546536232\", \"0.9217424791342514\", \"1.0\", \"1.0\"], \"11\": [\"0.8\", \"0.890978490101253\", \"0.9750319727760646\", \"0.7578298434530611\", \"0.6799970068448035\", \"0.7751204321677446\", \"0.6945600252889785\", \"0.7768056304526473\"], \"12\": [\"0.125\", \"0.10523429421794395\", \"0.2118909125310025\", \"0.23489391114366323\", \"0.009646074369691601\", \"0.0\", \"0.11874761421371996\", \"0.0527955541221309\"], \"13\": [\"0.21621621621621623\", \"0.2755990793640338\", \"0.1969201674829802\", \"0.2953896409279389\", \"0.3015843931634597\", \"0.11554201048347584\", \"0.17548242292280566\", \"0.1588659564099655\"], \"14\": [\"0.8854954614220878\", \"0.7901343495291016\", \"0.6735490291492734\", \"0.7248234202606522\", \"0.8540815562901561\", \"0.8495278761798312\", \"0.8451647849021927\", \"0.7491110760974696\"], \"15\": [\"0.9839893262174784\", \"1.0\", \"0.8957344350379133\", \"0.8848133210118219\", \"0.827140572253577\", \"0.9388111096357881\", \"1.0\", \"1.0\"], \"16\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.05446986285420115\", \"0.11260208809180404\", \"0.0\", \"0.0649971042447053\"], \"17\": [\"0.0\", \"0.0\", \"0.06684893191000317\", \"0.0067764777693481715\", \"0.0\", \"0.0\", \"0.0\", \"0.11494890051043105\"], \"18\": [\"0.0\", \"0.16429095440635488\", \"0.0\", \"0.0\", \"0.0\", \"0.07168311553224681\", \"0.09235130658559526\", \"0.1310269931772118\"], \"19\": [\"0.8717283072546229\", \"1.0\", \"0.8570517170387312\", \"0.8746594189789219\", \"0.8308022148127684\", \"0.8653946685389643\", \"0.7708804399994251\", \"0.8579005798224476\"], \"20\": [\"0.9814230634419909\", \"0.9963978770381511\", \"1.0\", \"0.8218075211799654\", \"0.9591253663211922\", \"0.855653908628556\", \"1.0\", \"0.9731598153025469\"], \"21\": [\"0.4\", \"0.250038791297359\", \"0.40584941487144915\", \"0.3014925493939453\", \"0.572832617828055\", \"0.4124427574687024\", \"0.47851573961831473\", \"0.544650438336034\"], \"22\": [\"0.0784313725490196\", \"0.14995223132733781\", \"0.12311393437201215\", \"0.17565667327164983\", \"0.0\", \"0.131544112788465\", \"0.06008001069152505\", \"0.16566158911607187\"], \"23\": [\"0.13114754098360656\", \"0.15834272573578892\", \"0.03462685706967854\", \"0.0\", \"0.13399851975796426\", \"0.06428351916645836\", \"0.08231010130394614\", \"0.004070883213888515\"], \"24\": [\"0.8808204223873703\", \"0.848890252305633\", \"0.8638368844821835\", \"0.7660640805070529\", \"0.8965918083791469\", \"0.7883976569818673\", \"0.7281985649352972\", \"0.9923236715966286\"], \"25\": [\"0.9942279942279942\", \"0.7594144965282804\", \"0.9529435179909627\", \"1.0\", \"0.9824222087172482\", \"0.8918760706294051\", \"1.0\", \"0.9192617580826633\", \"0.8507706093937389\"], \"26\": [\"0.0\", \"0.039238992815548435\", \"0.0\", \"0.055517905809275285\", \"0.0\", \"0.13421211539934277\", \"0.0\", \"0.04463031659295377\", \"0.0\"], \"27\": [\"0.0\", \"0.0\", \"0.08711249881031106\", \"0.07241396632645575\", \"0.08128642675685682\", \"0.02902037431332784\", \"0.0\", \"0.04474303889930112\", \"0.05355241932936568\"], \"28\": [\"0.0\", \"0.02205527619535966\", \"0.03243902948582891\", \"0.03494230964539643\", \"0.0\", \"0.0\", \"0.024057418374333433\", \"0.11112365920573815\", \"0.17433895525394807\"], \"29\": [\"0.7873730043541365\", \"0.8490645002357041\", \"0.8284713265874177\", \"0.7725107538646363\", \"0.8669065970069708\", \"0.7330137201245794\", \"0.7150319244733144\", \"0.6964042400231425\", \"0.6889387330339705\"], \"30\": [\"0.9855072463768116\", \"0.9476931593826841\", \"0.9879239618756389\", \"1.0\", \"0.9746544306089349\", \"0.7902046471798005\", \"0.7976488988761291\", \"0.9494576043250694\", \"0.884552060746134\"], \"31\": [\"0.5\", \"0.3678441498661924\", \"0.5292269735666868\", \"0.5305294150629818\", \"0.35836260429896805\", \"0.47847272137702107\", \"0.55514972590488\", \"0.37351242736419443\", \"0.6749529534618067\"], \"32\": [\"0.17391304347826086\", \"0.3320907228868427\", \"0.36502179115312994\", \"0.0\", \"0.00271057995514265\", \"0.17106348095286344\", \"0.2809067739249912\", \"0.146257989720016\", \"0.2382389043459825\"], \"33\": [\"0.25806451612903225\", \"0.24223931150711597\", \"0.11546244070507433\", \"0.017291302768986883\", \"0.20669981383759975\", \"0.16472540906888358\", \"0.35577441497030965\", \"0.3178680487264552\", \"0.16859720226378236\"], \"34\": [\"0.9082341821416657\", \"0.76426587141965\", \"1.0\", \"0.8561398085736192\", \"0.92943589011621\", \"0.8058255388359045\", \"0.8074467931292719\", \"0.8775635640987218\", \"0.9620463280472934\"], \"35\": [\"0.9785819793205317\", \"0.925754895225367\", \"1.0\", \"0.9249110470119646\", \"0.9902885546536232\", \"0.9217424791342514\", \"1.0\", \"1.0\", \"1.0\"], \"36\": [\"0.8\", \"0.890978490101253\", \"0.9750319727760646\", \"0.7578298434530611\", \"0.6799970068448035\", \"0.7751204321677446\", \"0.6945600252889785\", \"0.7768056304526473\", \"0.8748730386475903\"], \"37\": [\"0.125\", \"0.10523429421794395\", \"0.2118909125310025\", \"0.23489391114366323\", \"0.009646074369691601\", \"0.0\", \"0.11874761421371996\", \"0.0527955541221309\", \"0.06404874859519369\"], \"38\": [\"0.21621621621621623\", \"0.2755990793640338\", \"0.1969201674829802\", \"0.2953896409279389\", \"0.3015843931634597\", \"0.11554201048347584\", \"0.17548242292280566\", \"0.1588659564099655\", \"0.19888908119268434\"], \"39\": [\"0.8854954614220878\", \"0.7901343495291016\", \"0.6735490291492734\", \"0.7248234202606522\", \"0.8540815562901561\", \"0.8495278761798312\", \"0.8451647849021927\", \"0.7491110760974696\", \"0.9109505112268653\"], \"40\": [\"0.9839893262174784\", \"1.0\", \"0.8957344350379133\", \"0.8848133210118219\", \"0.827140572253577\", \"0.9388111096357881\", \"1.0\", \"1.0\", \"1.0\"], \"41\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.05446986285420115\", \"0.11260208809180404\", \"0.0\", \"0.0649971042447053\", \"0.03291679948937264\"], \"42\": [\"0.0\", \"0.0\", \"0.06684893191000317\", \"0.0067764777693481715\", \"0.0\", \"0.0\", \"0.0\", \"0.11494890051043105\", \"0.0\"], \"43\": [\"0.0\", \"0.16429095440635488\", \"0.0\", \"0.0\", \"0.0\", \"0.07168311553224681\", \"0.09235130658559526\", \"0.1310269931772118\", \"0.0\"], \"44\": [\"0.8717283072546229\", \"1.0\", \"0.8570517170387312\", \"0.8746594189789219\", \"0.8308022148127684\", \"0.8653946685389643\", \"0.7708804399994251\", \"0.8579005798224476\", \"0.7343811414228953\"], \"45\": [\"0.9814230634419909\", \"0.9963978770381511\", \"1.0\", \"0.8218075211799654\", \"0.9591253663211922\", \"0.855653908628556\", \"1.0\", \"0.9731598153025469\", \"0.876626125744864\"], \"46\": [\"0.4\", \"0.250038791297359\", \"0.40584941487144915\", \"0.3014925493939453\", \"0.572832617828055\", \"0.4124427574687024\", \"0.47851573961831473\", \"0.544650438336034\", \"0.5128191799957126\"], \"47\": [\"0.0784313725490196\", \"0.14995223132733781\", \"0.12311393437201215\", \"0.17565667327164983\", \"0.0\", \"0.131544112788465\", \"0.06008001069152505\", \"0.16566158911607187\", \"0.12769215042169926\"], \"48\": [\"0.13114754098360656\", \"0.15834272573578892\", \"0.03462685706967854\", \"0.0\", \"0.13399851975796426\", \"0.06428351916645836\", \"0.08231010130394614\", \"0.004070883213888515\", \"0.23011987591430827\"], \"49\": [\"0.8808204223873703\", \"0.848890252305633\", \"0.8638368844821835\", \"0.7660640805070529\", \"0.8965918083791469\", \"0.7883976569818673\", \"0.7281985649352972\", \"0.9923236715966286\", \"0.9134169503450666\"]}"); var thresholds_all = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\", \"16\": \"0.7\", \"17\": \"0.7\", \"18\": \"0.7\", \"19\": \"0.7\", \"20\": \"0.7\", \"21\": \"0.7\", \"22\": \"0.7\", \"23\": \"0.7\", \"24\": \"0.7\", \"25\": \"0.7\", \"26\": \"0.7\", \"27\": \"0.7\", \"28\": \"0.7\", \"29\": \"0.7\", \"30\": \"0.7\", \"31\": \"0.7\", \"32\": \"0.7\", \"33\": \"0.7\", \"34\": \"0.7\", \"35\": \"0.7\", \"36\": \"0.7\", \"37\": \"0.7\", \"38\": \"0.7\", \"39\": \"0.7\", \"40\": \"0.7\", \"41\": \"0.7\", \"42\": \"0.7\", \"43\": \"0.7\", \"44\": \"0.7\", \"45\": \"0.7\", \"46\": \"0.7\", \"47\": \"0.7\", \"48\": \"0.7\", \"49\": \"0.7\"}"); - var trends_all = JSON.parse("{\"0\": \"neutral\", \"1\": \"neutral\", \"2\": \"neutral\", \"3\": \"neutral\", \"4\": \"neutral\", \"5\": \"neutral\", \"6\": \"neutral\", \"7\": \"neutral\", \"8\": \"positive\", \"9\": \"positive\", \"10\": \"neutral\", \"11\": \"neutral\", \"12\": \"neutral\", \"13\": \"neutral\", \"14\": \"negative\", \"15\": \"negative\", \"16\": \"positive\", \"17\": \"neutral\", \"18\": \"neutral\", \"19\": \"neutral\", \"20\": \"neutral\", \"21\": \"neutral\", \"22\": \"neutral\", \"23\": \"neutral\", \"24\": \"neutral\", \"25\": \"neutral\", \"26\": \"neutral\", \"27\": \"neutral\", \"28\": \"neutral\", \"29\": \"neutral\", \"30\": \"neutral\", \"31\": \"neutral\", \"32\": \"neutral\", \"33\": \"positive\", \"34\": \"positive\", \"35\": \"neutral\", \"36\": \"neutral\", \"37\": \"neutral\", \"38\": \"positive\", \"39\": \"neutral\", \"40\": \"neutral\", \"41\": \"neutral\", \"42\": \"neutral\", \"43\": \"neutral\", \"44\": \"neutral\", \"45\": \"neutral\", \"46\": \"neutral\", \"47\": \"neutral\", \"48\": \"neutral\", \"49\": \"neutral\"}"); - var passed_all = JSON.parse("{\"0\": true, \"1\": false, \"2\": false, \"3\": false, \"4\": false, \"5\": true, \"6\": false, \"7\": false, \"8\": false, \"9\": true, \"10\": true, \"11\": false, \"12\": false, \"13\": false, \"14\": true, \"15\": true, \"16\": false, \"17\": false, \"18\": false, \"19\": true, \"20\": true, \"21\": false, \"22\": false, \"23\": false, \"24\": true, \"25\": true, \"26\": false, \"27\": false, \"28\": false, \"29\": true, \"30\": true, \"31\": false, \"32\": false, \"33\": false, \"34\": true, \"35\": true, \"36\": false, \"37\": false, \"38\": false, \"39\": true, \"40\": true, \"41\": false, \"42\": false, \"43\": false, \"44\": true, \"45\": true, \"46\": false, \"47\": false, \"48\": false, \"49\": true}"); + var trends_all = JSON.parse("{\"0\": \"neutral\", \"1\": \"neutral\", \"2\": \"neutral\", \"3\": \"neutral\", \"4\": \"negative\", \"5\": \"negative\", \"6\": \"neutral\", \"7\": \"negative\", \"8\": \"positive\", \"9\": \"neutral\", \"10\": \"neutral\", \"11\": \"negative\", \"12\": \"negative\", \"13\": \"negative\", \"14\": \"neutral\", \"15\": \"neutral\", \"16\": \"positive\", \"17\": \"neutral\", \"18\": \"neutral\", \"19\": \"negative\", \"20\": \"neutral\", \"21\": \"positive\", \"22\": \"neutral\", \"23\": \"negative\", \"24\": \"neutral\", \"25\": \"neutral\", \"26\": \"neutral\", \"27\": \"neutral\", \"28\": \"positive\", \"29\": \"negative\", \"30\": \"negative\", \"31\": \"positive\", \"32\": \"neutral\", \"33\": \"neutral\", \"34\": \"neutral\", \"35\": \"neutral\", \"36\": \"neutral\", \"37\": \"negative\", \"38\": \"negative\", \"39\": \"neutral\", \"40\": \"neutral\", \"41\": \"neutral\", \"42\": \"neutral\", \"43\": \"neutral\", \"44\": \"negative\", \"45\": \"neutral\", \"46\": \"positive\", \"47\": \"neutral\", \"48\": \"neutral\", \"49\": \"neutral\"}"); + var passed_all = JSON.parse("{\"0\": true, \"1\": false, \"2\": false, \"3\": false, \"4\": false, \"5\": true, \"6\": false, \"7\": false, \"8\": false, \"9\": true, \"10\": true, \"11\": true, \"12\": false, \"13\": false, \"14\": true, \"15\": true, \"16\": false, \"17\": false, \"18\": false, \"19\": true, \"20\": true, \"21\": false, \"22\": false, \"23\": false, \"24\": true, \"25\": true, \"26\": false, \"27\": false, \"28\": false, \"29\": false, \"30\": true, \"31\": false, \"32\": false, \"33\": false, \"34\": true, \"35\": true, \"36\": true, \"37\": false, \"38\": false, \"39\": true, \"40\": true, \"41\": false, \"42\": false, \"43\": false, \"44\": true, \"45\": true, \"46\": false, \"47\": false, \"48\": false, \"49\": true}"); var names_all = JSON.parse("{\"0\": \"Accuracy\", \"1\": \"Precision\", \"2\": \"Recall\", \"3\": \"F1 Score\", \"4\": \"AUROC\", \"5\": \"Accuracy\", \"6\": \"Precision\", \"7\": \"Recall\", \"8\": \"F1 Score\", \"9\": \"AUROC\", \"10\": \"Accuracy\", \"11\": \"Precision\", \"12\": \"Recall\", \"13\": \"F1 Score\", \"14\": \"AUROC\", \"15\": \"Accuracy\", \"16\": \"Precision\", \"17\": \"Recall\", \"18\": \"F1 Score\", \"19\": \"AUROC\", \"20\": \"Accuracy\", \"21\": \"Precision\", \"22\": \"Recall\", \"23\": \"F1 Score\", \"24\": \"AUROC\", \"25\": \"Accuracy\", \"26\": \"Precision\", \"27\": \"Recall\", \"28\": \"F1 Score\", \"29\": \"AUROC\", \"30\": \"Accuracy\", \"31\": \"Precision\", \"32\": \"Recall\", \"33\": \"F1 Score\", \"34\": \"AUROC\", \"35\": \"Accuracy\", \"36\": \"Precision\", \"37\": \"Recall\", \"38\": \"F1 Score\", \"39\": \"AUROC\", \"40\": \"Accuracy\", \"41\": \"Precision\", \"42\": \"Recall\", \"43\": \"F1 Score\", \"44\": \"AUROC\", \"45\": \"Accuracy\", \"46\": \"Precision\", \"47\": \"Recall\", \"48\": \"F1 Score\", \"49\": \"AUROC\"}"); var timestamps_all = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"16\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"17\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"18\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"19\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"20\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"21\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"22\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"23\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"24\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"25\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"26\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"27\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"28\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"29\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"30\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"31\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"32\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"33\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"34\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"35\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"36\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"37\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"38\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"39\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"40\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"41\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"42\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"43\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"44\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"45\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"46\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"47\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"48\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"49\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"]}"); @@ -3260,10 +3263,10 @@

Ethical Considerations

} } var slices_all = JSON.parse("{\"0\": [\"metric:Accuracy\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"1\": [\"metric:Precision\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"2\": [\"metric:Recall\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"3\": [\"metric:F1 Score\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"4\": [\"metric:AUROC\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"5\": [\"metric:Accuracy\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"6\": [\"metric:Precision\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"7\": [\"metric:Recall\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"8\": [\"metric:F1 Score\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"9\": [\"metric:AUROC\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"10\": [\"metric:Accuracy\", \"gender:M\", \"age:overall_age\"], \"11\": [\"metric:Precision\", \"gender:M\", \"age:overall_age\"], \"12\": [\"metric:Recall\", \"gender:M\", \"age:overall_age\"], \"13\": [\"metric:F1 Score\", \"gender:M\", \"age:overall_age\"], \"14\": [\"metric:AUROC\", \"gender:M\", \"age:overall_age\"], \"15\": [\"metric:Accuracy\", \"gender:F\", \"age:overall_age\"], \"16\": [\"metric:Precision\", \"gender:F\", \"age:overall_age\"], \"17\": [\"metric:Recall\", \"gender:F\", \"age:overall_age\"], \"18\": [\"metric:F1 Score\", \"gender:F\", \"age:overall_age\"], \"19\": [\"metric:AUROC\", \"gender:F\", \"age:overall_age\"], \"20\": [\"metric:Accuracy\", \"age:overall_age\", \"gender:overall_gender\"], \"21\": [\"metric:Precision\", \"age:overall_age\", \"gender:overall_gender\"], \"22\": [\"metric:Recall\", \"age:overall_age\", \"gender:overall_gender\"], \"23\": [\"metric:F1 Score\", \"age:overall_age\", \"gender:overall_gender\"], \"24\": [\"metric:AUROC\", \"age:overall_age\", \"gender:overall_gender\"], \"25\": [\"metric:Accuracy\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"26\": [\"metric:Precision\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"27\": [\"metric:Recall\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"28\": [\"metric:F1 Score\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"29\": [\"metric:AUROC\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"30\": [\"metric:Accuracy\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"31\": [\"metric:Precision\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"32\": [\"metric:Recall\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"33\": [\"metric:F1 Score\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"34\": [\"metric:AUROC\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"35\": [\"metric:Accuracy\", \"gender:M\", \"age:overall_age\"], \"36\": [\"metric:Precision\", \"gender:M\", \"age:overall_age\"], \"37\": [\"metric:Recall\", \"gender:M\", \"age:overall_age\"], \"38\": [\"metric:F1 Score\", \"gender:M\", \"age:overall_age\"], \"39\": [\"metric:AUROC\", \"gender:M\", \"age:overall_age\"], \"40\": [\"metric:Accuracy\", \"gender:F\", \"age:overall_age\"], \"41\": [\"metric:Precision\", \"gender:F\", \"age:overall_age\"], \"42\": [\"metric:Recall\", \"gender:F\", \"age:overall_age\"], \"43\": [\"metric:F1 Score\", \"gender:F\", \"age:overall_age\"], \"44\": [\"metric:AUROC\", \"gender:F\", \"age:overall_age\"], \"45\": [\"metric:Accuracy\", \"age:overall_age\", \"gender:overall_gender\"], \"46\": [\"metric:Precision\", \"age:overall_age\", \"gender:overall_gender\"], \"47\": [\"metric:Recall\", \"age:overall_age\", \"gender:overall_gender\"], \"48\": [\"metric:F1 Score\", \"age:overall_age\", \"gender:overall_gender\"], \"49\": [\"metric:AUROC\", \"age:overall_age\", \"gender:overall_gender\"]}"); - var histories_all = JSON.parse("{\"0\": [\"0.9938556067588326\", \"1.0\", \"1.0\", \"1.0\", \"0.9624791516577729\", \"0.9684155793292565\", \"1.0\", \"0.9322132496657871\"], \"1\": [\"0.0\", \"0.09971832307720793\", \"0.0\", \"0.0\", \"0.038443657820264196\", \"0.0\", \"0.07858249637040482\", \"0.061570421819291135\"], \"2\": [\"0.0\", \"0.0\", \"0.21979967941589065\", \"0.15202165141211327\", \"0.0\", \"0.0\", \"0.078096307870897\", \"0.0\"], \"3\": [\"0.0\", \"0.0\", \"0.09105647730583516\", \"0.0\", \"0.0\", \"0.22316854841702705\", \"0.0\", \"0.0\"], \"4\": [\"0.7482612055641422\", \"0.719862989681311\", \"0.7445177672186913\", \"0.7831315648403597\", \"0.6248692306176002\", \"0.9026667908500056\", \"0.7483615351710936\", \"0.6968843874934543\"], \"5\": [\"0.9868184541641701\", \"0.9561559632039621\", \"1.0\", \"0.8890350948324139\", \"0.9061253253169075\", \"1.0\", \"0.9554172251312234\", \"1.0\"], \"6\": [\"0.0\", \"0.11621016177733319\", \"0.0\", \"0.0025444729693200447\", \"0.10367468378142052\", \"0.0\", \"0.008875244086175444\", \"0.10673727865066363\"], \"7\": [\"0.0\", \"0.027138301602683376\", \"0.0\", \"0.0\", \"0.037976948609530936\", \"0.06422998127948823\", \"0.006593106121994086\", \"0.0\"], \"8\": [\"0.0\", \"0.0\", \"0.0076989604074267325\", \"0.04042806262160304\", \"0.0991827754307281\", \"0.0\", \"0.13649589008489377\", \"0.09380571831467463\"], \"9\": [\"0.8595380029806259\", \"0.7691904349721002\", \"0.9600788839291399\", \"0.8282775995129016\", \"0.878776435670868\", \"0.9333389163458563\", \"0.9787477386465779\", \"0.878917157319109\"], \"10\": [\"0.9755571531272466\", \"1.0\", \"1.0\", \"1.0\", \"0.9318934530955364\", \"1.0\", \"0.9078569142260178\", \"1.0\"], \"11\": [\"0.0\", \"0.0\", \"0.0\", \"0.08487166865765733\", \"0.07691937885651284\", \"0.14122120553678105\", \"0.0\", \"0.0\"], \"12\": [\"0.0\", \"0.047747879045533514\", \"0.0\", \"0.1224542067698369\", \"0.14397548239768707\", \"0.20318834352718707\", \"0.0\", \"0.03138137418675985\"], \"13\": [\"0.0\", \"0.0\", \"0.02800493604075518\", \"0.0\", \"0.0\", \"0.01789939217816505\", \"0.07106448031583336\", \"0.06673015341839304\"], \"14\": [\"0.8030148684381637\", \"0.6791560389729489\", \"0.8372962075729853\", \"0.962354749685657\", \"0.7362284586425828\", \"0.5678681660695661\", \"0.5500755630591415\", \"0.8362123392050905\"], \"15\": [\"0.9883720930232558\", \"1.0\", \"1.0\", \"0.7893196672803455\", \"1.0\", \"0.9835823483012499\", \"1.0\", \"0.7203832895438956\"], \"16\": [\"0.0\", \"0.0\", \"0.09578782265189635\", \"0.047638197685841994\", \"0.0\", \"0.14137367216595606\", \"0.0\", \"0.12197535771823882\"], \"17\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.011236234587489465\", \"0.030128043374910665\"], \"18\": [\"0.0\", \"0.0059083967835457185\", \"0.0\", \"0.0\", \"0.04178778860280271\", \"0.08787351815107622\", \"0.012956583022895492\", \"0.0007738551289361559\"], \"19\": [\"0.8488703439853451\", \"0.9127310386437131\", \"0.7796661407050053\", \"0.7282146766614328\", \"0.9307617989220323\", \"0.6979642133505481\", \"0.858507492541033\", \"0.9223149963128429\"], \"20\": [\"0.982124079915878\", \"0.9456210314817315\", \"1.0\", \"0.9577191324952529\", \"0.9764907964257965\", \"0.8505876630607123\", \"0.9759570070982758\", \"1.0\"], \"21\": [\"0.0\", \"0.0\", \"0.16498694780973078\", \"0.10178726506486496\", \"0.0\", \"0.0\", \"0.1214325068997815\", \"0.045606091153573176\"], \"22\": [\"0.0\", \"0.12459881244704388\", \"0.0\", \"0.0\", \"0.10071970835634388\", \"0.028781611018928368\", \"0.0\", \"0.0\"], \"23\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.030089728851838776\", \"0.0\", \"0.0\", \"0.0\"], \"24\": [\"0.8262060712936137\", \"0.882856522862133\", \"0.6536468342491204\", \"0.870719989604237\", \"0.8098316461099845\", \"0.9463595020554448\", \"0.9325249457459681\", \"0.7538263217935368\"], \"25\": [\"0.9938556067588326\", \"1.0\", \"1.0\", \"1.0\", \"0.9624791516577729\", \"0.9684155793292565\", \"1.0\", \"0.9322132496657871\", \"0.9562372812203237\"], \"26\": [\"0.0\", \"0.09971832307720793\", \"0.0\", \"0.0\", \"0.038443657820264196\", \"0.0\", \"0.07858249637040482\", \"0.061570421819291135\", \"0.0\"], \"27\": [\"0.0\", \"0.0\", \"0.21979967941589065\", \"0.15202165141211327\", \"0.0\", \"0.0\", \"0.078096307870897\", \"0.0\", \"0.0\"], \"28\": [\"0.0\", \"0.0\", \"0.09105647730583516\", \"0.0\", \"0.0\", \"0.22316854841702705\", \"0.0\", \"0.0\", \"0.04532526103716064\"], \"29\": [\"0.7482612055641422\", \"0.719862989681311\", \"0.7445177672186913\", \"0.7831315648403597\", \"0.6248692306176002\", \"0.9026667908500056\", \"0.7483615351710936\", \"0.6968843874934543\", \"0.7563975419116553\"], \"30\": [\"0.9868184541641701\", \"0.9561559632039621\", \"1.0\", \"0.8890350948324139\", \"0.9061253253169075\", \"1.0\", \"0.9554172251312234\", \"1.0\", \"1.0\"], \"31\": [\"0.0\", \"0.11621016177733319\", \"0.0\", \"0.0025444729693200447\", \"0.10367468378142052\", \"0.0\", \"0.008875244086175444\", \"0.10673727865066363\", \"0.0\"], \"32\": [\"0.0\", \"0.027138301602683376\", \"0.0\", \"0.0\", \"0.037976948609530936\", \"0.06422998127948823\", \"0.006593106121994086\", \"0.0\", \"0.10532519537736414\"], \"33\": [\"0.0\", \"0.0\", \"0.0076989604074267325\", \"0.04042806262160304\", \"0.0991827754307281\", \"0.0\", \"0.13649589008489377\", \"0.09380571831467463\", \"0.0988430051703231\"], \"34\": [\"0.8595380029806259\", \"0.7691904349721002\", \"0.9600788839291399\", \"0.8282775995129016\", \"0.878776435670868\", \"0.9333389163458563\", \"0.9787477386465779\", \"0.878917157319109\", \"0.9432769130880525\"], \"35\": [\"0.9755571531272466\", \"1.0\", \"1.0\", \"1.0\", \"0.9318934530955364\", \"1.0\", \"0.9078569142260178\", \"1.0\", \"0.9288170044221256\"], \"36\": [\"0.0\", \"0.0\", \"0.0\", \"0.08487166865765733\", \"0.07691937885651284\", \"0.14122120553678105\", \"0.0\", \"0.0\", \"0.08950538352460372\"], \"37\": [\"0.0\", \"0.047747879045533514\", \"0.0\", \"0.1224542067698369\", \"0.14397548239768707\", \"0.20318834352718707\", \"0.0\", \"0.03138137418675985\", \"0.07175049133610613\"], \"38\": [\"0.0\", \"0.0\", \"0.02800493604075518\", \"0.0\", \"0.0\", \"0.01789939217816505\", \"0.07106448031583336\", \"0.06673015341839304\", \"0.08953128034808681\"], \"39\": [\"0.8030148684381637\", \"0.6791560389729489\", \"0.8372962075729853\", \"0.962354749685657\", \"0.7362284586425828\", \"0.5678681660695661\", \"0.5500755630591415\", \"0.8362123392050905\", \"0.8968793124468617\"], \"40\": [\"0.9883720930232558\", \"1.0\", \"1.0\", \"0.7893196672803455\", \"1.0\", \"0.9835823483012499\", \"1.0\", \"0.7203832895438956\", \"1.0\"], \"41\": [\"0.0\", \"0.0\", \"0.09578782265189635\", \"0.047638197685841994\", \"0.0\", \"0.14137367216595606\", \"0.0\", \"0.12197535771823882\", \"0.0\"], \"42\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.011236234587489465\", \"0.030128043374910665\", \"0.02841367550252792\"], \"43\": [\"0.0\", \"0.0059083967835457185\", \"0.0\", \"0.0\", \"0.04178778860280271\", \"0.08787351815107622\", \"0.012956583022895492\", \"0.0007738551289361559\", \"0.07247702997288386\"], \"44\": [\"0.8488703439853451\", \"0.9127310386437131\", \"0.7796661407050053\", \"0.7282146766614328\", \"0.9307617989220323\", \"0.6979642133505481\", \"0.858507492541033\", \"0.9223149963128429\", \"0.7766476570651996\"], \"45\": [\"0.982124079915878\", \"0.9456210314817315\", \"1.0\", \"0.9577191324952529\", \"0.9764907964257965\", \"0.8505876630607123\", \"0.9759570070982758\", \"1.0\", \"0.8980457855125427\"], \"46\": [\"0.0\", \"0.0\", \"0.16498694780973078\", \"0.10178726506486496\", \"0.0\", \"0.0\", \"0.1214325068997815\", \"0.045606091153573176\", \"0.0800467534922995\"], \"47\": [\"0.0\", \"0.12459881244704388\", \"0.0\", \"0.0\", \"0.10071970835634388\", \"0.028781611018928368\", \"0.0\", \"0.0\", \"0.0\"], \"48\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.030089728851838776\", \"0.0\", \"0.0\", \"0.0\", \"0.06429407099940196\"], \"49\": [\"0.8262060712936137\", \"0.882856522862133\", \"0.6536468342491204\", \"0.870719989604237\", \"0.8098316461099845\", \"0.9463595020554448\", \"0.9325249457459681\", \"0.7538263217935368\", \"0.7300461954914608\"]}"); + var histories_all = JSON.parse("{\"0\": [\"0.9942279942279942\", \"0.7594144965282804\", \"0.9529435179909627\", \"1.0\", \"0.9824222087172482\", \"0.8918760706294051\", \"1.0\", \"0.9192617580826633\"], \"1\": [\"0.0\", \"0.039238992815548435\", \"0.0\", \"0.055517905809275285\", \"0.0\", \"0.13421211539934277\", \"0.0\", \"0.04463031659295377\"], \"2\": [\"0.0\", \"0.0\", \"0.08711249881031106\", \"0.07241396632645575\", \"0.08128642675685682\", \"0.02902037431332784\", \"0.0\", \"0.04474303889930112\"], \"3\": [\"0.0\", \"0.02205527619535966\", \"0.03243902948582891\", \"0.03494230964539643\", \"0.0\", \"0.0\", \"0.024057418374333433\", \"0.11112365920573815\"], \"4\": [\"0.7873730043541365\", \"0.8490645002357041\", \"0.8284713265874177\", \"0.7725107538646363\", \"0.8669065970069708\", \"0.7330137201245794\", \"0.7150319244733144\", \"0.6964042400231425\"], \"5\": [\"0.9855072463768116\", \"0.9476931593826841\", \"0.9879239618756389\", \"1.0\", \"0.9746544306089349\", \"0.7902046471798005\", \"0.7976488988761291\", \"0.9494576043250694\"], \"6\": [\"0.5\", \"0.3678441498661924\", \"0.5292269735666868\", \"0.5305294150629818\", \"0.35836260429896805\", \"0.47847272137702107\", \"0.55514972590488\", \"0.37351242736419443\"], \"7\": [\"0.17391304347826086\", \"0.3320907228868427\", \"0.36502179115312994\", \"0.0\", \"0.00271057995514265\", \"0.17106348095286344\", \"0.2809067739249912\", \"0.146257989720016\"], \"8\": [\"0.25806451612903225\", \"0.24223931150711597\", \"0.11546244070507433\", \"0.017291302768986883\", \"0.20669981383759975\", \"0.16472540906888358\", \"0.35577441497030965\", \"0.3178680487264552\"], \"9\": [\"0.9082341821416657\", \"0.76426587141965\", \"1.0\", \"0.8561398085736192\", \"0.92943589011621\", \"0.8058255388359045\", \"0.8074467931292719\", \"0.8775635640987218\"], \"10\": [\"0.9785819793205317\", \"0.925754895225367\", \"1.0\", \"0.9249110470119646\", \"0.9902885546536232\", \"0.9217424791342514\", \"1.0\", \"1.0\"], \"11\": [\"0.8\", \"0.890978490101253\", \"0.9750319727760646\", \"0.7578298434530611\", \"0.6799970068448035\", \"0.7751204321677446\", \"0.6945600252889785\", \"0.7768056304526473\"], \"12\": [\"0.125\", \"0.10523429421794395\", \"0.2118909125310025\", \"0.23489391114366323\", \"0.009646074369691601\", \"0.0\", \"0.11874761421371996\", \"0.0527955541221309\"], \"13\": [\"0.21621621621621623\", \"0.2755990793640338\", \"0.1969201674829802\", \"0.2953896409279389\", \"0.3015843931634597\", \"0.11554201048347584\", \"0.17548242292280566\", \"0.1588659564099655\"], \"14\": [\"0.8854954614220878\", \"0.7901343495291016\", \"0.6735490291492734\", \"0.7248234202606522\", \"0.8540815562901561\", \"0.8495278761798312\", \"0.8451647849021927\", \"0.7491110760974696\"], \"15\": [\"0.9839893262174784\", \"1.0\", \"0.8957344350379133\", \"0.8848133210118219\", \"0.827140572253577\", \"0.9388111096357881\", \"1.0\", \"1.0\"], \"16\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.05446986285420115\", \"0.11260208809180404\", \"0.0\", \"0.0649971042447053\"], \"17\": [\"0.0\", \"0.0\", \"0.06684893191000317\", \"0.0067764777693481715\", \"0.0\", \"0.0\", \"0.0\", \"0.11494890051043105\"], \"18\": [\"0.0\", \"0.16429095440635488\", \"0.0\", \"0.0\", \"0.0\", \"0.07168311553224681\", \"0.09235130658559526\", \"0.1310269931772118\"], \"19\": [\"0.8717283072546229\", \"1.0\", \"0.8570517170387312\", \"0.8746594189789219\", \"0.8308022148127684\", \"0.8653946685389643\", \"0.7708804399994251\", \"0.8579005798224476\"], \"20\": [\"0.9814230634419909\", \"0.9963978770381511\", \"1.0\", \"0.8218075211799654\", \"0.9591253663211922\", \"0.855653908628556\", \"1.0\", \"0.9731598153025469\"], \"21\": [\"0.4\", \"0.250038791297359\", \"0.40584941487144915\", \"0.3014925493939453\", \"0.572832617828055\", \"0.4124427574687024\", \"0.47851573961831473\", \"0.544650438336034\"], \"22\": [\"0.0784313725490196\", \"0.14995223132733781\", \"0.12311393437201215\", \"0.17565667327164983\", \"0.0\", \"0.131544112788465\", \"0.06008001069152505\", \"0.16566158911607187\"], \"23\": [\"0.13114754098360656\", \"0.15834272573578892\", \"0.03462685706967854\", \"0.0\", \"0.13399851975796426\", \"0.06428351916645836\", \"0.08231010130394614\", \"0.004070883213888515\"], \"24\": [\"0.8808204223873703\", \"0.848890252305633\", \"0.8638368844821835\", \"0.7660640805070529\", \"0.8965918083791469\", \"0.7883976569818673\", \"0.7281985649352972\", \"0.9923236715966286\"], \"25\": [\"0.9942279942279942\", \"0.7594144965282804\", \"0.9529435179909627\", \"1.0\", \"0.9824222087172482\", \"0.8918760706294051\", \"1.0\", \"0.9192617580826633\", \"0.8507706093937389\"], \"26\": [\"0.0\", \"0.039238992815548435\", \"0.0\", \"0.055517905809275285\", \"0.0\", \"0.13421211539934277\", \"0.0\", \"0.04463031659295377\", \"0.0\"], \"27\": [\"0.0\", \"0.0\", \"0.08711249881031106\", \"0.07241396632645575\", \"0.08128642675685682\", \"0.02902037431332784\", \"0.0\", \"0.04474303889930112\", \"0.05355241932936568\"], \"28\": [\"0.0\", \"0.02205527619535966\", \"0.03243902948582891\", \"0.03494230964539643\", \"0.0\", \"0.0\", \"0.024057418374333433\", \"0.11112365920573815\", \"0.17433895525394807\"], \"29\": [\"0.7873730043541365\", \"0.8490645002357041\", \"0.8284713265874177\", \"0.7725107538646363\", \"0.8669065970069708\", \"0.7330137201245794\", \"0.7150319244733144\", \"0.6964042400231425\", \"0.6889387330339705\"], \"30\": [\"0.9855072463768116\", \"0.9476931593826841\", \"0.9879239618756389\", \"1.0\", \"0.9746544306089349\", \"0.7902046471798005\", \"0.7976488988761291\", \"0.9494576043250694\", \"0.884552060746134\"], \"31\": [\"0.5\", \"0.3678441498661924\", \"0.5292269735666868\", \"0.5305294150629818\", \"0.35836260429896805\", \"0.47847272137702107\", \"0.55514972590488\", \"0.37351242736419443\", \"0.6749529534618067\"], \"32\": [\"0.17391304347826086\", \"0.3320907228868427\", \"0.36502179115312994\", \"0.0\", \"0.00271057995514265\", \"0.17106348095286344\", \"0.2809067739249912\", \"0.146257989720016\", \"0.2382389043459825\"], \"33\": [\"0.25806451612903225\", \"0.24223931150711597\", \"0.11546244070507433\", \"0.017291302768986883\", \"0.20669981383759975\", \"0.16472540906888358\", \"0.35577441497030965\", \"0.3178680487264552\", \"0.16859720226378236\"], \"34\": [\"0.9082341821416657\", \"0.76426587141965\", \"1.0\", \"0.8561398085736192\", \"0.92943589011621\", \"0.8058255388359045\", \"0.8074467931292719\", \"0.8775635640987218\", \"0.9620463280472934\"], \"35\": [\"0.9785819793205317\", \"0.925754895225367\", \"1.0\", \"0.9249110470119646\", \"0.9902885546536232\", \"0.9217424791342514\", \"1.0\", \"1.0\", \"1.0\"], \"36\": [\"0.8\", \"0.890978490101253\", \"0.9750319727760646\", \"0.7578298434530611\", \"0.6799970068448035\", \"0.7751204321677446\", \"0.6945600252889785\", \"0.7768056304526473\", \"0.8748730386475903\"], \"37\": [\"0.125\", \"0.10523429421794395\", \"0.2118909125310025\", \"0.23489391114366323\", \"0.009646074369691601\", \"0.0\", \"0.11874761421371996\", \"0.0527955541221309\", \"0.06404874859519369\"], \"38\": [\"0.21621621621621623\", \"0.2755990793640338\", \"0.1969201674829802\", \"0.2953896409279389\", \"0.3015843931634597\", \"0.11554201048347584\", \"0.17548242292280566\", \"0.1588659564099655\", \"0.19888908119268434\"], \"39\": [\"0.8854954614220878\", \"0.7901343495291016\", \"0.6735490291492734\", \"0.7248234202606522\", \"0.8540815562901561\", \"0.8495278761798312\", \"0.8451647849021927\", \"0.7491110760974696\", \"0.9109505112268653\"], \"40\": [\"0.9839893262174784\", \"1.0\", \"0.8957344350379133\", \"0.8848133210118219\", \"0.827140572253577\", \"0.9388111096357881\", \"1.0\", \"1.0\", \"1.0\"], \"41\": [\"0.0\", \"0.0\", \"0.0\", \"0.0\", \"0.05446986285420115\", \"0.11260208809180404\", \"0.0\", \"0.0649971042447053\", \"0.03291679948937264\"], \"42\": [\"0.0\", \"0.0\", \"0.06684893191000317\", \"0.0067764777693481715\", \"0.0\", \"0.0\", \"0.0\", \"0.11494890051043105\", \"0.0\"], \"43\": [\"0.0\", \"0.16429095440635488\", \"0.0\", \"0.0\", \"0.0\", \"0.07168311553224681\", \"0.09235130658559526\", \"0.1310269931772118\", \"0.0\"], \"44\": [\"0.8717283072546229\", \"1.0\", \"0.8570517170387312\", \"0.8746594189789219\", \"0.8308022148127684\", \"0.8653946685389643\", \"0.7708804399994251\", \"0.8579005798224476\", \"0.7343811414228953\"], \"45\": [\"0.9814230634419909\", \"0.9963978770381511\", \"1.0\", \"0.8218075211799654\", \"0.9591253663211922\", \"0.855653908628556\", \"1.0\", \"0.9731598153025469\", \"0.876626125744864\"], \"46\": [\"0.4\", \"0.250038791297359\", \"0.40584941487144915\", \"0.3014925493939453\", \"0.572832617828055\", \"0.4124427574687024\", \"0.47851573961831473\", \"0.544650438336034\", \"0.5128191799957126\"], \"47\": [\"0.0784313725490196\", \"0.14995223132733781\", \"0.12311393437201215\", \"0.17565667327164983\", \"0.0\", \"0.131544112788465\", \"0.06008001069152505\", \"0.16566158911607187\", \"0.12769215042169926\"], \"48\": [\"0.13114754098360656\", \"0.15834272573578892\", \"0.03462685706967854\", \"0.0\", \"0.13399851975796426\", \"0.06428351916645836\", \"0.08231010130394614\", \"0.004070883213888515\", \"0.23011987591430827\"], \"49\": [\"0.8808204223873703\", \"0.848890252305633\", \"0.8638368844821835\", \"0.7660640805070529\", \"0.8965918083791469\", \"0.7883976569818673\", \"0.7281985649352972\", \"0.9923236715966286\", \"0.9134169503450666\"]}"); var thresholds_all = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\", \"16\": \"0.7\", \"17\": \"0.7\", \"18\": \"0.7\", \"19\": \"0.7\", \"20\": \"0.7\", \"21\": \"0.7\", \"22\": \"0.7\", \"23\": \"0.7\", \"24\": \"0.7\", \"25\": \"0.7\", \"26\": \"0.7\", \"27\": \"0.7\", \"28\": \"0.7\", \"29\": \"0.7\", \"30\": \"0.7\", \"31\": \"0.7\", \"32\": \"0.7\", \"33\": \"0.7\", \"34\": \"0.7\", \"35\": \"0.7\", \"36\": \"0.7\", \"37\": \"0.7\", \"38\": \"0.7\", \"39\": \"0.7\", \"40\": \"0.7\", \"41\": \"0.7\", \"42\": \"0.7\", \"43\": \"0.7\", \"44\": \"0.7\", \"45\": \"0.7\", \"46\": \"0.7\", \"47\": \"0.7\", \"48\": \"0.7\", \"49\": \"0.7\"}"); - var trends_all = JSON.parse("{\"0\": \"neutral\", \"1\": \"neutral\", \"2\": \"neutral\", \"3\": \"neutral\", \"4\": \"neutral\", \"5\": \"neutral\", \"6\": \"neutral\", \"7\": \"neutral\", \"8\": \"positive\", \"9\": \"positive\", \"10\": \"neutral\", \"11\": \"neutral\", \"12\": \"neutral\", \"13\": \"neutral\", \"14\": \"negative\", \"15\": \"negative\", \"16\": \"positive\", \"17\": \"neutral\", \"18\": \"neutral\", \"19\": \"neutral\", \"20\": \"neutral\", \"21\": \"neutral\", \"22\": \"neutral\", \"23\": \"neutral\", \"24\": \"neutral\", \"25\": \"neutral\", \"26\": \"neutral\", \"27\": \"neutral\", \"28\": \"neutral\", \"29\": \"neutral\", \"30\": \"neutral\", \"31\": \"neutral\", \"32\": \"neutral\", \"33\": \"positive\", \"34\": \"positive\", \"35\": \"neutral\", \"36\": \"neutral\", \"37\": \"neutral\", \"38\": \"positive\", \"39\": \"neutral\", \"40\": \"neutral\", \"41\": \"neutral\", \"42\": \"neutral\", \"43\": \"neutral\", \"44\": \"neutral\", \"45\": \"neutral\", \"46\": \"neutral\", \"47\": \"neutral\", \"48\": \"neutral\", \"49\": \"neutral\"}"); - var passed_all = JSON.parse("{\"0\": true, \"1\": false, \"2\": false, \"3\": false, \"4\": false, \"5\": true, \"6\": false, \"7\": false, \"8\": false, \"9\": true, \"10\": true, \"11\": false, \"12\": false, \"13\": false, \"14\": true, \"15\": true, \"16\": false, \"17\": false, \"18\": false, \"19\": true, \"20\": true, \"21\": false, \"22\": false, \"23\": false, \"24\": true, \"25\": true, \"26\": false, \"27\": false, \"28\": false, \"29\": true, \"30\": true, \"31\": false, \"32\": false, \"33\": false, \"34\": true, \"35\": true, \"36\": false, \"37\": false, \"38\": false, \"39\": true, \"40\": true, \"41\": false, \"42\": false, \"43\": false, \"44\": true, \"45\": true, \"46\": false, \"47\": false, \"48\": false, \"49\": true}"); + var trends_all = JSON.parse("{\"0\": \"neutral\", \"1\": \"neutral\", \"2\": \"neutral\", \"3\": \"neutral\", \"4\": \"negative\", \"5\": \"negative\", \"6\": \"neutral\", \"7\": \"negative\", \"8\": \"positive\", \"9\": \"neutral\", \"10\": \"neutral\", \"11\": \"negative\", \"12\": \"negative\", \"13\": \"negative\", \"14\": \"neutral\", \"15\": \"neutral\", \"16\": \"positive\", \"17\": \"neutral\", \"18\": \"neutral\", \"19\": \"negative\", \"20\": \"neutral\", \"21\": \"positive\", \"22\": \"neutral\", \"23\": \"negative\", \"24\": \"neutral\", \"25\": \"neutral\", \"26\": \"neutral\", \"27\": \"neutral\", \"28\": \"positive\", \"29\": \"negative\", \"30\": \"negative\", \"31\": \"positive\", \"32\": \"neutral\", \"33\": \"neutral\", \"34\": \"neutral\", \"35\": \"neutral\", \"36\": \"neutral\", \"37\": \"negative\", \"38\": \"negative\", \"39\": \"neutral\", \"40\": \"neutral\", \"41\": \"neutral\", \"42\": \"neutral\", \"43\": \"neutral\", \"44\": \"negative\", \"45\": \"neutral\", \"46\": \"positive\", \"47\": \"neutral\", \"48\": \"neutral\", \"49\": \"neutral\"}"); + var passed_all = JSON.parse("{\"0\": true, \"1\": false, \"2\": false, \"3\": false, \"4\": false, \"5\": true, \"6\": false, \"7\": false, \"8\": false, \"9\": true, \"10\": true, \"11\": true, \"12\": false, \"13\": false, \"14\": true, \"15\": true, \"16\": false, \"17\": false, \"18\": false, \"19\": true, \"20\": true, \"21\": false, \"22\": false, \"23\": false, \"24\": true, \"25\": true, \"26\": false, \"27\": false, \"28\": false, \"29\": false, \"30\": true, \"31\": false, \"32\": false, \"33\": false, \"34\": true, \"35\": true, \"36\": true, \"37\": false, \"38\": false, \"39\": true, \"40\": true, \"41\": false, \"42\": false, \"43\": false, \"44\": true, \"45\": true, \"46\": false, \"47\": false, \"48\": false, \"49\": true}"); var names_all = JSON.parse("{\"0\": \"Accuracy\", \"1\": \"Precision\", \"2\": \"Recall\", \"3\": \"F1 Score\", \"4\": \"AUROC\", \"5\": \"Accuracy\", \"6\": \"Precision\", \"7\": \"Recall\", \"8\": \"F1 Score\", \"9\": \"AUROC\", \"10\": \"Accuracy\", \"11\": \"Precision\", \"12\": \"Recall\", \"13\": \"F1 Score\", \"14\": \"AUROC\", \"15\": \"Accuracy\", \"16\": \"Precision\", \"17\": \"Recall\", \"18\": \"F1 Score\", \"19\": \"AUROC\", \"20\": \"Accuracy\", \"21\": \"Precision\", \"22\": \"Recall\", \"23\": \"F1 Score\", \"24\": \"AUROC\", \"25\": \"Accuracy\", \"26\": \"Precision\", \"27\": \"Recall\", \"28\": \"F1 Score\", \"29\": \"AUROC\", \"30\": \"Accuracy\", \"31\": \"Precision\", \"32\": \"Recall\", \"33\": \"F1 Score\", \"34\": \"AUROC\", \"35\": \"Accuracy\", \"36\": \"Precision\", \"37\": \"Recall\", \"38\": \"F1 Score\", \"39\": \"AUROC\", \"40\": \"Accuracy\", \"41\": \"Precision\", \"42\": \"Recall\", \"43\": \"F1 Score\", \"44\": \"AUROC\", \"45\": \"Accuracy\", \"46\": \"Precision\", \"47\": \"Recall\", \"48\": \"F1 Score\", \"49\": \"AUROC\"}"); var timestamps_all = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"16\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"17\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"18\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"19\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"20\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"21\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"22\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"23\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"24\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\"], \"25\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"26\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"27\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"28\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"29\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"30\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"31\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"32\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"33\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"34\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"35\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"36\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"37\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"38\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"39\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"40\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"41\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"42\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"43\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"44\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"45\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"46\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"47\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"48\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"], \"49\": [\"2021-09-01\", \"2021-10-01\", \"2021-10-01\", \"2021-11-01\", \"2021-11-01\", \"2021-12-01\", \"2021-12-01\", \"2022-01-01\", \"2022-01-01\"]}"); diff --git a/api/tutorials/nihcxr/cxr_classification.html b/api/tutorials/nihcxr/cxr_classification.html index f92e2041f..d511e162f 100644 --- a/api/tutorials/nihcxr/cxr_classification.html +++ b/api/tutorials/nihcxr/cxr_classification.html @@ -479,7 +479,7 @@

Import Libraries
-/mnt/data/poetry/pycyclops-wIzUAwxh-py3.10/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
+/mnt/data/poetry/pycyclops-mhx6UJW0-py3.10/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
   from .autonotebook import tqdm as notebook_tqdm
 

@@ -504,74 +504,74 @@

Generate Historical Reports
-Flattening the indices: 100%|████████| 1000/1000 [00:55<00:00, 17.97 examples/s]
-Flattening the indices: 100%|████| 1000/1000 [00:00<00:00, 563220.63 examples/s]
-Filter: 100%|████████████████████| 1000/1000 [00:00<00:00, 237247.81 examples/s]
-Map: 100%|███████████████████████████| 400/400 [00:00<00:00, 1908.30 examples/s]
-Filter -> Patient Gender:M: 100%|███| 400/400 [00:00<00:00, 43377.76 examples/s]
-Filter -> Patient Gender:F: 100%|███| 400/400 [00:00<00:00, 43149.06 examples/s]
-Filter -> overall: 100%|████████████| 400/400 [00:00<00:00, 45079.44 examples/s]
-Filter -> Patient Age:[19 - 35]: 100%|█| 400/400 [00:00<00:00, 44577.57 examples
-Filter -> Patient Age:[35 - 65]: 100%|█| 400/400 [00:00<00:00, 45342.60 examples
-Filter -> Patient Age:[65 - 100]: 100%|█| 400/400 [00:00<00:00, 43014.09 example
+Flattening the indices: 100%|████████| 1000/1000 [00:53<00:00, 18.71 examples/s]
+Flattening the indices: 100%|████| 1000/1000 [00:00<00:00, 550578.10 examples/s]
+Filter: 100%|████████████████████| 1000/1000 [00:00<00:00, 238096.28 examples/s]
+Map: 100%|███████████████████████████| 400/400 [00:00<00:00, 1893.89 examples/s]
+Filter -> Patient Gender:M: 100%|███| 400/400 [00:00<00:00, 43740.79 examples/s]
+Filter -> Patient Gender:F: 100%|███| 400/400 [00:00<00:00, 43260.32 examples/s]
+Filter -> overall: 100%|████████████| 400/400 [00:00<00:00, 44992.40 examples/s]
+Filter -> Patient Age:[19 - 35]: 100%|█| 400/400 [00:00<00:00, 44819.32 examples
+Filter -> Patient Age:[35 - 65]: 100%|█| 400/400 [00:00<00:00, 45924.71 examples
+Filter -> Patient Age:[65 - 100]: 100%|█| 400/400 [00:00<00:00, 45090.35 example
 Filter -> Patient Age:[19 - 35]&Patient Gender:M: 100%|█| 400/400 [00:00<00:00,
 Filter -> Patient Age:[19 - 35]&Patient Gender:F: 100%|█| 400/400 [00:00<00:00,
 Filter -> Patient Age:[35 - 65]&Patient Gender:M: 100%|█| 400/400 [00:00<00:00,
 Filter -> Patient Age:[35 - 65]&Patient Gender:F: 100%|█| 400/400 [00:00<00:00,
 Filter -> Patient Age:[65 - 100]&Patient Gender:M: 100%|█| 400/400 [00:00<00:00,
 Filter -> Patient Age:[65 - 100]&Patient Gender:F: 100%|█| 400/400 [00:00<00:00,
-Filter -> overall: 100%|████████████| 400/400 [00:00<00:00, 46049.50 examples/s]
-Flattening the indices: 100%|████████| 1000/1000 [00:53<00:00, 18.58 examples/s]
-Flattening the indices: 100%|████| 1000/1000 [00:00<00:00, 562163.79 examples/s]
-Filter: 100%|████████████████████| 1000/1000 [00:00<00:00, 241983.73 examples/s]
-Map: 100%|███████████████████████████| 396/396 [00:00<00:00, 1874.94 examples/s]
-Filter -> Patient Gender:M: 100%|███| 396/396 [00:00<00:00, 40118.46 examples/s]
-Filter -> Patient Gender:F: 100%|███| 396/396 [00:00<00:00, 34830.86 examples/s]
-Filter -> overall: 100%|████████████| 396/396 [00:00<00:00, 29268.26 examples/s]
-Filter -> Patient Age:[19 - 35]: 100%|█| 396/396 [00:00<00:00, 24633.95 examples
-Filter -> Patient Age:[35 - 65]: 100%|█| 396/396 [00:00<00:00, 24704.67 examples
-Filter -> Patient Age:[65 - 100]: 100%|█| 396/396 [00:00<00:00, 26230.13 example
+Filter -> overall: 100%|████████████| 400/400 [00:00<00:00, 45370.80 examples/s]
+Flattening the indices: 100%|████████| 1000/1000 [00:53<00:00, 18.65 examples/s]
+Flattening the indices: 100%|████| 1000/1000 [00:00<00:00, 554215.64 examples/s]
+Filter: 100%|████████████████████| 1000/1000 [00:00<00:00, 238556.71 examples/s]
+Map: 100%|███████████████████████████| 396/396 [00:00<00:00, 1882.12 examples/s]
+Filter -> Patient Gender:M: 100%|███| 396/396 [00:00<00:00, 43408.63 examples/s]
+Filter -> Patient Gender:F: 100%|███| 396/396 [00:00<00:00, 42945.09 examples/s]
+Filter -> overall: 100%|████████████| 396/396 [00:00<00:00, 45858.37 examples/s]
+Filter -> Patient Age:[19 - 35]: 100%|█| 396/396 [00:00<00:00, 44587.91 examples
+Filter -> Patient Age:[35 - 65]: 100%|█| 396/396 [00:00<00:00, 44751.30 examples
+Filter -> Patient Age:[65 - 100]: 100%|█| 396/396 [00:00<00:00, 16723.83 example
 Filter -> Patient Age:[19 - 35]&Patient Gender:M: 100%|█| 396/396 [00:00<00:00,
 Filter -> Patient Age:[19 - 35]&Patient Gender:F: 100%|█| 396/396 [00:00<00:00,
 Filter -> Patient Age:[35 - 65]&Patient Gender:M: 100%|█| 396/396 [00:00<00:00,
 Filter -> Patient Age:[35 - 65]&Patient Gender:F: 100%|█| 396/396 [00:00<00:00,
 Filter -> Patient Age:[65 - 100]&Patient Gender:M: 100%|█| 396/396 [00:00<00:00,
 Filter -> Patient Age:[65 - 100]&Patient Gender:F: 100%|█| 396/396 [00:00<00:00,
-Filter -> overall: 100%|████████████| 396/396 [00:00<00:00, 23274.26 examples/s]
-Flattening the indices: 100%|████████| 1000/1000 [00:54<00:00, 18.20 examples/s]
-Flattening the indices: 100%|████| 1000/1000 [00:00<00:00, 563902.12 examples/s]
-Filter: 100%|████████████████████| 1000/1000 [00:00<00:00, 241593.46 examples/s]
-Map: 100%|███████████████████████████| 383/383 [00:00<00:00, 1791.06 examples/s]
-Filter -> Patient Gender:M: 100%|███| 383/383 [00:00<00:00, 43233.27 examples/s]
-Filter -> Patient Gender:F: 100%|███| 383/383 [00:00<00:00, 43037.52 examples/s]
-Filter -> overall: 100%|████████████| 383/383 [00:00<00:00, 45409.84 examples/s]
-Filter -> Patient Age:[19 - 35]: 100%|█| 383/383 [00:00<00:00, 24656.47 examples
-Filter -> Patient Age:[35 - 65]: 100%|█| 383/383 [00:00<00:00, 24065.83 examples
-Filter -> Patient Age:[65 - 100]: 100%|█| 383/383 [00:00<00:00, 26096.44 example
+Filter -> overall: 100%|████████████| 396/396 [00:00<00:00, 25961.99 examples/s]
+Flattening the indices: 100%|████████| 1000/1000 [00:54<00:00, 18.21 examples/s]
+Flattening the indices: 100%|████| 1000/1000 [00:00<00:00, 544997.92 examples/s]
+Filter: 100%|████████████████████| 1000/1000 [00:00<00:00, 241065.81 examples/s]
+Map: 100%|███████████████████████████| 383/383 [00:00<00:00, 1794.05 examples/s]
+Filter -> Patient Gender:M: 100%|███| 383/383 [00:00<00:00, 43309.03 examples/s]
+Filter -> Patient Gender:F: 100%|███| 383/383 [00:00<00:00, 42959.26 examples/s]
+Filter -> overall: 100%|████████████| 383/383 [00:00<00:00, 45556.65 examples/s]
+Filter -> Patient Age:[19 - 35]: 100%|█| 383/383 [00:00<00:00, 44647.54 examples
+Filter -> Patient Age:[35 - 65]: 100%|█| 383/383 [00:00<00:00, 45216.83 examples
+Filter -> Patient Age:[65 - 100]: 100%|█| 383/383 [00:00<00:00, 33329.57 example
 Filter -> Patient Age:[19 - 35]&Patient Gender:M: 100%|█| 383/383 [00:00<00:00,
 Filter -> Patient Age:[19 - 35]&Patient Gender:F: 100%|█| 383/383 [00:00<00:00,
 Filter -> Patient Age:[35 - 65]&Patient Gender:M: 100%|█| 383/383 [00:00<00:00,
 Filter -> Patient Age:[35 - 65]&Patient Gender:F: 100%|█| 383/383 [00:00<00:00,
 Filter -> Patient Age:[65 - 100]&Patient Gender:M: 100%|█| 383/383 [00:00<00:00,
 Filter -> Patient Age:[65 - 100]&Patient Gender:F: 100%|█| 383/383 [00:00<00:00,
-Filter -> overall: 100%|████████████| 383/383 [00:00<00:00, 22830.44 examples/s]
-Flattening the indices: 100%|████████| 1000/1000 [00:55<00:00, 17.97 examples/s]
-Flattening the indices: 100%|████| 1000/1000 [00:00<00:00, 553703.50 examples/s]
-Filter: 100%|████████████████████| 1000/1000 [00:00<00:00, 238910.00 examples/s]
-Map: 100%|███████████████████████████| 411/411 [00:00<00:00, 1892.96 examples/s]
-Filter -> Patient Gender:M: 100%|███| 411/411 [00:00<00:00, 44015.29 examples/s]
-Filter -> Patient Gender:F: 100%|███| 411/411 [00:00<00:00, 42956.86 examples/s]
-Filter -> overall: 100%|████████████| 411/411 [00:00<00:00, 46080.16 examples/s]
-Filter -> Patient Age:[19 - 35]: 100%|█| 411/411 [00:00<00:00, 45419.69 examples
-Filter -> Patient Age:[35 - 65]: 100%|█| 411/411 [00:00<00:00, 45912.03 examples
-Filter -> Patient Age:[65 - 100]: 100%|█| 411/411 [00:00<00:00, 45787.64 example
+Filter -> overall: 100%|████████████| 383/383 [00:00<00:00, 46347.91 examples/s]
+Flattening the indices: 100%|████████| 1000/1000 [00:54<00:00, 18.25 examples/s]
+Flattening the indices: 100%|████| 1000/1000 [00:00<00:00, 559389.70 examples/s]
+Filter: 100%|████████████████████| 1000/1000 [00:00<00:00, 239046.16 examples/s]
+Map: 100%|███████████████████████████| 411/411 [00:00<00:00, 1906.94 examples/s]
+Filter -> Patient Gender:M: 100%|███| 411/411 [00:00<00:00, 44019.79 examples/s]
+Filter -> Patient Gender:F: 100%|███| 411/411 [00:00<00:00, 44166.40 examples/s]
+Filter -> overall: 100%|████████████| 411/411 [00:00<00:00, 45872.93 examples/s]
+Filter -> Patient Age:[19 - 35]: 100%|█| 411/411 [00:00<00:00, 44765.09 examples
+Filter -> Patient Age:[35 - 65]: 100%|█| 411/411 [00:00<00:00, 45796.16 examples
+Filter -> Patient Age:[65 - 100]: 100%|█| 411/411 [00:00<00:00, 45506.02 example
 Filter -> Patient Age:[19 - 35]&Patient Gender:M: 100%|█| 411/411 [00:00<00:00,
 Filter -> Patient Age:[19 - 35]&Patient Gender:F: 100%|█| 411/411 [00:00<00:00,
 Filter -> Patient Age:[35 - 65]&Patient Gender:M: 100%|█| 411/411 [00:00<00:00,
 Filter -> Patient Age:[35 - 65]&Patient Gender:F: 100%|█| 411/411 [00:00<00:00,
 Filter -> Patient Age:[65 - 100]&Patient Gender:M: 100%|█| 411/411 [00:00<00:00,
 Filter -> Patient Age:[65 - 100]&Patient Gender:F: 100%|█| 411/411 [00:00<00:00,
-Filter -> overall: 100%|████████████| 411/411 [00:00<00:00, 47511.48 examples/s]
+Filter -> overall: 100%|████████████| 411/411 [00:00<00:00, 47463.08 examples/s]
 

CyclOps offers a package for documentation of the model through a model report. The ModelCardReport class is used to populate and generate the model report as an HTML file. The model report has the following sections:

@@ -669,8 +669,8 @@

Model Creation
-Filter: 100%|██████████| 1000/1000 [00:00<00:00, 157125.35 examples/s]
-Map: 100%|██████████| 661/661 [00:00<00:00, 1705.01 examples/s]
+Filter: 100%|██████████| 1000/1000 [00:00<00:00, 106190.29 examples/s]
+Map: 100%|██████████| 661/661 [00:00<00:00, 1674.04 examples/s]
 

@@ -860,16 +860,16 @@

Multilabel AUROC by Pathology and Age
-Filter -> Patient Age:[19 - 35]: 100%|██████████| 661/661 [00:00<00:00, 43515.11 examples/s]
-Filter -> Patient Age:[35 - 65]: 100%|██████████| 661/661 [00:00<00:00, 47717.51 examples/s]
-Filter -> Patient Age:[65 - 100]: 100%|██████████| 661/661 [00:00<00:00, 47175.93 examples/s]
-Filter -> Patient Age:[19 - 35]&Patient Gender:M: 100%|██████████| 661/661 [00:00<00:00, 46420.01 examples/s]
-Filter -> Patient Age:[19 - 35]&Patient Gender:F: 100%|██████████| 661/661 [00:00<00:00, 45975.84 examples/s]
-Filter -> Patient Age:[35 - 65]&Patient Gender:M: 100%|██████████| 661/661 [00:00<00:00, 44598.72 examples/s]
-Filter -> Patient Age:[35 - 65]&Patient Gender:F: 100%|██████████| 661/661 [00:00<00:00, 40254.31 examples/s]
-Filter -> Patient Age:[65 - 100]&Patient Gender:M: 100%|██████████| 661/661 [00:00<00:00, 44062.86 examples/s]
-Filter -> Patient Age:[65 - 100]&Patient Gender:F: 100%|██████████| 661/661 [00:00<00:00, 46133.44 examples/s]
-Filter -> overall: 100%|██████████| 661/661 [00:00<00:00, 46033.09 examples/s]
+Filter -> Patient Age:[19 - 35]: 100%|██████████| 661/661 [00:00<00:00, 46425.45 examples/s]
+Filter -> Patient Age:[35 - 65]: 100%|██████████| 661/661 [00:00<00:00, 48688.75 examples/s]
+Filter -> Patient Age:[65 - 100]: 100%|██████████| 661/661 [00:00<00:00, 45820.83 examples/s]
+Filter -> Patient Age:[19 - 35]&Patient Gender:M: 100%|██████████| 661/661 [00:00<00:00, 45602.26 examples/s]
+Filter -> Patient Age:[19 - 35]&Patient Gender:F: 100%|██████████| 661/661 [00:00<00:00, 48722.98 examples/s]
+Filter -> Patient Age:[35 - 65]&Patient Gender:M: 100%|██████████| 661/661 [00:00<00:00, 44049.56 examples/s]
+Filter -> Patient Age:[35 - 65]&Patient Gender:F: 100%|██████████| 661/661 [00:00<00:00, 44852.70 examples/s]
+Filter -> Patient Age:[65 - 100]&Patient Gender:M: 100%|██████████| 661/661 [00:00<00:00, 44538.54 examples/s]
+Filter -> Patient Age:[65 - 100]&Patient Gender:F: 100%|██████████| 661/661 [00:00<00:00, 44315.00 examples/s]
+Filter -> overall: 100%|██████████| 661/661 [00:00<00:00, 44226.63 examples/s]
 

-
+
@@ -6615,7 +6615,7 @@

Graphics

-
+
@@ -6623,7 +6623,7 @@

Graphics

-
+
@@ -8210,6 +8210,9 @@

Quantitative Analysis

+ + + diff --git a/api/tutorials/synthea/length_of_stay_report_periodic.html b/api/tutorials/synthea/length_of_stay_report_periodic.html index 66d0372a8..4ce0c4aa0 100644 --- a/api/tutorials/synthea/length_of_stay_report_periodic.html +++ b/api/tutorials/synthea/length_of_stay_report_periodic.html @@ -647,7 +647,7 @@

A quick glance of your most import
- 0.75 + 0.79 @@ -680,7 +680,7 @@

A quick glance of your most import
- 0.73 + 1.0 @@ -713,7 +713,7 @@

A quick glance of your most import
- 0.89 + 1.0 @@ -746,7 +746,7 @@

A quick glance of your most import
- 0.76 + 0.99 @@ -779,7 +779,7 @@

A quick glance of your most import
- 0.99 + 0.93 @@ -1044,7 +1044,7 @@

Graphics

-
+
@@ -1052,7 +1052,7 @@

Graphics

-
+
@@ -1060,7 +1060,7 @@

Graphics

-
+
@@ -1068,7 +1068,7 @@

Graphics

-
+
@@ -1076,7 +1076,7 @@

Graphics

-
+
@@ -1157,7 +1157,7 @@

Quantitative Analysis

- 0.75 + 0.79 @@ -1190,7 +1190,7 @@

Quantitative Analysis

- 0.73 + 1.0 @@ -1223,7 +1223,7 @@

Quantitative Analysis

- 0.89 + 1.0 @@ -1256,7 +1256,7 @@

Quantitative Analysis

- 0.76 + 0.99 @@ -1289,7 +1289,7 @@

Quantitative Analysis

- 0.99 + 0.93 @@ -1307,6 +1307,9 @@

Quantitative Analysis

+ + +
@@ -1347,7 +1350,7 @@

Graphics

-
+
@@ -1355,7 +1358,7 @@

Graphics

-
+
@@ -1410,7 +1413,7 @@

Version

- Date: 2023-11-23 + Date: 2023-11-24
@@ -1628,26 +1631,22 @@

Model Parameters

-

Objective

- binary:logistic +

Colsample_bytree

+ 1
-
-

Seed

- 123 -
-

Colsample_bytree

- 0.7 +

Eval_metric

+ logloss
@@ -1674,6 +1673,10 @@

Colsample_bytree

+
+

Learning_rate

+ 0.1 +
@@ -1689,15 +1692,15 @@

Colsample_bytree

-
-

Min_child_weight

- 3 -
+
+

Objective

+ binary:logistic +
@@ -1723,10 +1726,6 @@

Min_child_weight

-
-

Missing

- nan -
@@ -1742,6 +1741,10 @@

Missing

+
+

Enable_categorical

+ False +
@@ -1752,10 +1755,6 @@

Missing

-
-

Random_state

- 123 -
@@ -1766,32 +1765,28 @@

Random_state

-
-

Reg_lambda

- 1 -
+
+

Gamma

+ 2 +
-
-

Learning_rate

- 0.1 -
-

Eval_metric

- logloss +

N_estimators

+ 500
@@ -1799,8 +1794,8 @@

Eval_metric

-

Enable_categorical

- False +

Missing

+ nan
@@ -1812,21 +1807,37 @@

Enable_categorical

+
+

Max_depth

+ 2 +
+
+

Reg_lambda

+ 0 +
+
+

Random_state

+ 123 +
+
+

Seed

+ 123 +
@@ -1842,33 +1853,25 @@

Enable_categorical

+
+

Min_child_weight

+ 3 +
-
-

Max_depth

- 5 -
-
-

N_estimators

- 100 -
-
-

Gamma

- 1 -
@@ -2149,7 +2152,7 @@

Ethical Considerations

function generate_model_card_plot() { var model_card_plots = [] var overall_indices = [20, 21, 22, 23, 24] - var histories = JSON.parse("{\"0\": [\"0.8823529411764706\", \"0.9047459027620671\", \"0.916305532289785\", \"0.9744122224824191\", \"0.7099534380591017\"], \"1\": [\"0.9090909090909091\", \"0.9578826853548222\", \"0.917374373709721\", \"0.9935463578246547\", \"0.8601500527924701\"], \"2\": [\"0.8823529411764706\", \"0.849704784323048\", \"0.9069849579184136\", \"0.9430290974291198\", \"0.8747524428595284\"], \"3\": [\"0.8955223880597015\", \"0.8734495355215972\", \"0.8407668445158849\", \"0.9256490683644405\", \"0.8216610485442066\"], \"4\": [\"0.9622260668973472\", \"0.8186739139024191\", \"0.8124847960494955\", \"0.9064256281141911\", \"0.833413199011447\"], \"5\": [\"0.8571428571428571\", \"0.5819201870139827\", \"0.9130841782663768\", \"0.8841536976452296\", \"0.7985708804530586\"], \"6\": [\"0.9090909090909091\", \"0.8671151748438145\", \"0.9487979641579005\", \"0.9803598302713871\", \"0.8803234648791339\"], \"7\": [\"0.8\", \"0.8143811156649716\", \"0.815614403139397\", \"0.771192489887751\", \"0.9571144943417136\"], \"8\": [\"0.851063829787234\", \"0.92127216573453\", \"0.7184008545433266\", \"0.8766415524925694\", \"0.758252155680523\"], \"9\": [\"0.96\", \"0.9911055456871667\", \"0.9080444777732023\", \"0.8164564307743034\", \"0.9236907602104834\"], \"10\": [\"0.9032258064516129\", \"0.89246084600083\", \"1.0\", \"0.900458486250579\", \"0.940962004062729\"], \"11\": [\"0.9375\", \"0.9761126475691007\", \"0.7820641878550596\", \"0.787032935786996\", \"0.7148288213945461\"], \"12\": [\"0.9146341463414634\", \"0.8902223738196369\", \"0.9281285384261461\", \"0.8533661618221544\", \"0.7343936243028254\"], \"13\": [\"0.9259259259259259\", \"0.9886559698482303\", \"0.9207212879568217\", \"0.8085778091382767\", \"0.8951957117061097\"], \"14\": [\"0.9670441347270615\", \"1.0\", \"0.991838934499501\", \"0.9908136397161763\", \"0.8310871264631631\"], \"15\": [\"0.9117647058823529\", \"0.8790126246355432\", \"0.9092082611628853\", \"0.8460654049212386\", \"0.9496091296957796\"], \"16\": [\"0.95\", \"0.9232635939052443\", \"0.9425100078531611\", \"0.9277021061192503\", \"1.0\"], \"17\": [\"0.9047619047619048\", \"0.9027908731566985\", \"1.0\", \"0.8875348246503013\", \"0.8069385919384355\"], \"18\": [\"0.926829268292683\", \"0.9522266490735485\", \"0.9018104132942503\", \"0.7915252539097856\", \"0.9359074480535754\"], \"19\": [\"0.981074481074481\", \"1.0\", \"0.7819585586196038\", \"1.0\", \"0.8789063987631572\"], \"20\": [\"0.9070796460176991\", \"0.8997174316885451\", \"0.9292880188957555\", \"0.7636603313250567\", \"0.7457429916634252\"], \"21\": [\"0.9428571428571428\", \"1.0\", \"1.0\", \"0.8947250627918201\", \"0.733492840646206\"], \"22\": [\"0.9103448275862069\", \"0.7232864022605469\", \"0.8044994643551593\", \"0.9692929367096494\", \"0.8899407878997421\"], \"23\": [\"0.9263157894736842\", \"0.8347500429991865\", \"0.986411266387445\", \"0.9711075162543921\", \"0.764271736289223\"], \"24\": [\"0.9721583652618137\", \"1.0\", \"1.0\", \"0.9226879759060611\", \"0.9900931412061483\"]}"); + var histories = JSON.parse("{\"0\": [\"0.8407079646017699\", \"0.90643061238161\", \"0.832538414243798\", \"1.0\", \"0.7903377238829272\"], \"1\": [\"1.0\", \"0.998798894332237\", \"0.8049446014157483\", \"0.9442388518379021\", \"1.0\"], \"2\": [\"0.7391304347826086\", \"0.5555228850199307\", \"0.8628022522718521\", \"0.6852707406087278\", \"0.5911338791069285\"], \"3\": [\"0.85\", \"0.8131678365712649\", \"0.8371538920381149\", \"0.7292041942131848\", \"0.9276223876257275\"], \"4\": [\"0.9632740447957839\", \"1.0\", \"0.8740769658302125\", \"1.0\", \"1.0\"], \"5\": [\"0.7962962962962963\", \"0.9709600245667258\", \"0.9540250492115908\", \"0.9257146674107212\", \"0.7500485707771797\"], \"6\": [\"0.85\", \"0.9519549119718769\", \"0.8116268947042299\", \"0.8263715452846059\", \"0.7685932252575909\"], \"7\": [\"0.68\", \"0.9361178100833059\", \"0.7417276185558737\", \"0.6278658347131162\", \"0.8093914275322115\"], \"8\": [\"0.7555555555555555\", \"0.8733797829085564\", \"0.9139777724427962\", \"0.7274359219329875\", \"0.816763287022757\"], \"9\": [\"0.9006896551724138\", \"0.8270078496339749\", \"1.0\", \"0.9766227712699306\", \"0.8525986727361025\"], \"10\": [\"0.8455284552845529\", \"0.6938732202384621\", \"1.0\", \"0.9229630849776538\", \"0.9578601703160796\"], \"11\": [\"1.0\", \"0.9341400304893195\", \"0.9745721659711388\", \"1.0\", \"1.0\"], \"12\": [\"0.7738095238095238\", \"0.6663789680469527\", \"0.7159299436442419\", \"0.8001685572531141\", \"0.8326055839996588\"], \"13\": [\"0.87248322147651\", \"0.8813537104577479\", \"0.9012245322673739\", \"1.0\", \"0.7822916793780839\"], \"14\": [\"0.9490231990231991\", \"0.9782604481330335\", \"0.9029707492428839\", \"0.8616772330685437\", \"0.8431521928923481\"], \"15\": [\"0.8640776699029126\", \"0.6486536852663003\", \"0.9681695036372805\", \"1.0\", \"0.846995183504722\"], \"16\": [\"0.9272727272727272\", \"0.9172841435537059\", \"0.9445102491870424\", \"0.8927320622600079\", \"0.9288038891432359\"], \"17\": [\"0.8360655737704918\", \"0.8824035993958579\", \"0.8784029349996647\", \"0.8890907385219458\", \"1.0\"], \"18\": [\"0.8793103448275862\", \"0.7065211059090846\", \"0.9055079225441419\", \"0.9091827169398103\", \"1.0\"], \"19\": [\"0.9644808743169399\", \"0.8668884259518921\", \"1.0\", \"0.8331697890399169\", \"1.0\"], \"20\": [\"0.8539823008849557\", \"1.0\", \"0.8209700904304302\", \"0.8244875386670434\", \"0.7860923361290615\"], \"21\": [\"0.9666666666666667\", \"1.0\", \"0.9306278916430111\", \"1.0\", \"1.0\"], \"22\": [\"0.8\", \"0.9336344082039157\", \"0.6839647635975962\", \"0.8435301342641975\", \"1.0\"], \"23\": [\"0.8754716981132076\", \"0.8952672498140729\", \"0.8181157462099988\", \"1.0\", \"0.9898128443728897\"], \"24\": [\"0.95436355896126\", \"1.0\", \"1.0\", \"0.9797659960250391\", \"0.9297513701430263\"]}"); var thresholds = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\", \"16\": \"0.7\", \"17\": \"0.7\", \"18\": \"0.7\", \"19\": \"0.7\", \"20\": \"0.7\", \"21\": \"0.7\", \"22\": \"0.7\", \"23\": \"0.7\", \"24\": \"0.7\"}"); var timestamps = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"16\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"17\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"18\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"19\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"20\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"21\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"22\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"23\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"24\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"]}"); @@ -2430,10 +2433,10 @@

Ethical Considerations

} } var slices_all = JSON.parse("{\"0\": [\"metric:Accuracy\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"1\": [\"metric:Precision\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"2\": [\"metric:Recall\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"3\": [\"metric:F1 Score\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"4\": [\"metric:AUROC\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"5\": [\"metric:Accuracy\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"6\": [\"metric:Precision\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"7\": [\"metric:Recall\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"8\": [\"metric:F1 Score\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"9\": [\"metric:AUROC\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"10\": [\"metric:Accuracy\", \"gender:M\", \"age:overall_age\"], \"11\": [\"metric:Precision\", \"gender:M\", \"age:overall_age\"], \"12\": [\"metric:Recall\", \"gender:M\", \"age:overall_age\"], \"13\": [\"metric:F1 Score\", \"gender:M\", \"age:overall_age\"], \"14\": [\"metric:AUROC\", \"gender:M\", \"age:overall_age\"], \"15\": [\"metric:Accuracy\", \"gender:F\", \"age:overall_age\"], \"16\": [\"metric:Precision\", \"gender:F\", \"age:overall_age\"], \"17\": [\"metric:Recall\", \"gender:F\", \"age:overall_age\"], \"18\": [\"metric:F1 Score\", \"gender:F\", \"age:overall_age\"], \"19\": [\"metric:AUROC\", \"gender:F\", \"age:overall_age\"], \"20\": [\"metric:Accuracy\", \"age:overall_age\", \"gender:overall_gender\"], \"21\": [\"metric:Precision\", \"age:overall_age\", \"gender:overall_gender\"], \"22\": [\"metric:Recall\", \"age:overall_age\", \"gender:overall_gender\"], \"23\": [\"metric:F1 Score\", \"age:overall_age\", \"gender:overall_gender\"], \"24\": [\"metric:AUROC\", \"age:overall_age\", \"gender:overall_gender\"]}"); - var histories_all = JSON.parse("{\"0\": [\"0.8823529411764706\", \"0.9047459027620671\", \"0.916305532289785\", \"0.9744122224824191\", \"0.7099534380591017\"], \"1\": [\"0.9090909090909091\", \"0.9578826853548222\", \"0.917374373709721\", \"0.9935463578246547\", \"0.8601500527924701\"], \"2\": [\"0.8823529411764706\", \"0.849704784323048\", \"0.9069849579184136\", \"0.9430290974291198\", \"0.8747524428595284\"], \"3\": [\"0.8955223880597015\", \"0.8734495355215972\", \"0.8407668445158849\", \"0.9256490683644405\", \"0.8216610485442066\"], \"4\": [\"0.9622260668973472\", \"0.8186739139024191\", \"0.8124847960494955\", \"0.9064256281141911\", \"0.833413199011447\"], \"5\": [\"0.8571428571428571\", \"0.5819201870139827\", \"0.9130841782663768\", \"0.8841536976452296\", \"0.7985708804530586\"], \"6\": [\"0.9090909090909091\", \"0.8671151748438145\", \"0.9487979641579005\", \"0.9803598302713871\", \"0.8803234648791339\"], \"7\": [\"0.8\", \"0.8143811156649716\", \"0.815614403139397\", \"0.771192489887751\", \"0.9571144943417136\"], \"8\": [\"0.851063829787234\", \"0.92127216573453\", \"0.7184008545433266\", \"0.8766415524925694\", \"0.758252155680523\"], \"9\": [\"0.96\", \"0.9911055456871667\", \"0.9080444777732023\", \"0.8164564307743034\", \"0.9236907602104834\"], \"10\": [\"0.9032258064516129\", \"0.89246084600083\", \"1.0\", \"0.900458486250579\", \"0.940962004062729\"], \"11\": [\"0.9375\", \"0.9761126475691007\", \"0.7820641878550596\", \"0.787032935786996\", \"0.7148288213945461\"], \"12\": [\"0.9146341463414634\", \"0.8902223738196369\", \"0.9281285384261461\", \"0.8533661618221544\", \"0.7343936243028254\"], \"13\": [\"0.9259259259259259\", \"0.9886559698482303\", \"0.9207212879568217\", \"0.8085778091382767\", \"0.8951957117061097\"], \"14\": [\"0.9670441347270615\", \"1.0\", \"0.991838934499501\", \"0.9908136397161763\", \"0.8310871264631631\"], \"15\": [\"0.9117647058823529\", \"0.8790126246355432\", \"0.9092082611628853\", \"0.8460654049212386\", \"0.9496091296957796\"], \"16\": [\"0.95\", \"0.9232635939052443\", \"0.9425100078531611\", \"0.9277021061192503\", \"1.0\"], \"17\": [\"0.9047619047619048\", \"0.9027908731566985\", \"1.0\", \"0.8875348246503013\", \"0.8069385919384355\"], \"18\": [\"0.926829268292683\", \"0.9522266490735485\", \"0.9018104132942503\", \"0.7915252539097856\", \"0.9359074480535754\"], \"19\": [\"0.981074481074481\", \"1.0\", \"0.7819585586196038\", \"1.0\", \"0.8789063987631572\"], \"20\": [\"0.9070796460176991\", \"0.8997174316885451\", \"0.9292880188957555\", \"0.7636603313250567\", \"0.7457429916634252\"], \"21\": [\"0.9428571428571428\", \"1.0\", \"1.0\", \"0.8947250627918201\", \"0.733492840646206\"], \"22\": [\"0.9103448275862069\", \"0.7232864022605469\", \"0.8044994643551593\", \"0.9692929367096494\", \"0.8899407878997421\"], \"23\": [\"0.9263157894736842\", \"0.8347500429991865\", \"0.986411266387445\", \"0.9711075162543921\", \"0.764271736289223\"], \"24\": [\"0.9721583652618137\", \"1.0\", \"1.0\", \"0.9226879759060611\", \"0.9900931412061483\"]}"); + var histories_all = JSON.parse("{\"0\": [\"0.8407079646017699\", \"0.90643061238161\", \"0.832538414243798\", \"1.0\", \"0.7903377238829272\"], \"1\": [\"1.0\", \"0.998798894332237\", \"0.8049446014157483\", \"0.9442388518379021\", \"1.0\"], \"2\": [\"0.7391304347826086\", \"0.5555228850199307\", \"0.8628022522718521\", \"0.6852707406087278\", \"0.5911338791069285\"], \"3\": [\"0.85\", \"0.8131678365712649\", \"0.8371538920381149\", \"0.7292041942131848\", \"0.9276223876257275\"], \"4\": [\"0.9632740447957839\", \"1.0\", \"0.8740769658302125\", \"1.0\", \"1.0\"], \"5\": [\"0.7962962962962963\", \"0.9709600245667258\", \"0.9540250492115908\", \"0.9257146674107212\", \"0.7500485707771797\"], \"6\": [\"0.85\", \"0.9519549119718769\", \"0.8116268947042299\", \"0.8263715452846059\", \"0.7685932252575909\"], \"7\": [\"0.68\", \"0.9361178100833059\", \"0.7417276185558737\", \"0.6278658347131162\", \"0.8093914275322115\"], \"8\": [\"0.7555555555555555\", \"0.8733797829085564\", \"0.9139777724427962\", \"0.7274359219329875\", \"0.816763287022757\"], \"9\": [\"0.9006896551724138\", \"0.8270078496339749\", \"1.0\", \"0.9766227712699306\", \"0.8525986727361025\"], \"10\": [\"0.8455284552845529\", \"0.6938732202384621\", \"1.0\", \"0.9229630849776538\", \"0.9578601703160796\"], \"11\": [\"1.0\", \"0.9341400304893195\", \"0.9745721659711388\", \"1.0\", \"1.0\"], \"12\": [\"0.7738095238095238\", \"0.6663789680469527\", \"0.7159299436442419\", \"0.8001685572531141\", \"0.8326055839996588\"], \"13\": [\"0.87248322147651\", \"0.8813537104577479\", \"0.9012245322673739\", \"1.0\", \"0.7822916793780839\"], \"14\": [\"0.9490231990231991\", \"0.9782604481330335\", \"0.9029707492428839\", \"0.8616772330685437\", \"0.8431521928923481\"], \"15\": [\"0.8640776699029126\", \"0.6486536852663003\", \"0.9681695036372805\", \"1.0\", \"0.846995183504722\"], \"16\": [\"0.9272727272727272\", \"0.9172841435537059\", \"0.9445102491870424\", \"0.8927320622600079\", \"0.9288038891432359\"], \"17\": [\"0.8360655737704918\", \"0.8824035993958579\", \"0.8784029349996647\", \"0.8890907385219458\", \"1.0\"], \"18\": [\"0.8793103448275862\", \"0.7065211059090846\", \"0.9055079225441419\", \"0.9091827169398103\", \"1.0\"], \"19\": [\"0.9644808743169399\", \"0.8668884259518921\", \"1.0\", \"0.8331697890399169\", \"1.0\"], \"20\": [\"0.8539823008849557\", \"1.0\", \"0.8209700904304302\", \"0.8244875386670434\", \"0.7860923361290615\"], \"21\": [\"0.9666666666666667\", \"1.0\", \"0.9306278916430111\", \"1.0\", \"1.0\"], \"22\": [\"0.8\", \"0.9336344082039157\", \"0.6839647635975962\", \"0.8435301342641975\", \"1.0\"], \"23\": [\"0.8754716981132076\", \"0.8952672498140729\", \"0.8181157462099988\", \"1.0\", \"0.9898128443728897\"], \"24\": [\"0.95436355896126\", \"1.0\", \"1.0\", \"0.9797659960250391\", \"0.9297513701430263\"]}"); var thresholds_all = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\", \"16\": \"0.7\", \"17\": \"0.7\", \"18\": \"0.7\", \"19\": \"0.7\", \"20\": \"0.7\", \"21\": \"0.7\", \"22\": \"0.7\", \"23\": \"0.7\", \"24\": \"0.7\"}"); - var trends_all = JSON.parse("{\"0\": \"negative\", \"1\": \"neutral\", \"2\": \"neutral\", \"3\": \"neutral\", \"4\": \"negative\", \"5\": \"positive\", \"6\": \"neutral\", \"7\": \"positive\", \"8\": \"negative\", \"9\": \"negative\", \"10\": \"neutral\", \"11\": \"negative\", \"12\": \"negative\", \"13\": \"negative\", \"14\": \"negative\", \"15\": \"neutral\", \"16\": \"positive\", \"17\": \"negative\", \"18\": \"negative\", \"19\": \"negative\", \"20\": \"negative\", \"21\": \"negative\", \"22\": \"positive\", \"23\": \"negative\", \"24\": \"neutral\"}"); - var passed_all = JSON.parse("{\"0\": true, \"1\": true, \"2\": true, \"3\": true, \"4\": true, \"5\": true, \"6\": true, \"7\": true, \"8\": true, \"9\": true, \"10\": true, \"11\": true, \"12\": true, \"13\": true, \"14\": true, \"15\": true, \"16\": true, \"17\": true, \"18\": true, \"19\": true, \"20\": true, \"21\": true, \"22\": true, \"23\": true, \"24\": true}"); + var trends_all = JSON.parse("{\"0\": \"neutral\", \"1\": \"neutral\", \"2\": \"negative\", \"3\": \"neutral\", \"4\": \"neutral\", \"5\": \"negative\", \"6\": \"negative\", \"7\": \"neutral\", \"8\": \"neutral\", \"9\": \"neutral\", \"10\": \"positive\", \"11\": \"neutral\", \"12\": \"positive\", \"13\": \"neutral\", \"14\": \"negative\", \"15\": \"positive\", \"16\": \"neutral\", \"17\": \"positive\", \"18\": \"positive\", \"19\": \"neutral\", \"20\": \"negative\", \"21\": \"neutral\", \"22\": \"positive\", \"23\": \"positive\", \"24\": \"neutral\"}"); + var passed_all = JSON.parse("{\"0\": true, \"1\": true, \"2\": false, \"3\": true, \"4\": true, \"5\": true, \"6\": true, \"7\": true, \"8\": true, \"9\": true, \"10\": true, \"11\": true, \"12\": true, \"13\": true, \"14\": true, \"15\": true, \"16\": true, \"17\": true, \"18\": true, \"19\": true, \"20\": true, \"21\": true, \"22\": true, \"23\": true, \"24\": true}"); var names_all = JSON.parse("{\"0\": \"Accuracy\", \"1\": \"Precision\", \"2\": \"Recall\", \"3\": \"F1 Score\", \"4\": \"AUROC\", \"5\": \"Accuracy\", \"6\": \"Precision\", \"7\": \"Recall\", \"8\": \"F1 Score\", \"9\": \"AUROC\", \"10\": \"Accuracy\", \"11\": \"Precision\", \"12\": \"Recall\", \"13\": \"F1 Score\", \"14\": \"AUROC\", \"15\": \"Accuracy\", \"16\": \"Precision\", \"17\": \"Recall\", \"18\": \"F1 Score\", \"19\": \"AUROC\", \"20\": \"Accuracy\", \"21\": \"Precision\", \"22\": \"Recall\", \"23\": \"F1 Score\", \"24\": \"AUROC\"}"); var timestamps_all = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"16\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"17\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"18\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"19\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"20\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"21\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"22\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"23\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"24\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"]}"); @@ -2706,10 +2709,10 @@

Ethical Considerations

} } var slices_all = JSON.parse("{\"0\": [\"metric:Accuracy\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"1\": [\"metric:Precision\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"2\": [\"metric:Recall\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"3\": [\"metric:F1 Score\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"4\": [\"metric:AUROC\", \"age:[20 - 50)\", \"gender:overall_gender\"], \"5\": [\"metric:Accuracy\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"6\": [\"metric:Precision\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"7\": [\"metric:Recall\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"8\": [\"metric:F1 Score\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"9\": [\"metric:AUROC\", \"age:[50 - 80)\", \"gender:overall_gender\"], \"10\": [\"metric:Accuracy\", \"gender:M\", \"age:overall_age\"], \"11\": [\"metric:Precision\", \"gender:M\", \"age:overall_age\"], \"12\": [\"metric:Recall\", \"gender:M\", \"age:overall_age\"], \"13\": [\"metric:F1 Score\", \"gender:M\", \"age:overall_age\"], \"14\": [\"metric:AUROC\", \"gender:M\", \"age:overall_age\"], \"15\": [\"metric:Accuracy\", \"gender:F\", \"age:overall_age\"], \"16\": [\"metric:Precision\", \"gender:F\", \"age:overall_age\"], \"17\": [\"metric:Recall\", \"gender:F\", \"age:overall_age\"], \"18\": [\"metric:F1 Score\", \"gender:F\", \"age:overall_age\"], \"19\": [\"metric:AUROC\", \"gender:F\", \"age:overall_age\"], \"20\": [\"metric:Accuracy\", \"age:overall_age\", \"gender:overall_gender\"], \"21\": [\"metric:Precision\", \"age:overall_age\", \"gender:overall_gender\"], \"22\": [\"metric:Recall\", \"age:overall_age\", \"gender:overall_gender\"], \"23\": [\"metric:F1 Score\", \"age:overall_age\", \"gender:overall_gender\"], \"24\": [\"metric:AUROC\", \"age:overall_age\", \"gender:overall_gender\"]}"); - var histories_all = JSON.parse("{\"0\": [\"0.8823529411764706\", \"0.9047459027620671\", \"0.916305532289785\", \"0.9744122224824191\", \"0.7099534380591017\"], \"1\": [\"0.9090909090909091\", \"0.9578826853548222\", \"0.917374373709721\", \"0.9935463578246547\", \"0.8601500527924701\"], \"2\": [\"0.8823529411764706\", \"0.849704784323048\", \"0.9069849579184136\", \"0.9430290974291198\", \"0.8747524428595284\"], \"3\": [\"0.8955223880597015\", \"0.8734495355215972\", \"0.8407668445158849\", \"0.9256490683644405\", \"0.8216610485442066\"], \"4\": [\"0.9622260668973472\", \"0.8186739139024191\", \"0.8124847960494955\", \"0.9064256281141911\", \"0.833413199011447\"], \"5\": [\"0.8571428571428571\", \"0.5819201870139827\", \"0.9130841782663768\", \"0.8841536976452296\", \"0.7985708804530586\"], \"6\": [\"0.9090909090909091\", \"0.8671151748438145\", \"0.9487979641579005\", \"0.9803598302713871\", \"0.8803234648791339\"], \"7\": [\"0.8\", \"0.8143811156649716\", \"0.815614403139397\", \"0.771192489887751\", \"0.9571144943417136\"], \"8\": [\"0.851063829787234\", \"0.92127216573453\", \"0.7184008545433266\", \"0.8766415524925694\", \"0.758252155680523\"], \"9\": [\"0.96\", \"0.9911055456871667\", \"0.9080444777732023\", \"0.8164564307743034\", \"0.9236907602104834\"], \"10\": [\"0.9032258064516129\", \"0.89246084600083\", \"1.0\", \"0.900458486250579\", \"0.940962004062729\"], \"11\": [\"0.9375\", \"0.9761126475691007\", \"0.7820641878550596\", \"0.787032935786996\", \"0.7148288213945461\"], \"12\": [\"0.9146341463414634\", \"0.8902223738196369\", \"0.9281285384261461\", \"0.8533661618221544\", \"0.7343936243028254\"], \"13\": [\"0.9259259259259259\", \"0.9886559698482303\", \"0.9207212879568217\", \"0.8085778091382767\", \"0.8951957117061097\"], \"14\": [\"0.9670441347270615\", \"1.0\", \"0.991838934499501\", \"0.9908136397161763\", \"0.8310871264631631\"], \"15\": [\"0.9117647058823529\", \"0.8790126246355432\", \"0.9092082611628853\", \"0.8460654049212386\", \"0.9496091296957796\"], \"16\": [\"0.95\", \"0.9232635939052443\", \"0.9425100078531611\", \"0.9277021061192503\", \"1.0\"], \"17\": [\"0.9047619047619048\", \"0.9027908731566985\", \"1.0\", \"0.8875348246503013\", \"0.8069385919384355\"], \"18\": [\"0.926829268292683\", \"0.9522266490735485\", \"0.9018104132942503\", \"0.7915252539097856\", \"0.9359074480535754\"], \"19\": [\"0.981074481074481\", \"1.0\", \"0.7819585586196038\", \"1.0\", \"0.8789063987631572\"], \"20\": [\"0.9070796460176991\", \"0.8997174316885451\", \"0.9292880188957555\", \"0.7636603313250567\", \"0.7457429916634252\"], \"21\": [\"0.9428571428571428\", \"1.0\", \"1.0\", \"0.8947250627918201\", \"0.733492840646206\"], \"22\": [\"0.9103448275862069\", \"0.7232864022605469\", \"0.8044994643551593\", \"0.9692929367096494\", \"0.8899407878997421\"], \"23\": [\"0.9263157894736842\", \"0.8347500429991865\", \"0.986411266387445\", \"0.9711075162543921\", \"0.764271736289223\"], \"24\": [\"0.9721583652618137\", \"1.0\", \"1.0\", \"0.9226879759060611\", \"0.9900931412061483\"]}"); + var histories_all = JSON.parse("{\"0\": [\"0.8407079646017699\", \"0.90643061238161\", \"0.832538414243798\", \"1.0\", \"0.7903377238829272\"], \"1\": [\"1.0\", \"0.998798894332237\", \"0.8049446014157483\", \"0.9442388518379021\", \"1.0\"], \"2\": [\"0.7391304347826086\", \"0.5555228850199307\", \"0.8628022522718521\", \"0.6852707406087278\", \"0.5911338791069285\"], \"3\": [\"0.85\", \"0.8131678365712649\", \"0.8371538920381149\", \"0.7292041942131848\", \"0.9276223876257275\"], \"4\": [\"0.9632740447957839\", \"1.0\", \"0.8740769658302125\", \"1.0\", \"1.0\"], \"5\": [\"0.7962962962962963\", \"0.9709600245667258\", \"0.9540250492115908\", \"0.9257146674107212\", \"0.7500485707771797\"], \"6\": [\"0.85\", \"0.9519549119718769\", \"0.8116268947042299\", \"0.8263715452846059\", \"0.7685932252575909\"], \"7\": [\"0.68\", \"0.9361178100833059\", \"0.7417276185558737\", \"0.6278658347131162\", \"0.8093914275322115\"], \"8\": [\"0.7555555555555555\", \"0.8733797829085564\", \"0.9139777724427962\", \"0.7274359219329875\", \"0.816763287022757\"], \"9\": [\"0.9006896551724138\", \"0.8270078496339749\", \"1.0\", \"0.9766227712699306\", \"0.8525986727361025\"], \"10\": [\"0.8455284552845529\", \"0.6938732202384621\", \"1.0\", \"0.9229630849776538\", \"0.9578601703160796\"], \"11\": [\"1.0\", \"0.9341400304893195\", \"0.9745721659711388\", \"1.0\", \"1.0\"], \"12\": [\"0.7738095238095238\", \"0.6663789680469527\", \"0.7159299436442419\", \"0.8001685572531141\", \"0.8326055839996588\"], \"13\": [\"0.87248322147651\", \"0.8813537104577479\", \"0.9012245322673739\", \"1.0\", \"0.7822916793780839\"], \"14\": [\"0.9490231990231991\", \"0.9782604481330335\", \"0.9029707492428839\", \"0.8616772330685437\", \"0.8431521928923481\"], \"15\": [\"0.8640776699029126\", \"0.6486536852663003\", \"0.9681695036372805\", \"1.0\", \"0.846995183504722\"], \"16\": [\"0.9272727272727272\", \"0.9172841435537059\", \"0.9445102491870424\", \"0.8927320622600079\", \"0.9288038891432359\"], \"17\": [\"0.8360655737704918\", \"0.8824035993958579\", \"0.8784029349996647\", \"0.8890907385219458\", \"1.0\"], \"18\": [\"0.8793103448275862\", \"0.7065211059090846\", \"0.9055079225441419\", \"0.9091827169398103\", \"1.0\"], \"19\": [\"0.9644808743169399\", \"0.8668884259518921\", \"1.0\", \"0.8331697890399169\", \"1.0\"], \"20\": [\"0.8539823008849557\", \"1.0\", \"0.8209700904304302\", \"0.8244875386670434\", \"0.7860923361290615\"], \"21\": [\"0.9666666666666667\", \"1.0\", \"0.9306278916430111\", \"1.0\", \"1.0\"], \"22\": [\"0.8\", \"0.9336344082039157\", \"0.6839647635975962\", \"0.8435301342641975\", \"1.0\"], \"23\": [\"0.8754716981132076\", \"0.8952672498140729\", \"0.8181157462099988\", \"1.0\", \"0.9898128443728897\"], \"24\": [\"0.95436355896126\", \"1.0\", \"1.0\", \"0.9797659960250391\", \"0.9297513701430263\"]}"); var thresholds_all = JSON.parse("{\"0\": \"0.7\", \"1\": \"0.7\", \"2\": \"0.7\", \"3\": \"0.7\", \"4\": \"0.7\", \"5\": \"0.7\", \"6\": \"0.7\", \"7\": \"0.7\", \"8\": \"0.7\", \"9\": \"0.7\", \"10\": \"0.7\", \"11\": \"0.7\", \"12\": \"0.7\", \"13\": \"0.7\", \"14\": \"0.7\", \"15\": \"0.7\", \"16\": \"0.7\", \"17\": \"0.7\", \"18\": \"0.7\", \"19\": \"0.7\", \"20\": \"0.7\", \"21\": \"0.7\", \"22\": \"0.7\", \"23\": \"0.7\", \"24\": \"0.7\"}"); - var trends_all = JSON.parse("{\"0\": \"negative\", \"1\": \"neutral\", \"2\": \"neutral\", \"3\": \"neutral\", \"4\": \"negative\", \"5\": \"positive\", \"6\": \"neutral\", \"7\": \"positive\", \"8\": \"negative\", \"9\": \"negative\", \"10\": \"neutral\", \"11\": \"negative\", \"12\": \"negative\", \"13\": \"negative\", \"14\": \"negative\", \"15\": \"neutral\", \"16\": \"positive\", \"17\": \"negative\", \"18\": \"negative\", \"19\": \"negative\", \"20\": \"negative\", \"21\": \"negative\", \"22\": \"positive\", \"23\": \"negative\", \"24\": \"neutral\"}"); - var passed_all = JSON.parse("{\"0\": true, \"1\": true, \"2\": true, \"3\": true, \"4\": true, \"5\": true, \"6\": true, \"7\": true, \"8\": true, \"9\": true, \"10\": true, \"11\": true, \"12\": true, \"13\": true, \"14\": true, \"15\": true, \"16\": true, \"17\": true, \"18\": true, \"19\": true, \"20\": true, \"21\": true, \"22\": true, \"23\": true, \"24\": true}"); + var trends_all = JSON.parse("{\"0\": \"neutral\", \"1\": \"neutral\", \"2\": \"negative\", \"3\": \"neutral\", \"4\": \"neutral\", \"5\": \"negative\", \"6\": \"negative\", \"7\": \"neutral\", \"8\": \"neutral\", \"9\": \"neutral\", \"10\": \"positive\", \"11\": \"neutral\", \"12\": \"positive\", \"13\": \"neutral\", \"14\": \"negative\", \"15\": \"positive\", \"16\": \"neutral\", \"17\": \"positive\", \"18\": \"positive\", \"19\": \"neutral\", \"20\": \"negative\", \"21\": \"neutral\", \"22\": \"positive\", \"23\": \"positive\", \"24\": \"neutral\"}"); + var passed_all = JSON.parse("{\"0\": true, \"1\": true, \"2\": false, \"3\": true, \"4\": true, \"5\": true, \"6\": true, \"7\": true, \"8\": true, \"9\": true, \"10\": true, \"11\": true, \"12\": true, \"13\": true, \"14\": true, \"15\": true, \"16\": true, \"17\": true, \"18\": true, \"19\": true, \"20\": true, \"21\": true, \"22\": true, \"23\": true, \"24\": true}"); var names_all = JSON.parse("{\"0\": \"Accuracy\", \"1\": \"Precision\", \"2\": \"Recall\", \"3\": \"F1 Score\", \"4\": \"AUROC\", \"5\": \"Accuracy\", \"6\": \"Precision\", \"7\": \"Recall\", \"8\": \"F1 Score\", \"9\": \"AUROC\", \"10\": \"Accuracy\", \"11\": \"Precision\", \"12\": \"Recall\", \"13\": \"F1 Score\", \"14\": \"AUROC\", \"15\": \"Accuracy\", \"16\": \"Precision\", \"17\": \"Recall\", \"18\": \"F1 Score\", \"19\": \"AUROC\", \"20\": \"Accuracy\", \"21\": \"Precision\", \"22\": \"Recall\", \"23\": \"F1 Score\", \"24\": \"AUROC\"}"); var timestamps_all = JSON.parse("{\"0\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"1\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"2\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"3\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"4\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"5\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"6\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"7\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"8\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"9\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"10\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"11\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"12\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"13\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"14\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"15\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"16\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"17\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"18\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"19\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"20\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"21\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"22\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"23\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"], \"24\": [\"2021-09-01\", \"2021-10-01\", \"2021-11-01\", \"2021-12-01\", \"2022-01-01\"]}"); diff --git a/api/tutorials/synthea/los_prediction.html b/api/tutorials/synthea/los_prediction.html index b5c33c507..abe4fecc0 100644 --- a/api/tutorials/synthea/los_prediction.html +++ b/api/tutorials/synthea/los_prediction.html @@ -490,7 +490,7 @@

Import Libraries
-/mnt/data/poetry/pycyclops-wIzUAwxh-py3.10/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
+/mnt/data/poetry/pycyclops-mhx6UJW0-py3.10/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
   from .autonotebook import tqdm as notebook_tqdm
 

@@ -685,17 +685,17 @@

Compute length of stay (labels)
-2023-11-23 08:34:13,665 INFO cycquery.orm    - Database setup, ready to run queries!
-2023-11-23 08:34:18,616 INFO cycquery.orm    - Query returned successfully!
-2023-11-23 08:34:18,617 INFO cycquery.utils.profile - Finished executing function run_query in 3.687719 s
-2023-11-23 08:34:20,410 INFO cycquery.orm    - Query returned successfully!
-2023-11-23 08:34:20,412 INFO cycquery.utils.profile - Finished executing function run_query in 1.793909 s
-2023-11-23 08:34:21,652 INFO cycquery.orm    - Query returned successfully!
-2023-11-23 08:34:21,653 INFO cycquery.utils.profile - Finished executing function run_query in 0.393491 s
-2023-11-23 08:34:22,156 INFO cycquery.orm    - Query returned successfully!
-2023-11-23 08:34:22,157 INFO cycquery.utils.profile - Finished executing function run_query in 0.499417 s
-2023-11-23 08:34:22,246 INFO cycquery.orm    - Query returned successfully!
-2023-11-23 08:34:22,248 INFO cycquery.utils.profile - Finished executing function run_query in 0.089593 s
+2023-11-24 11:22:21,628 INFO cycquery.orm    - Database setup, ready to run queries!
+2023-11-24 11:22:26,635 INFO cycquery.orm    - Query returned successfully!
+2023-11-24 11:22:26,636 INFO cycquery.utils.profile - Finished executing function run_query in 3.683744 s
+2023-11-24 11:22:28,424 INFO cycquery.orm    - Query returned successfully!
+2023-11-24 11:22:28,425 INFO cycquery.utils.profile - Finished executing function run_query in 1.788084 s
+2023-11-24 11:22:29,673 INFO cycquery.orm    - Query returned successfully!
+2023-11-24 11:22:29,675 INFO cycquery.utils.profile - Finished executing function run_query in 0.392405 s
+2023-11-24 11:22:30,177 INFO cycquery.orm    - Query returned successfully!
+2023-11-24 11:22:30,179 INFO cycquery.utils.profile - Finished executing function run_query in 0.499542 s
+2023-11-24 11:22:30,271 INFO cycquery.orm    - Query returned successfully!
+2023-11-24 11:22:30,272 INFO cycquery.utils.profile - Finished executing function run_query in 0.092379 s
 

@@ -748,9 +748,9 @@

Drop NaNs based on the

-
- + +
diff --git a/blog/cyclops-alpha-release/index.html b/blog/cyclops-alpha-release/index.html index b9b80cfad..a96a88116 100644 --- a/blog/cyclops-alpha-release/index.html +++ b/blog/cyclops-alpha-release/index.html @@ -5,8 +5,8 @@ CyclOps Alpha Release | CyclOps - - + +

CyclOps Alpha Release

· One min read
Amrit Krishnan

Developing machine learning (ML) systems for clinical use cases is difficult. Furthermore, evaluating ML models diff --git a/blog/index.html b/blog/index.html index c65d968be..d9409d6eb 100644 --- a/blog/index.html +++ b/blog/index.html @@ -5,8 +5,8 @@ Blog | CyclOps - - + +

· One min read
Amrit Krishnan

Developing machine learning (ML) systems for clinical use cases is difficult. Furthermore, evaluating ML models diff --git a/blog/tags/alpha/index.html b/blog/tags/alpha/index.html index 734449f87..19611f588 100644 --- a/blog/tags/alpha/index.html +++ b/blog/tags/alpha/index.html @@ -5,8 +5,8 @@ One post tagged with "alpha" | CyclOps - - + +

One post tagged with "alpha"

View All Tags

· One min read
Amrit Krishnan

Developing machine learning (ML) systems for clinical use cases is difficult. Furthermore, evaluating ML models diff --git a/blog/tags/index.html b/blog/tags/index.html index 1d3ecb26e..7c1f732e6 100644 --- a/blog/tags/index.html +++ b/blog/tags/index.html @@ -5,8 +5,8 @@ Tags | CyclOps - - + +

diff --git a/docs/intro/index.html b/docs/intro/index.html index 882502cb0..0858bed17 100644 --- a/docs/intro/index.html +++ b/docs/intro/index.html @@ -5,8 +5,8 @@ intro | CyclOps - - + +

intro

Getting Started

diff --git a/index.html b/index.html index fc871b86d..de8749247 100644 --- a/index.html +++ b/index.html @@ -5,8 +5,8 @@ CyclOps | CyclOps - - + +

CyclOps

Cyclical development towards Operationalizing ML models for healthcare

Rigorous Evaluation

CyclOps APIs support rigorous evaluation across patient sub-populations

Deployment and Operationalization

By leveraging powerful open source tools, CyclOps provides a modular and extensible MLOps platform for healthcare

Monitoring

CyclOps supports monitoring of clinical ML models for dataset shifts

diff --git a/markdown-page/index.html b/markdown-page/index.html index 51d826a6c..49cefc183 100644 --- a/markdown-page/index.html +++ b/markdown-page/index.html @@ -5,8 +5,8 @@ Markdown page example | CyclOps - - + +