7 lines
129 B
Python
7 lines
129 B
Python
|
from gym.envs.registration import register
|
||
|
|
||
|
register(
|
||
|
id='ReacherALREnv-v0',
|
||
|
entry_point='reacher.envs:ReacherALREnv',
|
||
|
)
|