b4be1 / rl-for-sequential-assembly

Scripts accompanying the paper "Reinforcement Learning for Sequential Assembly of SL-Blocks"
MIT License
12 stars 2 forks source link

Reason for using Open AI Gym #1

Open zuardinakbar opened 2 years ago

zuardinakbar commented 2 years ago

Hey, nice project! Could you please explain the advantages of using OpenAI gym in your setup? Why is it needed when you actually use your own custom env?

Cheers, Zuardin

b4be1 commented 4 months ago

Hi Zuardin,

OpenAI Gym interface is standard in Reinforcement Learning. By framing the problem this way, we are able to use any existing RL library, e.g., stable-baselines.

Best, Boris