You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### (Optional) [uv](https://docs.astral.sh/uv/getting-started/) for Dependency Management and Packaging
46
+
### (Recommended) [uv](https://docs.astral.sh/uv/getting-started/) for Dependency Management and Packaging
70
47
71
48
After `git clone https://github.com/TY-Cheng/torchvinecopulib.git`, `cd` into the project root where [`pyproject.toml`](https://github.com/TY-Cheng/torchvinecopulib/blob/main/pyproject.toml) exists,
72
49
@@ -77,9 +54,32 @@ uv sync --extra cpu -U
77
54
uv sync --extra cu126 -U
78
55
```
79
56
80
-
## Examples
57
+
## Dependencies
81
58
82
-
Visit the [`./examples/`](https://github.com/TY-Cheng/torchvinecopulib/tree/main/examples) folder for `.ipynb` Jupyter notebooks.
59
+
```toml
60
+
# inside the `./pyproject.toml` file;
61
+
fastkde = "*"
62
+
numpy = "*"
63
+
pyvinecopulib = "*"
64
+
python = ">=3.12"
65
+
scipy = "*"
66
+
# optional to facilitate customization
67
+
torch = [
68
+
{ index = "torch-cpu", extra = "cpu" },
69
+
{ index = "torch-cu126", extra = "cu126" },
70
+
]
71
+
```
72
+
73
+
For [PyTorch](https://pytorch.org/get-started/locally/) with `cuda`:
0 commit comments