Skip to content

Commit

Permalink
Merge pull request #496 from EpistasisLab/infvismlbackend
Browse files Browse the repository at this point in the history
Add documentations for plot_learning_curve, plot_tsne_2d, and plot, add sklearn-surprise 1.1.1.1 whl file
  • Loading branch information
HyunjunA authored Dec 22, 2022
2 parents 31b54c0 + c79a7e1 commit 15c85f2
Show file tree
Hide file tree
Showing 21 changed files with 2,059 additions and 497 deletions.
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

0 comments on commit 15c85f2

Please sign in to comment.