Goto

Collaborating Authors

 Instructional Material


TensorFlow - Hands-on Machine Learning with TensorFlow

#artificialintelligence

Preview this course - GET COUPON CODE Learn how to build Machine Learning projects in this TensorFlow Course created by The Click Reader. In this course, you will be learning about Scalar as well as Tensors and how to create them using TensorFlow. You will also be learning how to perform various kinds of Tensor operations for manipulating and changing tensor values. You will be performing a total of three Machine Learning projects while learning through this TensorFlow full course: 1. Linear Regression from Scratch You will be learning how to create a Linear Regression model from scratch using TensorFlow. You will be preparing the data, building the model architecture as well as training the model using a custom-made loss function as well as an optimizer.


Deep Learning: Recurrent Neural Networks in Python

#artificialintelligence

Created by Lazy Programmer Inc. English [Auto-generated], Indonesian [Auto-generated], 5 more Created by Lazy Programmer Inc. Like the course I just released on Hidden Markov Models, Recurrent Neural Networks are all about learning sequences - but whereas Markov Models are limited by the Markov assumption, Recurrent Neural Networks are not - and as a result, they are more expressive, and more powerful than anything we've seen on tasks that we haven't made progress on in decades. So what's going to be in this course and how will it build on the previous neural network courses and Hidden Markov Models? In the first section of the course we are going to add the concept of time to our neural networks. I'll introduce you to the Simple Recurrent Unit, also known as the Elman unit.


OpenCV Super Resolution with Deep Learning - PyImageSearch

#artificialintelligence

In this tutorial you will learn how to perform super resolution in images and real-time video streams using OpenCV and Deep Learning. Today's blog post is inspired by an email I received from PyImageSearch reader, Hisham: "Hi Adrian, I read your Deep Learning for Computer Vision with Python book and went through your super resolution implementation with Keras and TensorFlow. It was super helpful, thank you. Are there any pre-trained super resolution models compatible with OpenCV's dnn module? Can they work in real-time? If you have any suggestions, that would be a big help."


AI in Healthcare

#artificialintelligence

Offered by Stanford University. Artificial intelligence (AI) has transformed industries around the world, and has the potential to radically alter the field of healthcare. Imagine being able to analyze data on patient visits to the clinic, medications prescribed, lab tests, and procedures performed, as well as data outside the health system -- such as social media, purchases made using credit cards, census records, Internet search activity logs that contain valuable health information, and youโ€™ll get a sense of how AI could transform patient care and diagnoses. In this specialization, we'll discuss the current and future applications of AI in healthcare with the goal of learning to bring AI technologies into the clinic safely and ethically. This specialization is designed for both healthcare providers and computer science professionals, offering insights to facilitate collaboration between the disciplines. CME Accreditation The Stanford University School of Medicine is accredited by the Accreditation Council for Continuing Medical Education (ACCME) to provide continuing medical education for physicians. View the full CME accreditation information on the individual course FAQ page.


Free MOOC Course

#artificialintelligence

The elements of AI is a free online course for everyone interested in learning what AI is, what is possible (and not possible) with AI, and how it affects our lives โ€“ with no complicated math or programming required. By completing the course you can earn a LinkedIn certificate. People in Finland can also earn 2 ECTS credits through the Open University. The course is available from May 14, 2018.


LemonadeLXP Partners with The Edcomm Group to Offer Compliance Training Courses

#artificialintelligence

LemonadeLXP, the learning experience and digital adoption platform for financial institutions, has partnered with The Edcomm Group, a global provider of training solutions to the financial community, to provide compliance and regulatory training through the LemonadeLXP platform. These courses include recommended and required regulatory training courses, such as Bank Secrecy Act (BSA) and Anti-Money Laundering (AML) training, designed for specific job roles within a financial institution. "LemonadeLXP is making a tremendous splash in the financial services community, and we look forward to providing an all-inclusive, cutting-edge training solution through this collaboration," said Brian Morgan, senior manager of client success at The Edcomm Group. "We are excited to deliver our comprehensive catalog of high-quality courses through LemonadeLXP's robust learning experience platform." Through this partnership, LemonadeLXP clients are now able to deliver effective compliance training within an engaging game-based environment.


AI Leaders Lunchtime Lecture Series โ€“ Dragoศ™ Tudorache

#artificialintelligence

On Tuesday 17 November techUK will be hosting its sixth AI Leaders Lunchtime Lecture with Dragoศ™ Tudorache Member of the European Parliament (MEP) and Chair of the Special Committee on Artificial Intelligence in the Digital Age (AIDA). During this virtual hour-long session Dragoศ™ will provide his thoughts on the latest developments, and opportunities in Europe for AI and key challenges or issues that need to be addressed to ensure we get our AI future right. These AI Leaders Lunchtime Lectures present the chance for attendees not just to increase their own knowledge and understanding of the latest development and innovations in AI but also to raise questions and issues for discussion. So grab a sandwich, login and spend your lunchbreak learning from the best minds in the community! If you would like to join techUK's lunchtime AI Leader's seminar with Dragoศ™, please register to receive dial-in details.


Advancing AI for Earth Science: A Data Systems Perspective - Eos

#artificialintelligence

Helping address these problems, however, is a wealth of data sets--containing atmospheric, environmental, oceanographic, and other information--that are mostly open and publicly available. This fortuitous combination of pressing challenges and plentiful data is leading to the increased use of data-driven approaches, including machine learning (ML) models, to solve Earth science problems. Machine learning, a type of artificial intelligence (AI) in which computers learn from data, has been applied in many domains of Earth science (Figure 1). In traditional Earth science modeling, researchers use a top-down approach based on our understanding of the physical world and the laws that govern it. This approach allows us to interpret model outputs, yet it can be limited by the sheer amount of computing power required to solve large problems and by the difficulty of finding patterns where we don't expect them.


Python - The Practical Guide

#artificialintelligence

All the base Python syntax you need to know (variables, operators, functions, ...)


How to Identify Overfitting Machine Learning Models in Scikit-Learn

#artificialintelligence

Overfitting is a common explanation for the poor performance of a predictive model. An analysis of learning dynamics can help to identify whether a model has overfit the training dataset and may suggest an alternate configuration to use that could result in better predictive performance. Performing an analysis of learning dynamics is straightforward for algorithms that learn incrementally, like neural networks, but it is less clear how we might perform the same analysis with other algorithms that do not learn incrementally, such as decision trees, k-nearest neighbors, and other general algorithms in the scikit-learn machine learning library. In this tutorial, you will discover how to identify overfitting for machine learning models in Python. Identify Overfitting Machine Learning Models With Scikit-Learn Photo by Bonnie Moreland, some rights reserved.