-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.07 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
[project]
name = "jif"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "nev", email = "[email protected]"},
]
requires-python = "==3.10.*"
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"torch>=2.3.1",
"penzai>=0.1.4",
"fire>=0.6.0",
"datasets>=2.20.0",
"more-itertools>=10.3.0",
"wandb>=0.17.5",
"jax[tpu]>=0.4.31",
"optax>=0.2.3",
"rich>=13.7.1",
"tokenizers>=0.20.0",
]
[tool.pdm]
distribution = false
[tool.pdm.resolution]
respect-source-order = true
[[tool.pdm.source]]
name = "libtpu"
url = "https://storage.googleapis.com/jax-releases/libtpu_releases.html"
type = "find_links"
[[tool.pdm.source]]
name = "jax-nightly"
url = "https://storage.googleapis.com/jax-releases/jax_nightly_releases.html"
[[tool.pdm.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cpu"
[tool.pdm.dev-dependencies]
jupyter = [
"ipykernel>=6.29.5",
"ipywidgets>=8.1.3",
"matplotlib>=3.9.1",
"isort>=5.13.2",
"tensorflow>=2.17.0",
"tensorboard-plugin-profile>=2.17.0",
]