@@ -47,13 +47,15 @@ hyperparameter `:atom` of `model`.
47
47
r = range(model, :hyper; upper=nothing, lower=nothing,
48
48
scale=nothing, values=nothing)
49
49
50
- Assuming `values == nothing`, this defines a `NumericRange` object for
51
- a `Real` field `hyper` of `model`. Note that `r` is not directly
52
- iteratable but `iterator(r, n)` iterates over `n` values controlled by
53
- the various parameters (see more at [iterator](@ref). The supported
54
- scales are `:linear`,` :log`, `:logminus`, `:log10`, `:log2`, or a
55
- function (see below). Values for `Integer` types are rounded (with
56
- duplicate values removed, resulting in possibly less than `n` values).
50
+ Assuming `values` is not specified, this defines a `NumericRange`
51
+ object for a `Real` field `hyper` of `model`. Note that `r` is not
52
+ directly iteratable but `iterator(r, n)` iterates over `n` values
53
+ controlled by the various parameters (see more at [`iterator`](@ref)).
54
+ The supported scales are `:linear`,` :log`, `:logminus`, `:log10`,
55
+ `:log2`, or a function (see below).
56
+
57
+ The iterator values for `Integer` types are rounded (with duplicate
58
+ values removed, resulting in possibly less than `n` values).
57
59
58
60
If `scale` is unspecified, it is set to `:linear`, `:log`,
59
61
`:logminus`, or `:linear`, according to whether the interval `(lower,
0 commit comments