Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentations for plot_learning_curve, plot_tsne_2d, and plot, add sklearn-surprise 1.1.1.1 whl file #496

Merged
merged 17 commits into from
Dec 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,12 @@ These methods generate sklearn models and evaluate them.

.. autofunction:: machine.learn.skl_utils.plot_confusion_matrix

.. autofunction:: machine.learn.skl_utils.plot_learning_curve

.. autofunction:: machine.learn.skl_utils.plot_pca_2d

.. autofunction:: machine.learn.skl_utils.plot_tsne_2d

.. autofunction:: machine.learn.skl_utils.plot_roc_curve

.. autofunction:: machine.learn.skl_utils.plot_imp_score
Expand Down

This file was deleted.

7 changes: 2 additions & 5 deletions lab/webapp/src/components/Results/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,14 @@ import AlgorithmDetails from './components/AlgorithmDetails';
import RunDetails from './components/RunDetails'
import MSEMAEDetails from './components/MSEMAEDetails';;
import ConfusionMatrix from './components/ConfusionMatrix';
import InteractiveConfusionMatrix from './components/ConfusionMatrix';
import ConfusionMatrixJSON from './components/ConfusionMatrixJSON';
import ROCCurve from './components/ROCCurve';
import ShapSummaryCurve from './components/ShapSummaryCurve';
import ImportanceScore from './components/ImportanceScore';
import ImportanceScoreJSON from './components/ImportanceScoreJSON';
import LearningCurve from './components/LearningCurve';
import LearningCurveJSON from './components/LearningCurveJSON';
import TestChart from './components/TestChart';
import ConfusionMatrixJSON from './components/ConfusionMatrixJSON';
import PCA from './components/PCA';
import PCAJSON from './components/PCAJSON';
import TSNE from './components/TSNE';
Expand Down Expand Up @@ -382,9 +381,7 @@ class Results extends Component {
chartColor="#55D6BE"
type="classification"
/>
{/* <InteractiveConfusionMatrix /> */}
<ConfusionMatrix file={confusionMatrix} />
{/* <ConfusionMatrixJSON /> */}
{/* <ConfusionMatrix file={confusionMatrix} /> */}
{/* This TestChart is for interactive and responsive confusion matrix */}
<ConfusionMatrixJSON scoreName="Confusion Matrix"
cnf_data={experiment.data.cnf_matrix}
Expand Down
Loading