-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 711 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import setuptools
setuptools.setup(
name="jax_trainer",
version="0.1",
author="Phillip Lippe",
author_email="phillip.lippe@googlemail.com",
description="Lightning-like framework for JAX",
url="https://github.com/phlippe/jax-trainer",
packages=setuptools.find_packages(),
install_requires=[
"jax>=0.4.13",
"jaxlib>=0.4.13",
"torchvision>=0.15",
"torchaudio>=2.0",
"torch>=2.0",
"numpy",
"seaborn",
"matplotlib",
"pytorch-lightning>=2.0.5",
"tensorboard>=2.13.0",
"optax>=0.1.5",
"orbax-checkpoint>=0.4.0",
"flax>=0.7.0",
"absl-py",
"ml-collections",
],
)