Skip to content

Commit e985f09

Browse files
authored
Merge pull request #141 from ldeso/Fix-docs
Fix missing/duplicate docs
2 parents 37bae6b + 2b63929 commit e985f09

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

docs/make.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@ makedocs(
1111
"Reading back data" => "deserialization.md",
1212
"Extending" => "extending_behaviour.md",
1313
"Explicit Interface" => "explicit_interface.md",
14-
"Hyperparameter logging" => "hyperparameters.md"
14+
"Hyperparameter logging" => "hyperparameters.md",
15+
"Exported" => "exported.md"
1516
],
1617
"Examples" => Any[
1718
"Flux.jl" => "examples/flux.md"
1819
"Optim.jl" => "examples/optim.md"
1920
"Hyperparameter tuning" => "examples/hyperparameter_tuning.md"
2021
]
2122
],
23+
checkdocs = :exports,
2224
format = Documenter.HTML(
2325
prettyurls = haskey(ENV, "CI"))
2426
)

docs/src/deserialization.md

-1
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,4 @@ TensorBoardLogger.tags
5050
TensorBoardLogger.steps
5151
map_summaries
5252
TensorBoardLogger.map_events
53-
TensorBoardLogger.map_summaries
5453
```

docs/src/exported.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Exported
2+
3+
```@docs
4+
TBLogger
5+
reset!
6+
set_step!
7+
increment_step!
8+
with_TBLogger_hold_step
9+
TensorBoardLogger.set_step_increment!
10+
TensorBoardLogger.PNGImage.PngImage
11+
```

docs/src/index.md

+3
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,6 @@ As an alternative, you can also log data to TensorBoard through its functional i
123123

124124
Many experiments rely on hyperparameters, which can be difficult to tune. Tensorboard allows you to visualise the effect of your hyperparameters on your metrics, giving you an intuition for the correct hyperparameters for your task. For information on this API, see the [Hyperparameter logging](@ref) manual page.
125125

126+
## Other exported methods
127+
128+
For documentation on other exported methods, see the [Exported](@ref) manual page.

0 commit comments

Comments
 (0)