The main change concerns the fix of a design flaw. We used to implement our transforms using the `apply` method of `nn.Module` subclasses. However, `nn.Module.apply` has a different use and meaning in torch, which caused massive failures when using cornucopia in conjunction with e.g. torch lightning. We have replaced all our `apply` methods with new `xform` methods do avoid this name conflict.
What's Changed
* FIX: GMM parameters on correct device by brudfors in https://github.com/balbasty/cornucopia/pull/11
* Add some noise to input data by brudfors in https://github.com/balbasty/cornucopia/pull/13
* Regularise Wishart prior further by brudfors in https://github.com/balbasty/cornucopia/pull/16
* Translation as constructor argument to SynthFromLabelTransform by brudfors in https://github.com/balbasty/cornucopia/pull/17
* Add bound as constructor argument to SynthFromLabelTransform by brudfors in https://github.com/balbasty/cornucopia/pull/18
**Full Changelog**: https://github.com/balbasty/cornucopia/compare/0.1.0...0.2.0