Skip to content

A simple point car environment with openAI gym like interface

Notifications You must be signed in to change notification settings

parvkpr/simplecar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

simplecar

A simple point car environment with openAI gym like interface

usage

from unicyclev2 import Env, run
if name == 'main':
e = Env()
run(e)
e.reset()
for i in range(20):
ac = e.action_space.sample()
print(ac)
print(e.step(ac))
print('executing now' + repr(i))\

About

A simple point car environment with openAI gym like interface

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages