Goto

Collaborating Authors

 Instructional Material


Everything you need to become a self-taught Machine Learning Engineer

#artificialintelligence

All of these books are 400–500 pages long, with the first two being about statistical ML and the last two being about deep learning. Grab these books and find your people. Look for places that other curious programmers are spending time. For me, that was Bradfield. The kind of person who spends 10–20 hours/week learning is exactly the kind of person I wanted to study with.


SuperPro.AI by Analytics Vidhya

#artificialintelligence

Analytics Vidhya was created with a mission to create the next generation data science ecosystem in India. Today, we help millions of people and stream millions of hours of videos every month. Tens of thousands of people participate in our hackathons every weekend and thousands of people are finding meaningful career opportunities through our portal today. We couldn't thank our community members enough for this. I could not have imagined this impact when we started Analytics Vidhya.


Probabilistic Programming with Python and Julia

#artificialintelligence

You want to know and to learn one of the top 10 most influencial algorithms of the 20th century? Then you are right in this course. We will cover many powerful techniques from the field of probabilistic programming. This field is fast-growing, because these technique are getting more and more famous and proof to be efficient and reliable. We will cover all major fields of Probabilistic Programming: Distributions, Markov Chain Monte Carlo, Gaussian Mixture Models, Bayesian Linear Regression, Bayesian Logistic Regression, and hidden Markov models.


Machine Learning, incl. Deep Learning, with R

#artificialintelligence

Deep Learning, with R Did you ever wonder how machines "learn" – in this course you will find out. Did you ever wonder how machines "learn" – in this course you will find out. For each field, different algorithms are shown in detail: their core concepts are presented in 101 sessions. Here, you will understand how the algorithm works. Then we implement it together in lab sessions.


Unsupervised Deep Learning in Python

#artificialintelligence

Online Courses Udemy Unsupervised Deep Learning in Python, Theano / Tensorflow: Autoencoders, Restricted Boltzmann Machines, Deep Neural Networks, t-SNE and PCA Created by Lazy Programmer Inc. Students also bought Advanced AI: Deep Reinforcement Learning in Python Deep Learning: Recurrent Neural Networks in Python Ensemble Machine Learning in Python: Random Forest, AdaBoost Deep Learning: GANs and Variational Autoencoders Deep Learning Prerequisites: Linear Regression in Python Machine Learning and AI: Support Vector Machines in Python Preview this course GET COUPON CODE Description This course is the next logical step in my deep learning, data science, and machine learning series. I've done a lot of courses about deep learning, and I just released a course about unsupervised learning, where I talked about clustering and density estimation. So what do you get when you put these 2 together? In these course we'll start with some very basic stuff - principal components analysis (PCA), and a popular nonlinear dimensionality reduction technique known as t-SNE (t-distributed stochastic neighbor embedding). Next, we'll look at a special type of unsupervised neural network called the autoencoder.


Artificial Intelligence Video Platforms: Top AI Video Software's In 2020

#artificialintelligence

Video plays an essential role in developing any Platform and application. The evolution and growth of video lead to the development of Artificial Intelligence Video platforms designed for various aspects of their usage over the internet. Artificial Intelligence refers to a broad set of approaches that allow computers to imitate human abilities. Artificial Intelligence uses computers can help to imitate human thinking and decision-making. Artificial Intelligence Video is still away from the independent personalities as we consider and seen in science fiction, the computational power of these systems that are enabling Artificial Intelligence to tackle challenges such as increasingly complex calculations that humans cannot do.


Machine Learning and AI: Support Vector Machines in Python

#artificialintelligence

Created by Lazy Programmer Inc. Created by Lazy Programmer Inc. Support Vector Machines (SVM) are one of the most powerful machine learning models around, and this topic has been one that students have requested ever since I started making courses. These days, everyone seems to be talking about deep learning, but in fact there was a time when support vector machines were seen as superior to neural networks. One of the things you'll learn about in this course is that a support vector machine actually is a neural network, and they essentially look identical if you were to draw a diagram. The toughest obstacle to overcome when you're learning about support vector machines is that they are very theoretical. This theory very easily scares a lot of people away, and it might feel like learning about support vector machines is beyond your ability.


Code-free machine learning: AutoML with AutoGluon, Amazon SageMaker, and AWS Lambda

#artificialintelligence

One of AWS's goals is to put machine learning (ML) in the hands of every developer. With the open-source AutoML library AutoGluon, deployed using Amazon SageMaker and AWS Lambda, we can take this a step further, putting ML in the hands of anyone who wants to make predictions based on data--no prior programming or data science expertise required. AutoGluon automates ML for real-world applications involving image, text, and tabular datasets. AutoGluon trains multiple ML models to predict a particular feature value (the target value) based on the values of other features for a given observation. During training, the models learn by comparing their predicted target values to the actual target values available in the training data, using appropriate algorithms to improve their predictions accordingly.


Artificial Neural Networks with NeuroLab and Python

#artificialintelligence

Artificial Neural Networks with NeuroLab and Python You're going to learn hands-on artificial neural networks with neurolab, a lesser-known and traditional Python library for artificial intelligence. You're going to learn hands-on artificial neural networks with neurolab, a lesser-known and traditional Python library for artificial intelligence. This is a hands-on course and you will be working your way through with Python and Jupyter notebooks. Neurolab is a simple and powerful Neural Network Library for Python. I hold an MS in Civil Engineering and I work as a Cybersecurity Analyst.


A Complete Machine Learning Project Walk-Through in Python

#artificialintelligence

Reading through a data science book or taking a course, it can feel like you have the individual pieces, but don't quite know how to put them together. Taking the next step and solving a complete machine learning problem can be daunting, but preserving and completing a first project will give you the confidence to tackle any data science problem. This series of articles will walk through a complete machine learning solution with a real-world dataset to let you see how all the pieces come together. We'll follow the general machine learning workflow step-by-step: Along the way, we'll see how each step flows into the next and how to specifically implement each part in Python. The complete project is available on GitHub, with the first notebook here. After completing the work, I was offered the job, but then the CTO of the company quit and they weren't able to bring on any new employees. I guess that's how things go on the start-up scene!) The first step before we get coding is to understand the problem we are trying to solve and the available data. In this project, we will work with publicly available building energy data from New York City. The objective is to use the energy data to build a model that can predict the Energy Star Score of a building and interpret the results to find the factors which influence the score. We want to develop a model that is both accurate *-- it can predict the Energy Star Score close to the true value -- and *interpretable -- we can understand the model predictions. Once we know the goal, we can use it to guide our decisions as we dig into the data and build models. Contrary to what most data science courses would have you believe, not every dataset is a perfectly curated group of observations with no missing values or anomalies (looking at you mtcars and iris datasets). Real-world data is messy which means we need to clean and wrangle it into an acceptable format before we can even start the analysis. Data cleaning is an un-glamorous, but necessary part of most actual data science problems.