sboal94
sboal94
This error comes from [ElegantRl](https://github.com/AI4Finance-Foundation/ElegantRL/issues/205) Please solve it!🙏🥲
Same problem, when will it be solved? I have tried changing [] to list() in the line on [AgentBase.py:](https://github.com/AI4Finance-Foundation/ElegantRL/blob/master/elegantrl/agents/AgentBase.py) `traj_list1 = list(map(list, zip(*traj_list))) ` It doesn't work either. It gives...
@jimmydengpeng Thank you for your contribution. I have replaced this `traj_list1 = [map(list, zip(*traj_list))] # state, reward, done, action, noise` with this `traj_list1 = list(map(list, zip(*traj_list))) # state, reward, done,...