Releases: jonasrauber/eagerpy
Releases · jonasrauber/eagerpy
Version 0.14.0
New Features
- added
ep.utils.get_dummy
TensorFlowTensor.sum
now automatically casts boolean to int (likePyTorchTensor
and others)- other improvements and new tests
Version 0.13.0
New Features
- added
__mod__
- fixed
ep.mean
(wassum
instead ofmean
) - reorganized the tests
- completed our test suite to reach 100% test coverage
Version 0.12.0
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 importsep.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
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
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
New Features
- added
softmax
- added
stack
- added
squeeze
andexpand_dims
Version 0.8.0
New Features
- added
where
- added
tile
- added
matmul
- added
logical_not
Version 0.7.0
New Features
- added
exp
,log
,log2
,log10
,log1p
- bug fixes
Version 0.6.0
New Features
- added
bool()
- added
all()
andany()
- added
logical_and()
andlogical_or()
Version 0.5.0
New Features
- added support for
concatenate
- added support for
transpose
- fixed
abs
- other bug fixes