[UdemyCourseDownloader] Advanced AI Deep Reinforcement Learning In Python

Torrent Details

[UdemyCourseDownloader] Advanced AI Deep Reinforcement Learning in Python[UdemyCourseDownloader] Advanced AI Deep Reinforcement Learning in Python

NAME
[UdemyCourseDownloader] Advanced AI Deep Reinforcement Learning in Python.torrent
CATEGORY
Other
INFOHASH
fe088f78acdf4ffac6eb517a79c41348fef3a91d
SIZE
522 MB in 48 files
ADDED
Uploaded on 15-11-2018 by our crawler pet called "Spidey".
SWARM
0 seeders & 0 peers
RATING
No votes yet.

Please login to vote for this torrent.


Description

Description

This course is all about the application of deep learning and neural networks to reinforcement learning.



If you’ve taken my first reinforcement learning class, then you know that reinforcement learning is on the bleeding edge of what we can do with AI.



Specifically, the combination of deep learning with reinforcement learning has led to AlphaGo beating a world champion in the strategy game Go, it has led to self-driving cars, and it has led to machines that can play video games at a superhuman level.



Reinforcement learning has been around since the 70s but none of this has been possible until now.



The world is changing at a very fast pace. The state of California is changing their regulations so that self-driving car companies can test their cars without a human in the car to supervise.



We’ve seen that reinforcement learning is an entirely different kind of machine learning than supervised and unsupervised learning.



Supervised and unsupervised machine learning algorithms are for analyzing and making predictions about data, whereas reinforcement learning is about training an agent to interact with an environment and maximize its reward.



Unlike supervised and unsupervised learning algorithms, reinforcement learning agents have an impetus - they want to reach a goal.



This is such a fascinating perspective, it can even make supervised / unsupervised machine learning and "data science" seem boring in hindsight. Why train a neural network to learn about the data in a database, when you can train a neural network to interact with the real-world?



While deep reinforcement learning and AI has a lot of potential, it also carries with it huge risk.



Bill Gates and Elon Musk have made public statements about some of the risks that AI poses to economic stability and even our existence.



As we learned in my first reinforcement learning course, one of the main principles of training reinforcement learning agents is that there are unintended consequences when training an AI.



AIs don’t think like humans, and so they come up with novel and non-intuitive solutions to reach their goals, often in ways that surprise domain experts - humans who are the best at what they do.



OpenAI is a non-profit founded by Elon Musk, Sam Altman (Y Combinator), and others, in order to ensure that AI progresses in a way that is beneficial, rather than harmful.



Part of the motivation behind OpenAI is the existential risk that AI poses to humans. They believe that open collaboration is one of the keys to mitigating that risk.



One of the great things about OpenAI is that they have a platform called the OpenAI Gym, which we’ll be making heavy use of in this course.



It allows anyone, anywhere in the world, to train their reinforcement learning agents in standard environments.



In this course, we’ll build upon what we did in the last course by working with more complex environments, specifically, those provided by the OpenAI Gym:



CartPole

Mountain Car

Atari games

To train effective learning agents, we’ll need new techniques.



We’ll extend our knowledge of temporal difference learning by looking at the TD Lambda algorithm, we’ll look at a special type of neural network called the RBF network, we’ll look at the policy gradient method, and we’ll end the course by looking at Deep Q-Learning.



Thanks for reading, and I’ll see you in class!



NOTES:



All the code for this course can be downloaded from my github:



/lazyprogrammer/machine_learning_examples



In the directory: rl2



Make sure you always "git pull" so you have the latest version!



HARD PREREQUISITES / KNOWLEDGE YOU ARE ASSUMED TO HAVE:



Calculus

Probability

Object-oriented programming

Python coding: if/else, loops, lists, dicts, sets

Numpy coding: matrix and vector operations

Linear regression

Gradient descent

Know how to build a feedforward, convolutional, and recurrent neural network in Theano and TensorFlow

Markov Decision Proccesses (MDPs)

Know how to implement Dynamic Programming, Monte Carlo, and Temporal Difference Learning to solve MDPs

TIPS (for getting through the course):



Watch it at 2x.

Take handwritten notes. This will drastically increase your ability to retain the information.

Write down the equations. If you don't, I guarantee it will just look like gibberish.

Ask lots of questions on the discussion board. The more the better!

Realize that most exercises will take you days or weeks to complete.

Write code yourself, don't just sit there and look at my code.

-- USEFUL COURSE ORDERING:



(The Numpy Stack in Python)

Linear Regression in Python

Logistic Regression in Python

(Supervised Machine Learning in Python)

(Bayesian Machine Learning in Python: A/B Testing)

Deep Learning in Python

Practical Deep Learning in Theano and TensorFlow

(Supervised Machine Learning in Python 2: Ensemble Methods)

Convolutional Neural Networks in Python

(Easy NLP)

(Cluster Analysis and Unsupervised Machine Learning)

Unsupervised Deep Learning

(Hidden Markov Models)

Recurrent Neural Networks in Python

Artificial Intelligence: Reinforcement Learning in Python

Natural Language Processing with Deep Learning in Python

Advanced AI: Deep Reinforcement Learning in Python

Discussion

Comments 0

Post Your Comment

Files in this torrent

FILENAMESIZE
01 Introduction and Logistics/001 Introduction and Outline.mp415.8 MB
01 Introduction and Logistics/002 Where to get the Code.mp45.2 MB
01 Introduction and Logistics/003 How to Succeed in this Course.mp414.4 MB
02 Background Review/004 Review Intro.mp44.2 MB
02 Background Review/005 Review of Markov Decision Processes.mp412.3 MB
02 Background Review/006 Review of Dynamic Programming.mp46.5 MB
02 Background Review/007 Review of Monte Carlo Methods.mp46.2 MB
02 Background Review/008 Review of Temporal Difference Learning.mp47.1 MB
02 Background Review/009 Review of Approximation Methods for Reinforcement Learning.mp43.7 MB
02 Background Review/010 Review of Deep Learning.mp411 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/011 OpenAI Gym Tutorial.mp48.7 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/012 Random Search.mp410.3 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/013 Saving a Video.mp44.5 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/014 CartPole with Bins Theory.mp46 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/015 CartPole with Bins Code.mp414.7 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/016 RBF Neural Networks.mp416.5 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/017 RBF Networks with Mountain Car Code.mp413.7 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/018 RBF Networks with CartPole Theory.mp43.1 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/019 RBF Networks with CartPole Code.mp48.9 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/020 Theano Warmup.mp45.8 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/021 Tensorflow Warmup.mp45.1 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/022 Plugging in a Neural Network.mp45.9 MB
03 OpenAI Gym and Basic Reinforcement Learning Techniques/023 OpenAI Gym Section Summary.mp45.3 MB
04 TD Lambda/024 N-Step Methods.mp45 MB
04 TD Lambda/025 N-Step in Code.mp49.5 MB
04 TD Lambda/026 TD Lambda.mp411.8 MB
04 TD Lambda/027 TD Lambda in Code.mp47.6 MB
04 TD Lambda/028 TD Lambda Summary.mp43.6 MB
05 Policy Gradients/029 Policy Gradient Methods.mp417.9 MB
05 Policy Gradients/030 Policy Gradient in TensorFlow for CartPole.mp418 MB
05 Policy Gradients/031 Policy Gradient in Theano for CartPole.mp413.4 MB
05 Policy Gradients/032 Continuous Action Spaces.mp46.6 MB
05 Policy Gradients/033 Mountain Car Continuous Specifics.mp46.5 MB
05 Policy Gradients/034 Mountain Car Continuous Theano.mp419.1 MB
05 Policy Gradients/035 Mountain Car Continuous Tensorflow.mp420.1 MB
06 Deep Q-Learning/036 Deep Q-Learning Intro.mp45.9 MB
06 Deep Q-Learning/037 Deep Q-Learning Techniques.mp414.4 MB
06 Deep Q-Learning/038 Deep Q-Learning in Tensorflow for CartPole.mp415 MB
06 Deep Q-Learning/039 Deep Q-Learning in Theano for CartPole.mp413.8 MB
06 Deep Q-Learning/040 Additional Implementation Details for Atari.mp48.5 MB
06 Deep Q-Learning/041 Deep Q-Learning in Tensorflow for Breakout.mp415.8 MB
06 Deep Q-Learning/042 Deep Q-Learning in Theano for Breakout.mp420 MB
06 Deep Q-Learning/043 Partially Observable MDPs.mp47.6 MB
07 Appendix/044 Environment Setup.mp443.9 MB
07 Appendix/045 How to Code by Yourself part 1.mp424.5 MB
07 Appendix/046 How to Code by Yourself part 2.mp414.8 MB
07 Appendix/047 Where to get Udemy coupons and FREE deep learning material.mp44 MB
Udemy Course downloader.txt94 B

Alternative Torrents for 'UdemyCourseDownloader Advanced AI Deep Reinforcement Learning Python'.

There are no alternative torrents found.