Skip to content

Commit

Permalink
OWManifoldLearning: Add a new widget
Browse files Browse the repository at this point in the history
  • Loading branch information
VesnaT committed Oct 3, 2016
1 parent 84fb74f commit dfe359f
Show file tree
Hide file tree
Showing 4 changed files with 916 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Orange/projection/manifold.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def fit(self, X, init=None, Y=None):

class Isomap(SklProjector):
__wraps__ = skl_manifold.Isomap
name = 'isomap'
name = 'Isomap'

def __init__(self, n_neighbors=5, n_components=2, eigen_solver='auto',
tol=0, max_iter=None, path_method='auto',
Expand All @@ -55,7 +55,7 @@ def __init__(self, n_neighbors=5, n_components=2, eigen_solver='auto',

class LocallyLinearEmbedding(SklProjector):
__wraps__ = skl_manifold.LocallyLinearEmbedding
name = 'lle'
name = 'Locally Linear Embedding'

def __init__(self, n_neighbors=5, n_components=2, reg=0.001,
eigen_solver='auto', tol=1e-06, max_iter=100,
Expand Down
Loading

0 comments on commit dfe359f

Please sign in to comment.