Skip to content

Releases: jonasrauber/eagerpy

Version 0.14.0

26 Jan 20:58
Compare
Choose a tag to compare

New Features

  • added ep.utils.get_dummy
  • TensorFlowTensor.sum now automatically casts boolean to int (like PyTorchTensor and others)
  • other improvements and new tests

Version 0.13.0

25 Jan 13:28
Compare
Choose a tag to compare

New Features

  • added __mod__
  • fixed ep.mean (was sum instead of mean)
  • reorganized the tests
  • completed our test suite to reach 100% test coverage

Version 0.12.0

25 Jan 01:53
Compare
Choose a tag to compare

New Features

  • 99% test coverage
    • all tests rewritten from scratch
    • removed all framework-specific duplication
    • added nice helper functions
  • truely lazy imports of the different frameworks
  • added magic framework wrappers that automatically apply ep.astensor and preform lazy imports
    • ep.torch
    • ep.tensorflow
    • ep.numpy
    • ep.jax
  • added pow()
  • added log_softmax()
  • added kl_div_with_logits()
  • lots of bugfixes and improvements

Version 0.11.0

15 Jan 13:30
Compare
Choose a tag to compare

New Features

  • added support for automatic differentation of arbitrary functions that take and return EagerPy tensors
    • value_and_grad (function and method)
    • value_aux_and_grad (function and method)
    • value_and_grad_fn (function)
  • added crossentropy
  • improved the __repr__() shown for EagerPy tensors
  • other improvements and bug fixes

Version 0.10.0

10 Jan 14:19
Compare
Choose a tag to compare

New Features

  • added __format__ support to tensors
  • added full
  • added full_like
  • added arange
  • added index_update
  • added cumsum
  • added newaxis
  • added flip
  • added meshgrid
  • added pad
  • added nan
  • added inf
  • added isnan
  • added isinf

Plus: Lot's of bug fixes and improvements.

Version 0.9.0

14 Dec 11:40
Compare
Choose a tag to compare

New Features

  • added softmax
  • added stack
  • added squeeze and expand_dims

Version 0.8.0

14 Dec 08:32
Compare
Choose a tag to compare

New Features

  • added where
  • added tile
  • added matmul
  • added logical_not

Version 0.7.0

12 Dec 15:59
Compare
Choose a tag to compare

New Features

  • added exp, log, log2, log10, log1p
  • bug fixes

Version 0.6.0

12 Dec 12:37
Compare
Choose a tag to compare

New Features

  • added bool()
  • added all() and any()
  • added logical_and() and logical_or()

Version 0.5.0

12 Dec 10:04
Compare
Choose a tag to compare

New Features

  • added support for concatenate
  • added support for transpose
  • fixed abs
  • other bug fixes