forked from representational-alignment/hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.46 KB
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
[project]
name = "hackathon"
version = "0.1.0"
description = "Calculate representational alignment metrics between neural network models."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"matplotlib>=3.10.3",
"numpy>=1.26.4",
"pandas>=2.3.0",
"pillow>=11.2.1",
"scikit-learn>=1.7.0",
"scipy>=1.16.0",
"seaborn>=0.13.2",
"tensorflow>=2.16 ; sys_platform != 'darwin' or platform_machine == 'x86_64'",
"tensorflow>=2.16,<2.17 ; sys_platform == 'darwin' and platform_machine == 'x86_64'",
"tensorflow-macos>=2.16 ; sys_platform == 'darwin' and platform_machine == 'arm64'",
"thingsvision",
"torch>=2.7 ; sys_platform != 'darwin' or platform_machine == 'arm64'",
"torch>=2.1,<2.3 ; sys_platform == 'darwin' and platform_machine == 'x86_64'",
"torchvision>=0.17.0",
"tqdm>=4.67.1",
]
[tool.uv.sources]
thingsvision = { git = "https://github.com/representational-alignment/thingsvision" }
torch = [
{ index = "pytorch-cpu", marker = "sys_platform != 'linux'" },
{ index = "pytorch-cu128", marker = "sys_platform == 'linux'" },
]
torchvision = [
{ index = "pytorch-cpu", marker = "sys_platform != 'linux'" },
{ index = "pytorch-cu128", marker = "sys_platform == 'linux'" },
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true