Skip to content

Commit

Permalink
doc: fix path of repo
Browse files Browse the repository at this point in the history
  • Loading branch information
haoxiangsnr committed Jan 13, 2024
1 parent 592a900 commit 573fb43
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
4 changes: 0 additions & 4 deletions audiozen/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import importlib
import logging
import os
import platform
import random
Expand All @@ -15,9 +14,6 @@
from torch import Tensor


logger = logging.getLogger(__name__)


def print_env():
pt_version = torch.__version__
pt_cuda_available = torch.cuda.is_available()
Expand Down
4 changes: 1 addition & 3 deletions docs/source/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To install the PyTorch binaries, we recommend [Anaconda](https://www.anaconda.co

3. Install PyPI dependencies. Clone the repository and install PyPI dependencies via `pip -r requirements.txt`. Check `requirements.txt` for more details.
```shell
git clone git@github.com:haoxiangsnr/spiking-fullsubnet.git
git clone https://github.com/haoxiangsnr/spiking-fullsubnet.git
cd spiking-fullsubnet
Expand All @@ -40,8 +40,6 @@ To install the PyTorch binaries, we recommend [Anaconda](https://www.anaconda.co

4. We integrated all the audio signal processing tools into a package named `audiozen`. We will install the `audiozen` package in editable mode. By installing in editable mode, we can call `audiozen` package in everywhere of code, e.g, in `recipes` and `tools` folders. In addition, we are able to modify the source code of `audiozen` package directly. Any changes to the original package would reflect directly in your conda environment.
```shell
cd audiozen
pip install --editable . # or for short: pip install -e .
```

Expand Down

0 comments on commit 573fb43

Please sign in to comment.