File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,24 +19,24 @@ PyTorch deep learning project made easy.
19
19
* [Data Loader](#data-loader)
20
20
* [Trainer](#trainer)
21
21
* [Model](#model)
22
- * [Loss and metrics ](#loss-and-metrics )
23
- * [Multiple metrics](#multiple- metrics)
22
+ * [Loss](#loss)
23
+ * [metrics](#metrics)
24
24
* [Additional logging](#additional-logging)
25
25
* [Validation data](#validation-data)
26
26
* [Checkpoints](#checkpoints)
27
27
* [Tensorboard Visualization](#tensorboard-visualization)
28
28
* [Contribution](#contribution)
29
29
* [TODOs](#todos)
30
30
* [License](#license)
31
- * [Acknowledgements](#acknowledgments )
31
+ * [Acknowledgements](#acknowledgements )
32
32
33
33
<!-- /code_chunk_output -->
34
34
35
35
## Requirements
36
36
* Python >= 3.5 (3.6 recommended)
37
37
* PyTorch >= 0.4 (1.2 recommended)
38
38
* tqdm (Optional for ` test.py ` )
39
- * tensorboard >= 1.14 (see [ Tensorboard Visualization] [ #tensorboardx -visualization] )
39
+ * tensorboard >= 1.14 (see [ Tensorboard Visualization] ( #tensorboard -visualization) )
40
40
41
41
## Features
42
42
* Clear folder structure which is suitable for many deep learning projects.
@@ -279,7 +279,7 @@ which is increased to 256 by command line options.
279
279
### Loss
280
280
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.
281
281
282
- #### Metrics
282
+ ### Metrics
283
283
Metric functions are located in 'model/metric.py'.
284
284
285
285
You can monitor multiple metrics by providing a list in the configuration file, e.g.:
You can’t perform that action at this time.
0 commit comments