Skip to content

Releases: jonasrauber/eagerpy

Version 0.22.0

11 Feb 17:04
Compare
Choose a tag to compare

New Features

  • reshape now accepts a single int (in particular -1), not just tuples

Version 0.21.0

11 Feb 11:16
Compare
Choose a tag to compare

New Features

  • Tensor.__getitem__ now supports NumPy arrays (ndarray)

Version 0.20.2

11 Feb 00:25
Compare
Choose a tag to compare

Bug fixes

  • fixed a bug in TensorFlowTensor.__getitem__ with slices

Version 0.20.1

08 Feb 15:30
Compare
Choose a tag to compare

New Features

  • bug fixes for Python 3.7

Version 0.20.0

08 Feb 14:09
Compare
Choose a tag to compare

New Features

  • added Tensor.norms.* methods
    • e.g. x.norms.l2() where x is an ep.Tensor instance
  • other improvements to code, docs, tests

Version 0.19.0

05 Feb 23:20
Compare
Choose a tag to compare

New Features

  • fully specified all parameters with descriptive names (no more *args, **kwargs)
  • fully type-annotated all functions and all tests
  • improved docs
  • bugfixes

Version 0.18.0

04 Feb 10:38
Compare
Choose a tag to compare

New Features

  • documentation
  • performance optimizations
  • __getitem__ now supports range and list
  • added take_along_axis (for the last axis only)
  • better type annotations

Version 0.17.0

01 Feb 18:42
Compare
Choose a tag to compare

New Features

  • more type annotations
  • ep.Tensor now points to the base class
  • ep.TensorType now points a TypeVar bounded by ep.Tensor
  • added astensors, astensor_ and astensors_
    • the underscored variants return a restore_type function that inverts the astensor operation
  • more tests
  • stricter mypy config

Version 0.16.0

31 Jan 00:04
Compare
Choose a tag to compare

New Features

  • Tensor.tensor is now called Tensor.raw
  • added type hints to basically all methods and framework functions
  • refactored large parts of the code
  • many other bug fixes and improvements following from that

Version 0.15.0

27 Jan 12:09
Compare
Choose a tag to compare

New Features

  • TensorFlowTensor now supports automatic casting to the common dtype for all comparison operators
  • other improvements and bug fixes