Skip to content

Commit

Permalink
luma/visual/eval.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanLumerico committed May 23, 2024
1 parent b1ca4b6 commit a62e4cf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 3 additions & 3 deletions luma/__import__.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,14 @@
JointPlot,
MissingProportion,
)
from luma.visual.evaluation import (
from luma.visual.eval import (
DecisionRegion,
ClusterPlot,
ROCCurve,
PrecisionRecallCurve,
)
from luma.visual.evaluation import ConfusionMatrix, ResidualPlot, LearningCurve
from luma.visual.evaluation import ValidationCurve, InertiaPlot
from luma.visual.eval import ConfusionMatrix, ResidualPlot, LearningCurve
from luma.visual.eval import ValidationCurve, InertiaPlot

from luma.migrate.port import ModelPorter

Expand Down
10 changes: 9 additions & 1 deletion luma/reduction/linear.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@
)


__all__ = ("PCA", "LDA", "KDA", "CCA", "KernelPCA", "TruncatedSVD", "FactorAnalysis")
__all__ = (
"PCA",
"LDA",
"KDA",
"CCA",
"KernelPCA",
"TruncatedSVD",
"FactorAnalysis",
)


class PCA(Transformer, Unsupervised):
Expand Down
File renamed without changes.

0 comments on commit a62e4cf

Please sign in to comment.