Skip to content

Initial release

Pre-release
Pre-release
Compare
Choose a tag to compare
@Borda Borda released this 16 Jan 00:47
· 622 commits to master since this release
024b574

[0.1.0] - 2020-07-02

Added

  • Added setup and repo structure
  • Added requirements
  • Added docs
  • Added Manifest
  • Added coverage
  • Added MNIST template
  • Added VAE template
  • Added GAN + AE + MNIST
  • Added Linear Regression
  • Added Moco2g
  • Added simclr
  • Added RL module
  • Added Loggers
  • Added Transforms
  • Added Tiny Datasets
  • Added regularization to linear + logistic models
  • Added Linear and Logistic Regression tests
  • Added Image GPT
  • Added Recommenders module

Changed

  • Device is no longer set in the DQN model init
  • Moved RL loss function to the losses module
  • Moved rl.common.experience to datamodules
  • train_batch function to VPG model to generate batch of data at each step (POC)
  • Experience source no longer gets initialized with a device, instead the device is passed at each step()
  • Refactored ExperienceSource classes to be handle multiple environments.

Removed

  • Removed N-Step DQN as the latest version of the DQN supports N-Step by setting the n_step arg to n
  • Deprecated common.experience

Fixed

  • Documentation
  • Doct tests
  • CI pipeline
  • Imports and pkg
  • CPC fixes