TensorForce: A TensorFlow library for applied reinforcement learning
1–9 of 9 posts
Re: TensorForce: A TensorFlow library for applied reinforcement learning
#2Re: TensorForce: A TensorFlow library for applied reinforcement learning
#3In the past, i've found that these higher level libraries built on top of TF are useful for quick model building, but should be used cautiously. By having default hyperparameters it can be easy to blindly build semi-working models without knowing what's happening. I would recommend either reading the associated papers or implementing the models in code (at least once) before using these pre-built models. That being s…
This is great feedback! I'd love to hear more - if you'd like to send me some examples of what you've seen in the past with pitfalls, I'd love to share them with the team.
Thanks! aronchick (at) google
Re: TensorForce: A TensorFlow library for applied reinforcement learning
#4In the past, i've found that these higher level libraries built on top of TF are useful for quick model building, but should be used cautiously. By having default hyperparameters it can be easy to blindly build semi-working models without knowing what's happening. I would recommend either reading the associated papers or implementing the models in code (at least once) before using these pre-built models. That being s…
Re: TensorForce: A TensorFlow library for applied reinforcement learning
#5In the past, i've found that these higher level libraries built on top of TF are useful for quick model building, but should be used cautiously. By having default hyperparameters it can be easy to blindly build semi-working models without knowing what's happening. I would recommend either reading the associated papers or implementing the models in code (at least once) before using these pre-built models. That being s…
If I understand the project correctly it precisely does not advocate default hyperparameters but exposes all configurations through the declarative interface.
Re: TensorForce: A TensorFlow library for applied reinforcement learning
#6In the past, i've found that these higher level libraries built on top of TF are useful for quick model building, but should be used cautiously. By having default hyperparameters it can be easy to blindly build semi-working models without knowing what's happening. I would recommend either reading the associated papers or implementing the models in code (at least once) before using these pre-built models. That being s…
Re: TensorForce: A TensorFlow library for applied reinforcement learning
#7Earlier quoted context omitted.
If I understand the project correctly it precisely does not advocate default hyperparameters but exposes all configurations through the declarative interface.
I may have used the term hyperparameter too loosely. Yes, this project does a good job on taking a configuration first approach, but even they set some defaults. For example, they set relu as their default layer activation function. I haven't had time to see what other such defaults are being set.
Re: TensorForce: A TensorFlow library for applied reinforcement learning
#8Are there any benchmarks I could check out? Especially for a3c.
Re: TensorForce: A TensorFlow library for applied reinforcement learning
#9This is super cool. Might be replacing something I've been building with it. Are there any benchmarks I could check out? Especially for a3c.