gyx v0.1.1 Gyx.Core.Spaces.Box

This space represents a bounded R^n space. These bounds are [0.0, 1.0] by default. Such range can be set with [:low, :high] keys. The shape of such box can be set in :shape :random_algorithm and :seed can be used to set a random key used for reproducibility in sampling the space.

Link to this section Summary

Link to this section Types

Link to this type

t()
t() :: %Gyx.Core.Spaces.Box{
  high: float(),
  low: float(),
  random_algorithm: :exrop | :exs1024 | :exs1024s | :exs64 | :exsp | :exsplus,
  seed: {integer(), integer(), integer()},
  shape: tuple()
}