Skip to content

Commit a39a102

Browse files
authored
Update README.md
1 parent 0f70b64 commit a39a102

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ PyTorch deep learning project made easy.
1919
* [Data Loader](#data-loader)
2020
* [Trainer](#trainer)
2121
* [Model](#model)
22-
* [Loss and metrics](#loss-and-metrics)
23-
* [Multiple metrics](#multiple-metrics)
22+
* [Loss](#loss)
23+
* [metrics](#metrics)
2424
* [Additional logging](#additional-logging)
2525
* [Validation data](#validation-data)
2626
* [Checkpoints](#checkpoints)
2727
* [Tensorboard Visualization](#tensorboard-visualization)
2828
* [Contribution](#contribution)
2929
* [TODOs](#todos)
3030
* [License](#license)
31-
* [Acknowledgements](#acknowledgments)
31+
* [Acknowledgements](#acknowledgements)
3232

3333
<!-- /code_chunk_output -->
3434

3535
## Requirements
3636
* Python >= 3.5 (3.6 recommended)
3737
* PyTorch >= 0.4 (1.2 recommended)
3838
* tqdm (Optional for `test.py`)
39-
* tensorboard >= 1.14 (see [Tensorboard Visualization][#tensorboardx-visualization])
39+
* tensorboard >= 1.14 (see [Tensorboard Visualization](#tensorboard-visualization))
4040

4141
## Features
4242
* Clear folder structure which is suitable for many deep learning projects.
@@ -279,7 +279,7 @@ which is increased to 256 by command line options.
279279
### Loss
280280
Custom loss functions can be implemented in 'model/loss.py'. Use them by changing the name given in "loss" in config file, to corresponding name.
281281

282-
#### Metrics
282+
### Metrics
283283
Metric functions are located in 'model/metric.py'.
284284

285285
You can monitor multiple metrics by providing a list in the configuration file, e.g.:

0 commit comments

Comments
 (0)