Skip to content

Commit

Permalink
fixes #470
Browse files Browse the repository at this point in the history
  • Loading branch information
amaiya committed Dec 12, 2022
1 parent 1ab2025 commit 9868501
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ Most recent releases are shown at the top. Each release shows:
- **Changed**: Additional parameters, changes to inputs or outputs, etc
- **Fixed**: Bug fixes that don't change documented behaviour

## 0.32.2 (2022-12-12)

### new:
- N/A

### changed
- N/A

### fixed:
- Changed call to `NMF` to use `alpha_W` instead of `alpha`, as `alpha` parameter was removed in `scikit-learn==1.2`.


## 0.32.1 (2022-12-11)

### new:
Expand Down
2 changes: 1 addition & 1 deletion ktrain/text/eda.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def train(
n_components=n_topics,
max_iter=max_iter,
verbose=self.verbose,
alpha=alpha,
alpha_W=alpha, # alpha removed in 1.2
l1_ratio=l1_ratio,
random_state=0,
)
Expand Down
2 changes: 1 addition & 1 deletion ktrain/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__all__ = ["__version__"]
__version__ = "0.32.1"
__version__ = "0.32.2"

0 comments on commit 9868501

Please sign in to comment.