Skip to content

Commit

Permalink
🆙 Bump up version number to 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshoku committed Jan 4, 2020
1 parent b61de0b commit f2e42b7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
# 0.16.0
## Breaking changes
- The meaning of the `max_iter` parameter of the multi-layer perceptron estimators
has been changed from the maximum number of iterations to the number of epochs.
The number of epochs is how many times the whole data is given to the training process.
As a future plan, similar changes will be applied to other estimators used stochastic gradient descent such as SVC and Lasso.
- [MLPClassifier](https://yoshoku.github.io/rumale/doc/Rumale/NeuralNetwork/MLPClassifier.html)
- [MLPRegressor](https://yoshoku.github.io/rumale/doc/Rumale/NeuralNetwork/MLPRegressor.html)

# 0.15.0
- Add feature extractor classes:
- [HashVectorizer](https://yoshoku.github.io/rumale/doc/Rumale/FeatureExtraction/HashVectorizer.html)
Expand Down
2 changes: 1 addition & 1 deletion lib/rumale/version.rb
Expand Up @@ -3,5 +3,5 @@
# Rumale is a machine learning library in Ruby.
module Rumale
# The version of Rumale you are using.
VERSION = '0.15.0'
VERSION = '0.16.0'
end

0 comments on commit f2e42b7

Please sign in to comment.