Skip to content

v0.1.0

Latest
Compare
Choose a tag to compare
@hageldave hageldave released this 21 Mar 12:12
· 5 commits to main since this release

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 by hageldave.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 at hageldave.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). This uamds.gd.maxLineSearchIter = 10 no longer works.