Release of core artifact to maven central repository.
<dependency>
<groupId>com.github.hageldave.uamds</groupId>
<artifactId>uamds-core</artifactId>
<version>0.1.0</version>
</dependency>
Breaking changes:
- the packages
uamds.optimization.*
have been removed and replaced byhageldave.optisled.*
. This is due to the optimization classes originally stemming from the OptiSled library, which have now been migrated back to it. UAMDS now uses the optisled library instead of its own optimzation classes. - the class
uamds.other.Ref
is now athageldave.utils.Ref
(part of the OptiSled library as well). - hyperparameters for gradient descent are now set like this:
uamds.gd.getHyperparams().set(GradientDescent.PARAM_MAX_LINESEARCH_ITER, 10)
. Thisno longer works.uamds.gd.maxLineSearchIter = 10