-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.23 KB
/
pyproject.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "baidu-reproducibility"
version = "1.0.0"
description = ""
authors = ["Philipp Hager <p.k.hager@uva.nl>", "Romain Deffayet <r.e.deffayet@uva.nl>"]
readme = "README.md"
[tool.poetry.dependencies]
# Core
python = ">=3.9,<3.9.7 || >3.9.7,<3.13" # Streamlit requires !=3.9.7
jaxlib = {version = "0.4.23+cuda11.cudnn86", source = "jax_cuda"}
jax = {version = "0.4.23", extras=["cuda11_pip"]}
flax = "^0.7.5"
hydra-core = "^1.3.2"
# Data
torch = {version = "^2.1.1", source = "torch_cpu"}
datasets = "^2.14.6"
pyarrow = "^14.0.1"
mmh3 = "^4.0.1"
# Scientific computing
scikit-learn = "^1.3.2"
rax = "^0.3.0"
kdepy = "^1.1.8"
ultr-bias-toolkit = "^0.0.5"
# Visualization
jupyterlab = "^4.0.8"
altair = "^5.1.0"
streamlit = "^1.28.1"
wandb = "^0.16.1"
# Hyperparameters
hydra-submitit-launcher = "^1.2.0"
hydra-optuna-sweeper = "1.3.0.dev0"
# Misc
typing-extensions = "^4.8.0"
rich = "^13.6.0"
typer = " ^0.9.0"
[[tool.poetry.source]]
name = "jax_cuda"
url = "https://storage.googleapis.com/jax-releases/jax_cuda_releases.html"
priority = "explicit"
[[tool.poetry.source]]
name = "torch_cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"