Tessa van der Heiden

Results 14 issues of Tessa van der Heiden

Hi Morvan Zhou, Thanks for the great repo. [Here](https://github.com/tessavdheiden/joint_model/blob/main/train/policy_train_torch.py) is your code, but then in Pytorch. The results between our codes: Tensorflow (your code) ![reward_policy_tf](https://user-images.githubusercontent.com/24938569/109938220-11e20900-7cd0-11eb-9e5e-494f7eb08aa7.png) Pytorch (my code) ![reward_policy](https://user-images.githubusercontent.com/24938569/109938257-1c040780-7cd0-11eb-8dcd-41ee756f59ed.png)

Hi! Could you please explain what the replace here does? https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow/blob/1fd1c08a6c8928d027fb75d51ebf6f9441e3dc33/experiments/Robot_arm/DDPG.py#L101 It somehow passes t_params and e_params to the session..

Hi Morvan, Why do I get totally different performance (see file attached)? Best, Tessa ![a3c_continious](https://user-images.githubusercontent.com/24938569/73439252-a0f35380-434f-11ea-9c97-09761df3ea3a.png)

Hi Matthew! This repo is just great: It works, its transparant and modular! I only found two differences between Ziebart's thesis and your implementation. Can you let me know if...

Hi Oliver! Thanks for the code. How can I modify the stride? I have increased the filter size, but would also control the way the filter goes over the input...

Hi! Is it true that in simple_spread.py collisions are checked with the agents themselves: ` if agent.collide: ` ` for a in world.agents: ` ` if self.is_collision(a, agent): ` line:...

Hi! [Here](https://github.com/openai/multiagent-particle-envs/blob/69ee7f85811c77ee651722bc3c332677b2195da1/multiagent/scenarios/simple_speaker_listener.py#L61) you can find a small type, which you may change from "reward" to "world".

Hi developer(s), Please check out this: https://github.com/openai/multiagent-particle-envs/blob/69ee7f85811c77ee651722bc3c332677b2195da1/multiagent/rendering.py#L232 line 232: ` for p in self.v: glVertex3f(p[0], p[1],0) # draw each vertex ` line 237: ` for p in self.v: glVertex3f(p[0], p[1],0)...

#### Reference issue #### What does this implement/fix? The global optimizers are now also benchmarked on time they take to execute. **How to run?** Please execute the following commands. The...

scipy.optimize
Benchmarks

Hi! Is it correct that you [overwrite](https://github.com/Stefan-Endres/shgo/blob/47936c6ef1a4a369fbf572c3e2c0923166fb8125/shgo/_shgo.py#L790) the symmetry passed? ``` if self.symmetry: self.symmetry = [0, ]*len(self.bounds) ```