Are there any real-world applications of #ReinforcementLearning #RL that *don't* use deep networks? Post examples if you've got'em.
@psc Deep networks are just one parameterization, right? If you choose another parameterization, you could (potentially) update using gradient rules established in reinforcement learning (eg. updating mu, sigma through policy gradient rule assuming a gaussian policy w/ parameters mu, sigma). I don't know if it's popular in real world though. I think that some early IRL work also used non deep network parameterizations for reward functions.
@ashishgaurav_13 before DQN (2015), most of us doing RL were using mostly tabular or linear, using things like tile-coding to deal with large state spaces.