-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.09 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 = "UcoRecSys"
version = "0.1.0"
description = "El objetivo de este TFG es desarrollar un sistema de recomendación para e-learning basado en un conjunto de datos de referencia, lo que permitirá evaluar su rendimiento en comparación con otros modelos previos."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pandas>=2.2.3",
"surprise>=0.1",
"numpy<2",
"scikit-learn>=1.6.1",
# "torch>=2.6.0",
"matplotlib>=3.10.1",
"torchmetrics>=1.7.1",
"lightning>=2.5.1.post0",
"openpyxl>=3.1.5",
"scipy>=1.15.2",
"scikit-posthocs>=0.11.4",
]
[dependency-groups]
dev = ["tensorboard>=2.19.0"]
[project.optional-dependencies]
cpu = ["torch>=2.6.0"]
cu128 = ["torch>=2.6.0"]
[tool.uv]
conflicts = [[{ extra = "cpu" }, { extra = "cu128" }]]
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", extra = "cpu" },
{ index = "pytorch-cu128", extra = "cu128" },
]
[[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