
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
EagerPy is a thin wrapper around PyTorch, TensorFlow Eager, JAX and NumPy that unifies their interface and thus allows writing code that works natively across all of them.
.. image:: https://badge.fury.io/py/eagerpy.svg :target: https://badge.fury.io/py/eagerpy
.. image:: https://codecov.io/gh/jonasrauber/eagerpy/branch/master/graph/badge.svg :target: https://codecov.io/gh/jonasrauber/eagerpy
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/ambv/black
EagerPy <https://eagerpy.jonasrauber.de>
_ is a Python framework that lets you write code that automatically works natively with PyTorch <https://pytorch.org>
, TensorFlow <https://www.tensorflow.org>
, JAX <https://github.com/google/jax>
, and NumPy <https://numpy.org>
. EagerPy is also great when you work with just one framework but prefer a clean and consistent API that is fully chainable, provides extensive type annotions and lets you write beautiful code.
Learn more about EagerPy in the documentation <https://eagerpy.jonasrauber.de>
_.
.. code-block:: bash
pip install eagerpy
EagerPy requires Python 3.6 or newer. Besides that, all essential dependencies are automatically installed. To use it with PyTorch, TensorFlow, JAX, or NumPy, the respective framework needs to be installed separately. These frameworks are not declared as dependencies because not everyone wants to use and thus install all of them and because some of these packages have different builds for different architectures and CUDA <https://developer.nvidia.com/cuda-zone>
_ versions.
.. code-block:: python
import torch x = torch.tensor([1., 2., 3., 4., 5., 6.])
import tensorflow as tf x = tf.constant([1., 2., 3., 4., 5., 6.])
import jax.numpy as np x = np.array([1., 2., 3., 4., 5., 6.])
import numpy as np x = np.array([1., 2., 3., 4., 5., 6.])
import eagerpy as ep
x = ep.astensor(x)
x = x.reshape((2, 3)) x.flatten(start=1).square().sum(axis=-1).sqrt()
loss, grad = ep.value_and_grad(loss_fn, x) ep.clip(x + eps * grad, 0, 1)
def my_universal_function(a, b, c): # Convert all inputs to EagerPy tensors a, b, c = ep.astensors(a, b, c)
# performs some computations
result = (a + b * c).square()
# and return a native tensor
return result.raw
Foolbox Native <https://github.com/bethgelab/foolbox>
_, the latest version of
Foolbox, a popular adversarial attacks library, has been rewritten from scratch
using EagerPy instead of NumPy to achieve native performance on models
developed in PyTorch, TensorFlow and JAX, all with one code base.
EagerPy is also used by other frameworks to reduce code duplication (e.g. GUDHI <https://github.com/GUDHI/gudhi-devel>
) or to compare the performance of different frameworks <https://github.com/jonasrauber/uniformly-sampling-nd-ball>
.
If you use EagerPy, please cite our paper <https://arxiv.org/abs/2008.04175>
_ using the this BibTex entry:
.. code-block::
@article{rauber2020eagerpy, title={{EagerPy}: Writing Code That Works Natively with {PyTorch}, {TensorFlow}, {JAX}, and {NumPy}}, author={Rauber, Jonas and Bethge, Matthias and Brendel, Wieland}, journal={arXiv preprint arXiv:2008.04175}, year={2020}, url={https://eagerpy.jonasrauber.de}, }
We currently test with the following versions:
FAQs
EagerPy is a thin wrapper around PyTorch, TensorFlow Eager, JAX and NumPy that unifies their interface and thus allows writing code that works natively across all of them.
We found that eagerpy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.