openai / baselines

OpenAI Baselines: high-quality implementations of reinforcement learning algorithms
MIT License
15.83k stars 4.88k forks source link

How to make expert data #927

Open ChanCheryl opened 5 years ago

ChanCheryl commented 5 years ago

hello developers, I want to use my own expert datas, but I don't know how to make expert datas. Could you tell me about how to make? For example: gail's deterministic.trpo.Hopper.0.00.npz

sritee commented 5 years ago

Just load a pre-trained policy, and do env.step(), and save all the states action pairs obtained?

zyzhang1130 commented 4 years ago

does it matter if the states action pairs are of different lengths for different instances?