Skip to content

Releases: achaiah/pywick

v0.6.5 Released

22 Oct 03:16
9d663fa
Compare
Choose a tag to compare

Another great improvement to the framework - docker! You can now run the 17flowers demo right out of the box!

  • Grab our docker image at docker hub: docker pull achaiah/pywick:latest. Pytorch 1.8 and cuda dependencies are pre-installed.
  • Run 17flowers demo with: docker run --rm -it --ipc=host -v your_local_out_dir:/jobs/17flowers --init -e demo=true achaiah/pywick:latest
  • Or run the container in standalone mode so you can use your own data (don't forget to map your local dir to container):
docker run --rm -it \
--ipc=host \
-v <your_local_data_dir>:<container_data_dir> \
-v <your_local_out_dir>:<container_out_dir> \
--init \
achaiah/pywick:latest

v0.6.0 Released

11 Oct 18:44
07dfa70
Compare
Choose a tag to compare

Huge release with new functionality and models!

  • Complete configuration support via YAML files. Run your training without writing a single line of code!
  • Classification training example with a fully functional YAML config.
  • 700+ classification models.
  • Improvements to code-base via deepsource.
  • New Loss functions.
  • New Segmentation models.

v0.5.6 Released

20 Jan 22:11
Compare
Choose a tag to compare

Small corrections for pypi and README. No functional changes.

v0.5.5 Released

15 Jan 23:12
Compare
Choose a tag to compare

Added ~50 new models (including many variants of efficientnet, mixnet, mnasnet etc).
SoTA activation function (Mish)
New otimizers (Ralamb, Ranger, Lookahead)

Updated models and optimizers

23 Sep 21:17
Compare
Choose a tag to compare

Major changes (see readme for details):

  • Added many new segmentation models (most are pretrained)
  • Added new optimizers
  • Added new loss functions
  • Improved model loading logic
  • Various bug fixes

Complete API documentation

08 May 04:53
Compare
Choose a tag to compare

We've gone to great lengths to create good readable documentation for Pywick. You can peruse it here.

v0.5.2

28 Mar 14:28
Compare
Choose a tag to compare

Quick patch release of a checkpoint loading issue.

v0.5.1

25 Mar 21:29
Compare
Choose a tag to compare

First release of pywick. May be rough around the edges but very much usable.