diff --git a/README.md b/README.md index 9b1f469..5f13b77 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This Julia package provides learning rate schedule types for training deep learn # Examples -Schedules are *iterables* that return the learning rate at each iteration. For example, a linear schedule that decreases the learning rate from 1.0 to 0.6 with 4 steps can be created as follows: +Schedules are iterable, and return the learning rate at each iteration. For example, a linear schedule that decreases the learning rate from 1.0 to 0.6 with 4 steps can be created and used as follows: ```julia julia> using LearningSchedules @@ -42,4 +42,4 @@ julia> next_rate!(schedule_with_state) 0.9 ``` -For more types of schedules, see the [documentation](https://MurrellGroup.github.io/LearningSchedules.jl/stable/). \ No newline at end of file +For more types of schedules, see the [documentation](https://MurrellGroup.github.io/LearningSchedules.jl/stable/).