Goto

Collaborating Authors

 learndatasci


Home – LearnDataSci

#artificialintelligence

Pulled from the web, here is a our collection of the best, free books on Data Science, Big Data, Data Mining, Machine Learning, Python, R, SQL, NoSQL and more. Let's use the Reddit API to grab news headlines and perform Sentiment Analysis Expanding on the previous article, we'll be looking at how to incorporate recent price behaviors into our strategy In this post, we'll walk through building linear regression models to predict housing prices resulting from economic activity.


Reinforcement Q-Learning from Scratch in Python with OpenAI Gym – LearnDataSci

#artificialintelligence

Essentially, Q-learning lets the agent use the environment's rewards to learn, over time, the best action to take in a given state. In our Taxi environment, we have the reward table, P, that the agent will learn from. It does thing by looking receiving a reward for taking an action in the current state, then updating a Q-value to remember if that action was beneficial. The values store in the Q-table are called a Q-values, and they map to a (state, action) combination. A Q-value for a particular state-action combination is representative of the "quality" of an action taken from that state.