Skip to content

Commit

Permalink
fix urls (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
Moelf authored Feb 10, 2023
1 parent cda31c1 commit 95f8177
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/hyperparameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ As an example

We can create the callback scheduling the learning rate according to `Scheduler(LearningRate => schedule)`.

`Schedule`s are built around [*ParameterSchedulers.jl*](https://darsnack.github.io/ParameterSchedulers.jl/dev/). See that package's documentation for more details on how to construct them.
`Schedule`s are built around [*ParameterSchedulers.jl*](https://github.com/FluxML/ParameterSchedulers.jl). See that package's documentation for more details on how to construct them.

### One-cycle learning rate

Expand Down Expand Up @@ -55,7 +55,7 @@ learner = model(model, data, opt, lossfn, Scheduler(LearningRate => schedule))
```

For convenience, you can also use the [`onecycle`](#) helper to create this `Schedule`.
See [ParameterSchedulers.jl documentation](https://darsnack.github.io/ParameterSchedulers.jl/dev/docs/tutorials/warmup-schedules.html) for more details on warm-up schedules.
See [ParameterSchedulers.jl documentation](https://fluxml.ai/ParameterSchedulers.jl/dev/docs/tutorials/warmup-schedules.html) for more details on warm-up schedules.

## Extending

Expand Down
2 changes: 1 addition & 1 deletion src/callbacks/scheduler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Scheduler(schedules...)
Callback for hyperparameter scheduling. Takes pairs of [`HyperParameter`](#)
types and [ParameterSchedulers.jl schedules](https://darsnack.github.io/ParameterSchedulers.jl/dev/README.html).
types and [ParameterSchedulers.jl schedules](https://github.com/FluxML/ParameterSchedulers.jl).
See [the tutorial](/docs/docs/tutorials/hyperparameters.md) for more information.
Expand Down

0 comments on commit 95f8177

Please sign in to comment.