Skip to content

Releases: pytorch/ignite

New features and enhanced contrib module

09 Apr 16:05
38a4f37
Compare
Choose a tag to compare

Core

  • We removed deprecated metric classes BinaryAccuracy and CategoricalAccuracy and which are replaced by Accuracy.

  • Multilabel option for Accuracy, Precision, Recall metrics.

  • Added other metrics:

  • Operations on metrics: p = Precision(average=False)

    • apply PyTorch operators: mean_precision = p.mean()
    • indexing: precision_no_bg = p[1:]
  • Improved our docs with more examples.

  • Added FAQ section with best practices.

  • Bug fixes

Now in Contributions module

Notebook examples

  • VAE on MNIST
  • CNN for text classification

Nighlty builds with pytorch-nightly as dependency

We also provide pip/conda nighlty builds with pytorch-nightly as dependency:

pip install pytorch-ignite-nightly

or

conda install -c pytorch ignite-nightly 

Acknowledgments

🎉 Thanks to our community and all our contributors for the issues, PRs and 🌟 ⭐️ 🌟 !
💯 We really appreciate your implication into the project (in alphabetical order):

Bibonaut, IlyaOvodov, TheCodez, anmolsjoshi, fabianschilling, maaario, snowyday, vfdev-5, willprice, zasdfgbnm, zippeurfou

vfdev-5 would like also to thank his wife and newborn baby girl Nina for their support while working on this release !

Bug fixes and features

14 Dec 12:35
4330136
Compare
Choose a tag to compare
  • Improve and fix bug with binary accuracy, precision, recall
  • Metrics arithmetics
  • ParamScheduler to support multiple optimizers/multiple parameter groups

Thanks to all our contributors !

New features and bug fixes

09 Nov 08:05
2f48a09
Compare
Choose a tag to compare

What's new in this release:

  • Contrib module with
    • Parameter schedule
    • TQDM ProgressBar
    • ROC/AUC, AP, MaxAE metrics
    • TBPTT Engine
  • New handlers:
    • Terminate on Nan
  • New metrics:
    • RunningAverage
    • Merged Categorical/Binary -> Accuracy
  • Refactor of examples
  • New examples:
    • Fast Neural Style
    • RL

Thanks to all our contributors !

First release

18 Jun 23:03
e19086c
Compare
Choose a tag to compare

Introduced Engine, Handlers and Metrics.

Metrics:

  • BinaryAccuracy
  • CategoricalAccuracy
  • Loss
  • Precision
  • Recall
  • etc

Handlers:

  • ModelCheckpoint
  • EarlyStopping
  • Timer

Features:

  • PyTorch 0.4 support

Examples:

  • mnist.py
  • mnist_with_tensorboardx.py
  • mnist_with_visdom.py
  • dcgan.py