mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
13 lines
376 B
Python
13 lines
376 B
Python
from ray.rllib.utils.schedules.polynomial_schedule import PolynomialSchedule
|
|
|
|
|
|
class LinearSchedule(PolynomialSchedule):
|
|
"""
|
|
Linear interpolation between `initial_p` and `final_p`. Simply
|
|
uses Polynomial with power=1.0.
|
|
|
|
final_p + (initial_p - final_p) * (1 - `t`/t_max)
|
|
"""
|
|
|
|
def __init__(self, **kwargs):
|
|
super().__init__(power=1.0, **kwargs)
|