Skip to content

Commit

Permalink
🆙 Bump up version number to 0.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshoku committed Mar 20, 2020
1 parent 3c8a327 commit 377e9a6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
# 0.18.2
- Change file composition of naive bayes classifiers.
- Add classifier class for [ComplementNaiveBayes](https://yoshoku.github.io/rumale/doc/Rumale/NaiveBayes/ComplementNB.html).
- Add classifier class for [NegationNaiveBayes](https://yoshoku.github.io/rumale/doc/Rumale/NaiveBayes/NegationNB.html).
- Add [module function](https://yoshoku.github.io/rumale/doc/Rumale/EvaluationMeasure.html#confusion_matrix-class_method) for calculating confusion matrix.
- Delete unneeded marshal dump and load methods.
- [Clustering](https://yoshoku.github.io/rumale/doc/Rumale/Clustering.html),
[KernelApproximation](https://yoshoku.github.io/rumale/doc/Rumale/KernelApproximation.html),
[KernelMachine](https://yoshoku.github.io/rumale/doc/Rumale/KernelMachine.html),
[NearestNeighbors](https://yoshoku.github.io/rumale/doc/Rumale/NearestNeighbors.html),
[Preprocessing](https://yoshoku.github.io/rumale/doc/Rumale/Preprocessing.html).

# 0.18.1
- Add [module function](https://yoshoku.github.io/rumale/doc/Rumale/EvaluationMeasure.html#classification_report-class_method) for generating summary of classification performance.
- Delete marshal dump and load methods for documentation.
The marshal methods are written in estimator classes for indicating on API documentation that the learned model can be saved with Marshal.
Even without these methods, Marshal can save the learned model, so they are deleted sequentially.
- [Manifold](https://yoshoku.github.io/rumale/doc/Rumale/Manifold.html)
- [NaiveBayes](https://yoshoku.github.io/rumale/doc/Rumale/NaiveBayes.html)
- [PolynomialModel](https://yoshoku.github.io/rumale/doc/Rumale/PolynomialModel.html)
- [Decomposition](https://yoshoku.github.io/doc/Rumale/Decomposition.html)
- [Manifold](https://yoshoku.github.io/rumale/doc/Rumale/Manifold.html),
[NaiveBayes](https://yoshoku.github.io/rumale/doc/Rumale/NaiveBayes.html),
[PolynomialModel](https://yoshoku.github.io/rumale/doc/Rumale/PolynomialModel.html),
[Decomposition](https://yoshoku.github.io/doc/Rumale/Decomposition.html).

# 0.18.0
- Add transformer class for [FisherDiscriminantAnalysis](https://yoshoku.github.io/rumale/doc/Rumale/MetricLearning/FisherDiscriminantAnalysis.html).
Expand Down
2 changes: 1 addition & 1 deletion lib/rumale/version.rb
Original file line number Diff line number Diff line change
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.18.1'
VERSION = '0.18.2'
end

0 comments on commit 377e9a6

Please sign in to comment.