Skip to content

Releases: haifengl/smile

2.5.1

17 Aug 01:10
Compare
Choose a tag to compare
  • Generalized ridge regression
  • Enhance JSON library
  • Do NOT transparently include OpenBLAS library to save space. If the users need optimized matrix computation, they should add the dependency based on their platform. See README for details.

2.5.0

23 Jul 02:47
Compare
Choose a tag to compare
  1. New matrix design
  2. New formula design
  3. Generalized linear models (GLM)
  4. Sparse logistic regression
  5. Bug fixes

2.4.0

01 May 04:02
Compare
Choose a tag to compare
  • All new declarative data visualization
  • TreeSHAP (contributed by Ray Ma @rayeaster)
  • UMAP (contributed by Ray Ma @rayeaster)
  • Levenberg-Marquardt algorithm
  • The packages smile-cas and smile-vega are merged into scala-scala package
  • Spark integration in smile-spark
  • NLP in Kotlin
  • Grid search and random search for hyperparameter tuning
  • Bug fixes
  • Smile Shell is based on Scala REPL (2.13.2) again
  • DataFrame and Tuple -> JSON
  • Kotlin and Clojure notebooks

Kudos to Ray Ma @rayeaster for great contributions!

2.3.0

01 Apr 14:29
Compare
Choose a tag to compare
  • Kotlin API
  • Clojure API
  • smile.plot.swing API is redesigned. Leaner, simpler, and better headless support
  • Bug fixes

2.2.2

12 Mar 02:59
Compare
Choose a tag to compare

Various minor improvements

2.2.0

29 Feb 00:11
Compare
Choose a tag to compare

The CAS module is a computer algebra system that has the ability to manipulate mathematical
expressions in a way similar to the traditional manual computations of
mathematicians and scientists.

The symbolic manipulations supported include:

  • simplification to a smaller expression or some standard form,
    including automatic simplification with assumptions and
    simplification with constraints

  • substitution of symbols or numeric values for certain expressions

  • change of form of expressions: expanding products and powers, partial
    and full factorization, rewriting as partial fractions, constraint
    satisfaction, rewriting trigonometric functions as exponentials,
    transforming logic expressions, etc.

  • partial and total differentiation

  • matrix operations including products, inverses, etc.

2.1.0

29 Jan 03:01
Compare
Choose a tag to compare
  1. Vega-lite based plot
  2. Jupyter notebook examples
  3. Bug fixes

2.0.0

22 Nov 17:02
Compare
Choose a tag to compare

Smile has been fully rewritten with more than 150,000 lines change.

  • Switch to L-GPL license.
  • Fully redesigned API. It is leaner, simpler and even more friendly.
  • Faster implementation and memory optimization. Many algorithms are fully reimplemented. RandomForest is 8X faster than XGBoost on large benchmark data (10MM samples).
  • New parallelism mechanism
  • All new DataFrame and Formula
  • New algorithms such as ICA, error reduction prune, quantile loss, TWCNB, etc.
  • Support arbitrary class labels.
  • Enhancement and harden numeric computations.
  • Support Parquet, SAS, Arrow, Avro, etc.
  • Bug fixes.

1.5.3

02 Jun 03:18
Compare
Choose a tag to compare
  • ElasticNet
  • GroupKFold
  • Bug fixes

1.5.2

15 Oct 20:14
Compare
Choose a tag to compare
  • K-Modes clustering
  • Online learning with LogisticRegression by SGD
  • MCC (Matthews correlation coefficient) metric
  • Bug fixes