Skip to content

Commit

Permalink
Update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
aymericb213 committed Jul 6, 2023
1 parent 82bb898 commit 6f14d4e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions skquery/pairwise/SASC.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ def fit(self, X, oracle, partition=None, n_clusters=None):
return constraints

def _svdd(self, X, C, sigma):
"""
Perform Support Vector Data Description.
"""
self.svdd = BaseSVDD(C=C, gamma=sigma, kernel='rbf', display='off')
self.svdd.fit(X)
#self.boundary = svdd.plot_boundary(dataset)
Expand Down

0 comments on commit 6f14d4e

Please sign in to comment.