Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
fullung committed Jul 19, 2006
1 parent 88c3006 commit e7042e6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions Lib/sandbox/svm/classification.py
Expand Up @@ -86,8 +86,6 @@ class LibSvmClassificationModel(LibSvmModel):
Machines.
"""

Results = LibSvmClassificationResults

def __init__(self, kernel, weights, **kwargs):
LibSvmModel.__init__(self, kernel, **kwargs)
if weights is not None:
Expand Down
2 changes: 0 additions & 2 deletions Lib/sandbox/svm/oneclass.py
Expand Up @@ -40,8 +40,6 @@ class LibSvmOneClassModel(LibSvmModel):
High-Dimensional Distribution.
"""

Results = LibSvmOneClassResults

def __init__(self, kernel, nu=0.5, **kwargs):
"""
Parameters:
Expand Down
2 changes: 0 additions & 2 deletions Lib/sandbox/svm/regression.py
Expand Up @@ -42,8 +42,6 @@ def get_svr_probability(self):
return self.sigma

class LibSvmRegressionModel(LibSvmModel):
Results = LibSvmRegressionResults

def __init__(self, kernel, **kwargs):
LibSvmModel.__init__(self, kernel, **kwargs)

Expand Down

0 comments on commit e7042e6

Please sign in to comment.