Yes, if you have prior machine learning experience it should be easy to get started with deep learning. The Deep Learning book should help you, for sure. So would the deep learning summer school. See my other answers, about Yoshua Bengio: How can one get started with machine learning?php
I’d first start off by checking off this checklist: Karlijn Willems' answer to How does a total beginner start to learn machine learning if they have some knowledge of programming languages? , which is concerned with learning Machine Learning.html
The seven following steps (+ resources!), listed below, are included in the answer above.node
It’s clear from step 6 that you never stop learning and since deep learning is a subfield of Machine Learning that is a set of algorithms that is inspired by the structure and function of the brain, deep learning will also fall under this.python
The steps that I outlined will still stay the same, but you’ll probably want to make use of Deep Learning-specific material:ios
Tutorialsgit
Courseses6
Booksgithub
Sitesweb
Videospring
Cheat sheets, infographics, …
Relevant posts, papers, …
Blogs
Podcasts
This is just a small overview; There is much more material out there!
At first, I would recommend you to go through this video that will give you an overall description of Deep Learning in a concise manner:
If you have no prior experience with Machine Learning, you may find it difficult to start with Deep Learning as Deep Learning is a sub-set of Machine Learning. But don’t worry, if you follow proper structure, you will be able to do it conveniently. Now, let me give you a proper structure that I believe one should follow in order to get started with Deep Learning:
You may also start with this introductory blog on Deep Learning that explains idea behind deep learning in a nutshell or you go through the following video on Deep Learning Tutorial:
At last, I want to remind you again about the importance of hands on experience because this is the only way to gain various insights on the working of a neural network. Hope it helps!
We’ve just relaunched a new course on Tensorflow: Creative Applications of Deep Learning with TensorFlow | Kadenze
Unlike other courses, this is an application-led course, teaching you fundamentals of Tensorflow as well as state-of-the-art algorithms by encouraging exploration through the development of creative thinking and creative applications of deep neural networks. We’ve already built a very strong community with an active forum and Slack, where students are able to ask each other questions and learn from each others approaches on the homework. I highly encourage you to try this course. There are plenty of *GREAT* resources for learning Deep Learning and Tensorflow. But this is the only comprehensive online course that will both teach you how to use Tensorflow and develop your creative potential for understanding how to apply the techniques in creating Neural Networks. The feedback has been overwhelmingly positive. Please have a look!
Course Information:
This course introduces you to deep learning: the state-of-the-art approach to building artificial intelligence algorithms. We cover the basic components of deep learning, what it means, how it works, and develop code necessary to build various algorithms such as deep convolutional networks, variational autoencoders, generative adversarial networks, and recurrent neural networks. A major focus of this course will be to not only understand how to build the necessary components of these algorithms, but also how to apply them for exploring creative applications. We'll see how to train a computer to recognize objects in an image and use this knowledge to drive new and interesting behaviors, from understanding the similarities and differences in large datasets and using them to self-organize, to understanding how to infinitely generate entirely new content or match the aesthetics or contents of another image. Deep learning offers enormous potential for creative applications and in this course we interrogate what's possible. Through practical applications and guided homework assignments, you'll be expected to create datasets, develop and train neural networks, explore your own media collections using existing state-of-the-art deep nets, synthesize new content from generative algorithms, and understand deep learning's potential for creating entirely new aesthetics and new ways of interacting with large amounts of data.
SCHEDULE
Session 1: Introduction To Tensorflow
We'll cover the importance of data with machine and deep learning algorithms, the basics of creating a dataset, how to preprocess datasets, then jump into Tensorflow, a library for creating computational graphs built by Google Research. We'll learn the basic components of Tensorflow and see how to use it to filter images.
Session 2: Training A Network W/ Tensorflow
We'll see how neural networks work, how they are "trained", and see the basic components of training a neural network. We'll then build our first neural network and use it for a fun application of teaching a neural network how to paint an image, and explore such a network can be extended to produce different aesthetics.
Session 3: Unsupervised And Supervised Learning
We explore deep neural networks capable of encoding a large dataset, and see how we can use this encoding to explore "latent" dimensions of a dataset or for generating entirely new content. We'll see what this means, how "autoencoders" can be built, and learn a lot of state-of-the-art extensions that make them incredibly powerful. We'll also learn about another type of model that performs discriminative learning and see how this can be used to predict labels of an image.
Session 4: Visualizing And Hallucinating Representations
This sessions works with state of the art networks and sees how to understand what "representations" they learn. We'll see how this process actually allows us to perform some really fun visualizations including "Deep Dream" which can produce infinite generative fractals, or "Style Net" which allows us to combine the content of one image and the style of another to produce widely different painterly aesthetics automatically.
Session 5: Generative Models
The last session offers a teaser into some of the future directions of generative modeling, including some state of the art models such as the "generative adversarial network", and its implementation within a "variational autoencoder", which allows for some of the best encodings and generative modeling of datasets that currently exist. We also see how to begin to model time, and give neural networks memory by creating "recurrent neural networks" and see how to use such networks to create entirely generative text.
What's the most effective way to get started with deep learning?
There has been a great deal of discussion recently about how our educational systems should focus more on deep learning to encourage students to understand subject matter, as opposed to simply memorizing the key terms and basic facts of a subject. Deep learning is the key to developing students' abilities to assimilate and apply what they learn long after they complete a course.
I recommend you this site http://bit.ly/DeepLearningOnline these days is one of the most effective ways to get started with deep learning, there you can find excellent resources to begin.
Typically, neurons are organized in layers. Different layers may perform different kinds of transformations on their inputs. Signals travel from the first (input), to the last (output) layer, possibly after traversing the layers multiple times
Deep learning adds the assumption that these layers of factors correspond to levels ofabstraction or composition. Varying numbers of layers and layer sizes can provide different amounts of abstraction
Learning deeply is all about repetition. It is one formula that never fails you. If it is an audio lesson that you have been given make sure you have heard it with full concentration till you have learnt it completely. Yes, even if you need to do it hundred times. Although it may sound tedious but actually deep learning can be very fun, if you do it the right way.
There are already amazing answers here but what has not been mentioned is that learning never stops, you need to commit to a long learning process. You need to build side projects like build a basic deep learning library from scratch.
Implement backpropagation, stochastic gradient descent (SGD), convolutional neural networks (convNets), long-short-term-memory (LSTM) networks and run them on well known datasets like the MNIST dataset. Implement the mini versions from scratch using your mini DL library.
Trust me DL is not so easy to work with in practice, the theories may ignore the fact that you won't know the right number of layers, you won’t know the right number of neurons per layer before hand. Heck you won't even know that bugs can mess things up, it can be frustratingly nice to build practical systems and you learn a great deal of stuff from that experience.
The debugging process, even though cumbersome, can give you a lot of insights into the working principles of DL architectures. When it finally works, you will transition in a euphoric state, worth the hassle.
As you do that make sure to explore any shortcomings by implementing unique novel approaches into your mini library. That way you will know these things inside out unlike just reading alone. Without practice you will quickly forget the stuff you are reading, practicing is a good way to retain knowledge. Another good technique for knowledge retention is to answer questions about the stuff you are reading, one of the best place to do just that is on Quora, because the audience is diverse from all backgrounds.
The mind is like a library, a library has a lot of books on a variety of literature. That literature needs to be easy to find otherwise the library becomes useless. Thus when you read stuff it is like stocking up books in the library but without sorting them in a manner that is searchable, you risk being unable to find what you are looking for in the future, in short you will forget easily without practice.
Answering questions and practicing is like rearranging the books in the mental library so that you can quickly relate that knowledge more effortlessly and efficiently to the problems you encounter in the field. Your knowledge becomes indexed like Google search when you practice and answer questions.
Of course don't just jump into implementation, get an overview of deep learning, which is just about stacking many processing layers one atop the other, by reading some introductory stuff as most answers have pointed out. It is even easier if you have knowledge in machine learning (ML) because DL architectures are just neural networks so it is not such a big deal for someone with knowledge in ML.
You can even quickly implement them by treating them as a black box. Use well known libraries like TensorFlow to implement them in this manner. In fact once you have done your mini-library and have some more in depth understanding of DL architectures it is now okay to implement them using such high-level libraries and treating them as black-boxes. Because your focus at this point is the high-level understanding of a wide range of DL architectures.
And finally try to apply DL to a real-world problem. Find something you want to solve in which DL can be a module or can solve the whole problem altogether. Start that side project as a GitHub open-source project or a personal project.
Like I am trying to build a sign language interpreter using convNets + LSTMs + my own ideas on mobile devices. It is such a challenging project that it has pushed me to the extreme, it motivates me to read new research papers, implement stuff and see how they work in real life and be just actively pursuing a long term go, which makes me happy in the end.
You can also get into competitions such as Kaggle or other competitions for the sake of practicing and not just winning.
Hope this helps.
Baby Steps for Deep Learning with Python:
You can learn Deep Learning by Online . There are Various Online Courses , i will Suggest you Best Deep Learning Online Courses
Deep Learning A-Z™: Hands-On Artificial Neural Networks [BEST]
*** As seen on Kickstarter ***
Artificial intelligence is growing exponentially. There is no doubt about that. Self-driving cars are clocking up millions of miles, IBM Watson is diagnosing patients better than armies of doctors and Google Deepmind's AlphaGo beat the World champion at Go - a game where intuition plays a key role.
But the further AI advances, the more complex become the problems it needs to solve. And only Deep Learning can solve such complex problems and that's why it's at the heart of Artificial intelligence.
--- Why Deep Learning A-Z? ---
Here are five reasons we think Deep Learning A-Z™ really is different, and stands out from the crowd of other training programs out there:
1. ROBUST STRUCTURE
The first and most important thing we focused on is giving the course a robust structure. Deep Learning is very broad and complex and to navigate this maze you need a clear and global vision of it.
That's why we grouped the tutorials into two volumes, representing the two fundamental branches of Deep Learning: Supervised Deep Learning and Unsupervised Deep Learning. With each volume focusing on three distinct algorithms, we found that this is the best structure for mastering Deep Learning.
2. INTUITION TUTORIALS
So many courses and books just bombard you with the theory, and math, and coding... But they forget to explain, perhaps, the most important part: why you are doing what you are doing. And that's how this course is so different. We focus on developing an intuitive *feel*for the concepts behind Deep Learning algorithms.
With our intuition tutorials you will be confident that you understand all the techniques on an instinctive level. And once you proceed to the hands-on coding exercises you will see for yourself how much more meaningful your experience will be. This is a game-changer.
3. EXCITING PROJECTS
Are you tired of courses based on over-used, outdated data sets?
Yes? Well then you're in for a treat.
Inside this class we will work on Real-World datasets, to solve Real-World business problems. (Definitely not the boring iris or digit classification datasets that we see in every course). In this course we will solve six real-world challenges:
*Stacked Autoencoders is a brand new technique in Deep Learning which didn't even exist a couple of years ago. We haven't seen this method explained anywhere else in sufficient depth.
==> Deep Learning Specialization by Andrew Ng Co-founder, Coursera
If you want to break into AI, this Specialization will help you do so. Deep Learning is one of the most highly sought after skills in tech. We will help you become good at Deep Learning.
In five courses, you will learn the foundations of Deep Learning, understand how to build neural networks, and learn how to lead successful machine learning projects. You will learn about Convolutional networks, RNNs, LSTM, Adam, Dropout, BatchNorm, Xavier/He initialization, and more. You will work on case studies from healthcare, autonomous driving, sign language reading, music generation, and natural language processing. You will master not only the theory, but also see how it is applied in industry. You will practice all these ideas in Python and in TensorFlow, which we will teach.
You will also hear from many top leaders in Deep Learning, who will share with you their personal stories and give you career advice.
AI is transforming multiple industries. After finishing this specialization, you will likely find creative ways to apply it to your work.
We will help you master Deep Learning, understand how to apply it, and build a career in AI.
Relevant Courses
1. Zero to Deep Learning™ with Python and Keras]
2. Data Science: Deep Learning in Python
All The Best .
I think the best way to get started with Deep Learning is to fully understand the problems it arose to solve. The most important point being that Deep Learning is hierarchical feature learning.
Deep learning models are able to automatically extract features from raw data, otherwise know as feature feature learning.
Yoshua Bengio describes deep learning in terms of its capability to uncover and learn good representations:
Deep learning algorithms seek to exploit the unknown structure in the input distribution in order to discover good representations, often at multiple levels, with higher-level learned features defined in terms of lower-level features
This quote is from his 2012 paper titled 「Deep Learning of Representations for Unsupervised and Transfer Learning」, which I would recommend as a starting point to anyone with a background in machine learning.
If you are looking for a full curriculum, take a look at the open-source Deep Learning curriculum.
As soon as you are familiar with the core concepts dive into a project where you are forced to implement the algorithms, deep learning mastery is a great place to start How to Run Your First Classifier in Weka - Machine Learning Mastery
Happy learning and hacking.
Get Started with deep learning through this course. This is one of the best selling course on Deep learning all over the Internet. Let’s see what you will learn through this course-
What Will You Learn?
Course Link-Deep Learning A-Z™: Hands-On Artificial Neural Networks | Learn to create Deep Learning Algorithms in Python
Learn to create Deep Learning Algorithms in Python from two Machine Learning & Data Science experts. Templates included.
Course Description By Course Instructor-
Artificial intelligence is growing exponentially. There is no doubt about that. Self-driving cars are clocking up millions of miles, IBM Watson is diagnosing patients better than armies of doctors and Google Deepmind's AlphaGo beat the World champion at Go - a game where intuition plays a key role.
But the further AI advances, the more complex become the problems it needs to solve. And only Deep Learning can solve such complex problems and that's why it's at the heart of Artificial intelligence.
--- Why Deep Learning A-Z? ---
Here are five reasons we think Deep Learning A-Z™ really is different, and stands out from the crowd of other training programs out there:
1. ROBUST STRUCTURE
The first and most important thing we focused on is giving the course a robust structure. Deep Learning is very broad and complex and to navigate this maze you need a clear and global vision of it.
That's why we grouped the tutorials into two volumes, representing the two fundamental branches of Deep Learning: Supervised Deep Learning and Unsupervised Deep Learning. With each volume focusing on three distinct algorithms, we found that this is the best structure for mastering Deep Learning.
2. INTUITION TUTORIALS
So many courses and books just bombard you with the theory, and math, and coding... But they forget to explain, perhaps, the most important part: why you are doing what you are doing. And that's how this course is so different. We focus on developing an intuitive *feel*for the concepts behind Deep Learning algorithms.
With our intuition tutorials you will be confident that you understand all the techniques on an instinctive level. And once you proceed to the hands-on coding exercises you will see for yourself how much more meaningful your experience will be. This is a game-changer.
3. EXCITING PROJECTS
Are you tired of courses based on over-used, outdated data sets?
Yes? Well then you're in for a treat.
Inside this class we will work on Real-World datasets, to solve Real-World business problems. (Definitely not the boring iris or digit classification datasets that we see in every course). In this course we will solve six real-world challenges:
*Stacked Autoencoders is a brand new technique in Deep Learning which didn't even exist a couple of years ago. We haven't seen this method explained anywhere else in sufficient depth.
4. HANDS-ON CODING
In Deep Learning A-Z™ we code together with you. Every practical tutorial starts with a blank page and we write up the code from scratch. This way you can follow along and understand exactly how the code comes together and what each line means.
In addition, we will purposefully structure the code in such a way so that you can download it and apply it in your own projects. Moreover, we explain step-by-step where and how to modify the code to insert YOUR dataset, to tailor the algorithm to your needs, to get the output that you are after.
This is a course which naturally extends into your career.
5. IN-COURSE SUPPORT
Have you ever taken a course or read a book where you have questions but cannot reach the author?
Well, this course is different. We are fully committed to making this the most disruptive and powerful Deep Learning course on the planet. With that comes a responsibility to constantly be there when you need our help.
In fact, since we physically also need to eat and sleep we have put together a team of professional Data Scientists to help us out. Whenever you ask a question you will get a response from us within 48 hours maximum.
No matter how complex your query, we will be there. The bottom line is we want you to succeed.
--- The Tools ---
Tensorflow and Pytorch are the two most popular open-source libraries for Deep Learning. In this course you will learn both!
TensorFlow was developed by Google and is used in their speech recognition system, in the new google photos product, gmail, google search and much more. Companies using Tensorflow include AirBnb, Airbus, Ebay, Intel, Uber and dozens more.
PyTorch is as just as powerful and is being developed by researchers at Nvidia and leading universities: Stanford, Oxford, ParisTech. Companies using PyTorch include Twitter, Saleforce and Facebook.
So which is better and for what?
Well, in this course you will have an opportunity to work with both and understand when Tensorflow is better and when PyTorch is the way to go. Throughout the tutorials we compare the two and give you tips and ideas on which could work best in certain circumstances.
The interesting thing is that both these libraries are barely over 1 year old. That's what we mean when we say that in this course we teach you the most cutting edge Deep Learning models and techniques.
--- More Tools ---
Theano is another open source deep learning library. It's very similar to Tensorflow in its functionality, but nevertheless we will still cover it.
Keras is an incredible library to implement Deep Learning models. It acts as a wrapper for Theano and Tensorflow. Thanks to Keras we can create powerful and complex Deep Learning models with only a few lines of code. This is what will allow you to have a global vision of what you are creating. Everything you make will look so clear and structured thanks to this library, that you will really get the intuition and understanding of what you are doing.
--- Even More Tools ---
Scikit-learn the most practical Machine Learning library. We will mainly use it:
And of course, we have to mention the usual suspects. This whole course is based on Python and in every single section you will be getting hours and hours of invaluable hands-on practical coding experience.
Plus, throughout the course we will be using Numpy to do high computations and manipulate high dimensional arrays, Matplotlib to plot insightful charts and Pandas to import and manipulate datasets the most efficiently.
--- Who Is This Course For? ---
As you can see, there are lots of different tools in the space of Deep Learning and in this course we make sure to show you the most important and most progressive ones so that when you're done with Deep Learning A-Z™ your skills are on the cutting edge of today's technology.
If you are just starting out into Deep Learning, then you will find this course extremely useful. Deep Learning A-Z™ is structured around special coding blueprint approaches meaning that you won't get bogged down in unnecessary programming or mathematical complexities and instead you will be applying Deep Learning techniques from very early on in the course. You will build your knowledge from the ground up and you will see how with every tutorial you are getting more and more confident.
If you already have experience with Deep Learning, you will find this course refreshing, inspiring and very practical. Inside Deep Learning A-Z™ you will master some of the most cutting-edge Deep Learning algorithms and techniques (some of which didn't even exist a year ago) and through this course you will gain an immense amount of valuable hands-on experience with real-world business challenges. Plus, inside you will find inspiration to explore new Deep Learning skills and applications.
--- Real-World Case Studies ---
Mastering Deep Learning is not just about knowing the intuition and tools, it's also about being able to apply these models to real-world scenarios and derive actual measurable results for the business or project. That's why in this course we are introducing six exciting challenges:
#1 Churn Modelling Problem
In this part you will be solving a data analytics challenge for a bank. You will be given a dataset with a large sample of the bank's customers. To make this dataset, the bank gathered information such as customer id, credit score, gender, age, tenure, balance, if the customer is active, has a credit card, etc. During a period of 6 months, the bank observed if these customers left or stayed in the bank.
Your goal is to make an Artificial Neural Network that can predict, based on geo-demographical and transactional information given above, if any individual customer will leave the bank or stay (customer churn). Besides, you are asked to rank all the customers of the bank, based on their probability of leaving. To do that, you will need to use the right Deep Learning model, one that is based on a probabilistic approach.
If you succeed in this project, you will create significant added value to the bank. By applying your Deep Learning model the bank may significantly reduce customer churn.
#2 Image Recognition
In this part, you will create a Convolutional Neural Network that is able to detect various objects in images. We will implement this Deep Learning model to recognize a cat or a dog in a set of pictures. However, this model can be reused to detect anything else and we will show you how to do it - by simply changing the pictures in the input folder.
For example, you will be able to train the same model on a set of brain images, to detect if they contain a tumor or not. But if you want to keep it fitted to cats and dogs, then you will literally be able to a take a picture of your cat or your dog, and your model will predict which pet you have. We even tested it out on Hadelin’s dog!
#3 Stock Price Prediction
In this part, you will create one of the most powerful Deep Learning models. We will even go as far as saying that you will create the Deep Learning model closest to 「Artificial Intelligence」. Why is that? Because this model will have long-term memory, just like us, humans.
The branch of Deep Learning which facilitates this is Recurrent Neural Networks. Classic RNNs have short memory, and were neither popular nor powerful for this exact reason. But a recent major improvement in Recurrent Neural Networks gave rise to the popularity of LSTMs (Long Short Term Memory RNNs) which has completely changed the playing field. We are extremely excited to include these cutting-edge deep learning methods in our course!
In this part you will learn how to implement this ultra-powerful model, and we will take the challenge to use it to predict the real Google stock price. A similar challenge has already been faced by researchers at Stanford University and we will aim to do at least as good as them.
#4 Fraud Detection
According to a recent report published by Markets & Markets the Fraud Detection and Prevention Market is going to be worth $33.19 Billion USD by 2021. This is a huge industry and the demand for advanced Deep Learning skills is only going to grow. That’s why we have included this case study in the course.
This is the first part of Volume 2 - Unsupervised Deep Learning Models. The business challenge here is about detecting fraud in credit card applications. You will be creating a Deep Learning model for a bank and you are given a dataset that contains information on customers applying for an advanced credit card.
This is the data that customers provided when filling the application form. Your task is to detect potential fraud within these applications. That means that by the end of the challenge, you will literally come up with an explicit list of customers who potentially cheated on their applications.
#5 & 6 Recommender Systems
From Amazon product suggestions to Netflix movie recommendations - good recommender systems are very valuable in today's World. And specialists who can create them are some of the top-paid Data Scientists on the planet.
We will work on a dataset that has exactly the same features as the Netflix dataset: plenty of movies, thousands of users, who have rated the movies they watched. The ratings go from 1 to 5, exactly like in the Netflix dataset, which makes the Recommender System more complex to build than if the ratings were simply 「Liked」 or 「Not Liked」.
Your final Recommender System will be able to predict the ratings of the movies the customers didn’t watch. Accordingly, by ranking the predictions from 5 down to 1, your Deep Learning model will be able to recommend which movies each user should watch. Creating such a powerful Recommender System is quite a challenge so we will give ourselves two shots. Meaning we will build it with two different Deep Learning models.
Our first model will be Deep Belief Networks, complex Boltzmann Machines that will be covered in Part 5. Then our second model will be with the powerful AutoEncoders, my personal favorites. You will appreciate the contrast between their simplicity, and what they are capable of.
And you will even be able to apply it to yourself or your friends. The list of movies will be explicit so you will simply need to rate the movies you already watched, input your ratings in the dataset, execute your model and voila! The Recommender System will tell you exactly which movies you would love one night you if are out of ideas of what to watch on Netflix!
--- Summary ---
In conclusion, this is an exciting training program filled with intuition tutorials, practical exercises and real-World case studies.
We are super enthusiastic about Deep Learning and hope to see you inside the class!
Kirill & Hadelin
Who is the target audience?
Requirements
Course Link-Deep Learning A-Z™: Hands-On Artificial Neural Networks | Learn to create Deep Learning Algorithms in Python
Hi, I could not get the context of the question though. Are you saying, get started with deep learning for business purpose or wanted to learn, how to apply while building techs and products. To get started with deep learning, you can do the following:
Keep practicing, learn new, try new ideas. Will help further.
I tried to cover than in Learning Deep Learning with Keras.
In short: I recommend from image classification on simple datasets (especially notMNIST) with a high-level library such as Keras.
An alternative would be to go from lower lever, e.g. TensorFlow and building neural networks as multi-dimensional array expressions - but only when one has mathematical background (and ‘fun’ part will happen later).
Assuming you a software engineer looking to up your game with DL.
Here is what you can do -
You might need a GPU machine as you progress in learning.
Consider signing up AmpLabs - Up your game if you can wait. This is something I have been working on.
Our Company has created Deep Learning Studio - A UI based drag and drop tool to create Deep Learning Models. Check it out at Visual Deep Learning in Cloud without Programming
The best part is you do not need to know coding or learn about tools like Tensorflow
You will need to know about Deep Learning concepts though. We are in process of building a Deep Learning course that can help get started with our tool ( if you are new to Deep Learning)
Apart from cloud version we have just started shipping out Desktop and Enterprise ( Can run Locally) version
There are few other companies who are trying to create a UI based tool for Deep learning but they are quite behind in terms of maturity of the tool
Mahesh Kashyap
Chief Digital Officer
Deep Cognition, Inc.
Being open-minded, understanding that all the 「magic」 is mathematics and a deep learning algorithm is a complex NN.
Knowing that, I recommend you to search for free online courses on Coursera, Udacity, Big Data University, etc… Beginning to use some library (Tensorflow, Caffe, Pytorch…) will give you some skills to understand better how they work on high level, and reading papers on low level. So, you have to choose the road you take, but, to start, online courses are the best.
I would suggest two possible paths. The first one is based on a bunch of 6 courses on Udemy :
1. Deep Learning Prerequisites: Linear Regression in Python
2. Ensemble Machine Learning in Python: Random Forest, AdaBoost
3. Deep Learning Prerequisites: Logistic Regression in Python
4. Data Science: Deep Learning in Python - Udemy
5.Deep Learning: Convolutional Neural Networks in Python
6.Data Science: Practical Deep Learning in Theano + TensorFlow
The second one is the new Nanodegree offered by Udacity : Deep Learning Nanodegree Foundation | Udacity
I hope that I could help :)
Please don’t build a chatbot. The tech isn’t mature and you won’t get good results.
Here’s a list of resources for people starting out with deep learning:
The most comprehensive source of information on Deep Learning I’ve found is StanfordCS231 class. Just watch all lectures and do all assignments.
The best way to start to learn deep learning is to read this book from beginning to end: Deep Learning .
Hi i am a director at TECLOV (GeeksHub Pvt Ltd). We provides online courses for Machine Learning and Deep Learning. We have IIT’ian and MIT’ian teachers who provides basic as well as advanced topics . Can visit our site : Home | Teclov for whole syllabus. As we are a startup so we are providing great offers .Must visit.
Recently I have started reading and found very useful:
A Complete Guide on Getting Started with Deep Learning in Python