Skip to content

Commit

Permalink
Hotfix 1.0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jlgarridol committed Nov 29, 2024
1 parent cd6c249 commit 6e03b24
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.5.3] - 2024-11-29

### HotFix

- Remove debug logs in DeTriTraining.

## [1.0.5.2] - 2024-05-27

### HotFix
Expand Down
2 changes: 1 addition & 1 deletion src/sslearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

__doc__ = __doc__ + "\n.. include:: ../../docs/examples.md\n"

__version__='1.0.5.2'
__version__='1.0.5.3'
__AUTHOR__="José Luis Garrido-Labrador" # Author of the package
__AUTHOR_EMAIL__="jlgarrido@ubu.es" # Author's email
__URL__="https://pypi.org/project/sslearn/"
Expand Down
1 change: 0 additions & 1 deletion src/sslearn/wrapper/_tritraining.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,6 @@ def _depure(self, S):
init = time.time()
knn = KNeighborsClassifier(n_neighbors=self.k_neighbors, n_jobs=self.n_jobs)
valid = knn.fit(*S).predict(S[0]) == S[1]
#print(f"Depure time: {time.time() - init}")
return S[0][valid], S[1][valid]

def _clustering(self, S, X):
Expand Down

0 comments on commit 6e03b24

Please sign in to comment.