Skip to content

Commit d5a32cb

Browse files
committed
README fix
1 parent 3ab9500 commit d5a32cb

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ sudo cp cuda/include/cudnn.h /usr/local/cuda/include
2323
sudo cp cuda/lib64/libcudnn* /usr/local/cuda/lib64
2424
sudo chmod a+r /usr/local/cuda/include/cudnn.h /usr/local/cuda/lib64/libcudnn*
2525
```
26+
---
2627

2728
**All of the following steps you may perform inside [Anaconda](https://www.anaconda.com/) or [virtualenv](https://virtualenv.pypa.io/en/latest/)**
2829

@@ -56,7 +57,6 @@ pip install -r requirements.txt
5657

5758
### Mixed Precision
5859
If you want to use mixed precision training, you have to install [NVIDIA Apex](https://devblogs.nvidia.com/apex-pytorch-easy-mixed-precision-training/):
59-
6060
```
6161
git clone --recursive https://github.com/NVIDIA/apex.git
6262
cd apex && pip install .
@@ -67,7 +67,6 @@ cd apex && pip install .
6767
### Dataset
6868

6969
To create a dataset you must create a CSV manifest file containing the locations of the training data. This has to be in the format of:
70-
7170
```
7271
/path/to/audio.wav,/path/to/text.txt
7372
/path/to/audio2.wav,/path/to/text2.txt
@@ -78,7 +77,6 @@ There is an example in examples directory.
7877
### Training, Testing and Inference
7978

8079
Fundamentally, you can run the scripts the same way:
81-
8280
```
8381
python3 train.py --config /path/to/config/file.yaml
8482
python3 test.py --config /path/to/config/file.yaml
@@ -89,7 +87,6 @@ The scripts are initialised via configuration files.
8987
#### Configuration
9088

9189
Configuration file contains arguments for ModelWrapper initialisation as well as extra parameters. Like this:
92-
9390
```
9491
train:
9592
...

0 commit comments

Comments
 (0)