File tree Expand file tree Collapse file tree 4 files changed +124
-1490
lines changed Expand file tree Collapse file tree 4 files changed +124
-1490
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,36 @@ To clone the repository please run:
20
20
git clone https://github.com/JulesBelveze/time-series-autoencoder.git
21
21
```
22
22
23
- To install all the required dependencies please run:
23
+ < details >
24
24
25
+ <summary >Use [uv](https://docs.astral.sh/uv/)</summary >
26
+
27
+ Then install ` uv `
28
+ ``` shell
29
+ # install uv
30
+ curl -LsSf https://astral.sh/uv/install.sh | sh # linux/mac
31
+ # or
32
+ brew install uv # mac with homebrew
25
33
```
26
- python3 -m venv .venv/tsa
27
- source .venv/tsa/bin/activate
28
- poetry install
34
+
35
+ # setup environment and install dependencies
36
+ ``` bash
37
+ cd time-series-autoencoder
38
+ uv venv
39
+ uv pip sync pyproject.toml
29
40
```
30
41
42
+ </details >
43
+
44
+ <details >
45
+ <summary >Install directly from `requirements.txt`</summary >
46
+
47
+ ``` shell
48
+ pip install -r requirements.txt
49
+ ```
50
+
51
+ </details >
52
+
31
53
## Usage
32
54
33
55
The project uses [ Hydra] ( https://hydra.cc/docs/intro/ ) as a configuration parser. You can simply change the parameters
You can’t perform that action at this time.
0 commit comments