Skip to content

Commit

Permalink
Fix missing/duplicate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ldeso committed Oct 10, 2023
1 parent 37bae6b commit 2b63929
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ makedocs(
"Reading back data" => "deserialization.md",
"Extending" => "extending_behaviour.md",
"Explicit Interface" => "explicit_interface.md",
"Hyperparameter logging" => "hyperparameters.md"
"Hyperparameter logging" => "hyperparameters.md",
"Exported" => "exported.md"
],
"Examples" => Any[
"Flux.jl" => "examples/flux.md"
"Optim.jl" => "examples/optim.md"
"Hyperparameter tuning" => "examples/hyperparameter_tuning.md"
]
],
checkdocs = :exports,
format = Documenter.HTML(
prettyurls = haskey(ENV, "CI"))
)
Expand Down
1 change: 0 additions & 1 deletion docs/src/deserialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,4 @@ TensorBoardLogger.tags
TensorBoardLogger.steps
map_summaries
TensorBoardLogger.map_events
TensorBoardLogger.map_summaries
```
11 changes: 11 additions & 0 deletions docs/src/exported.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Exported

```@docs
TBLogger
reset!
set_step!
increment_step!
with_TBLogger_hold_step
TensorBoardLogger.set_step_increment!
TensorBoardLogger.PNGImage.PngImage
```
3 changes: 3 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,6 @@ As an alternative, you can also log data to TensorBoard through its functional i

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.

## Other exported methods

For documentation on other exported methods, see the [Exported](@ref) manual page.

0 comments on commit 2b63929

Please sign in to comment.