Goto

Collaborating Authors

 Education


20-year AI research roadmap calls for lifetime assistants and national labs

#artificialintelligence

The Computing Community Consortium (CCC) has released a draft version of its 20-year roadmap for AI research in the United States. Made after consultation with researchers and tech companies, the roadmap calls for sustained support from the federal government and prescribes a number of steps to ensure the U.S. retains its position as a nation with some of the most advanced AI resources on the planet. The roadmap also supports the development of lifelong personal assistants to augment human ability in education, health care, and industry. According to the roadmap: "โ€ฆ lifelong personal assistants will enable an elderly population to live longer independently, AI health coaches will provide advice for lifestyle choices, customized AI tutors will broaden education opportunities, and AI scientific assistants will dramatically accelerate the pace of discovery." Organizers believe such efforts could promote universal personalized education, accelerate scientific discovery, and drive business innovation.


Mount Olive High School hosts robotics competition

#artificialintelligence

Mount Olive High School hosts its first robotics competition featuring 38 high school teams. Friday's overnight hours should see partly cloudy skies and temperatures are expected to start to significantly cool off. Friday's overnight hours should see partly cloudy skies and temperatures are expected to start to significantly cool off.


Learning Dynamics Model in Reinforcement Learning by Incorporating the Long Term Future

arXiv.org Machine Learning

In model-based reinforcement learning, the agent interleaves between model learning and planning. These two components are inextricably intertwined. If the model is not able to provide sensible long-term prediction, the executed planner would exploit model flaws, which can yield catastrophic failures. This paper focuses on building a model that reasons about the long-term future and demonstrates how to use this for efficient planning and exploration. To this end, we build a latent-variable autoregressive model by leveraging recent ideas in variational inference. We argue that forcing latent variables to carry future information through an auxiliary task substantially improves long-term predictions. Moreover, by planning in the latent space, the planner's solution is ensured to be within regions where the model is valid. An exploration strategy can be devised by searching for unlikely trajectories under the model. Our method achieves higher reward faster compared to baselines on a variety of tasks and environments in both the imitation learning and model-based reinforcement learning settings.


UAlbany Opens New Indoor Drone Lab - Unmanned Aerial

#artificialintelligence

The University of Albany in Upstate New York recently unveiled a two-story, 1,700-square-foot drone lab. The College of Emergency Preparedness, Homeland Security and Cybersecurity (CEHC) hosted an open house last month to launch the lab, located in the basement of Page Hall at the university's downtown campus. The space, enclosed with netting and rubber flooring, offers a controlled indoor environment for unmanned aerial vehicle (UAV) flight training, along with land-based robotics research and educational opportunities. According to a press release from UAlbany, last summer, Brandon Behlendorf, an assistant professor at CEHC, was leaving his office in Richardson Hall when he stumbled upon an aging stairwell on the north corner of the second floor. Wondering where it led, he made his way down five stories to a locked door in the basement.


Reaping Success With Enterprise Machine Learning - Insights From Capital One

#artificialintelligence

Organizations in every industry are rapidly embracing artificial intelligence (AI) to enable and accelerate their business transformation -- with machine learning proving to be foundational to gaining insights - fueled by data. With the advent of GPU-accelerated data science businesses are realizing faster time-to-insight, making organizations more productive and cost-efficient, gaining competitive advantage. Capital One is one such business that has integrated AI and machine learning at scale, even developing its own Machine Learning Center of Excellence, an in-house consolidation of expertise and technology that enables the financial services giant to expand innovation across many businesses. Senior director Zach Hanif shares his insights on what every business should know as they seek to tap into the power of AI and machine learning. Data is the lifeblood of machine learning efforts.


Pros and Cons of Implementing Machine Learning Solutions in Your Product

#artificialintelligence

There are many instances where this will be of huge benefit. For instance, in ecommerce websites and applications, machine learning can be used to produce relevant product recommendations and promotions to users in real-time, based on what they have searched for, purchased, or otherwise engaged with in the past. Social media and news applications and websites can also benefit from machine learning in the same way by recommending relevant content to individual users. In healthcare, ML can be used to predict avoidable hospitalisations, and in the field service industry, the technology is used to pre-empt maintenance requirements on machinery and equipment before failures occur.


Can Artificial Intelligence Prevent School Violence? - IEEE Innovation at Work

#artificialintelligence

More and more frequently, schools across the United States are turning to artificial intelligence-backed solutions to stop tragic acts of student violence. Companies like Bark Technologies, Gaggle.net, and Securly, Inc., are using a combination of artificial intelligence (AI) and machine learning (ML) along with trained human safety experts to scan student emails, texts, documents, and in some cases, social media activity. They're looking for warning signs of cyber bullying, sexting, drug and alcohol use, depression, and to flag students who may pose a violent risk not only to themselves, but to classmates as well. Any potential problems discovered trigger alerts to school administration, parents, and law enforcement officials, depending on the severity. Bark ran a test pilot of its program with 25 schools in fall 2017. Bark chief parent officer, Titania Jordan, says, "We found some pretty alarming issues, including a bombing and school shooting threat."


The Future of AI in the Workplace (Why You Don't Need to Be Scared of Robots)

#artificialintelligence

The use of artificial intelligence (AI) is spreading like wildfire. Not because it's state-of-the-art technology, but because it comes with plenty of valuable benefits. Adopting AI goes far beyond following a trend that boosts your business for a while before a new trend comes along. AI is here to stay, and it's only going to become more advanced and beneficial. According to AI research by MIT Sloan Management Review, 85% of executives believe that AI can help them gain or sustain competitive advantage.


Implementing Gradient Decent using Numpy matrix multiplication

#artificialintelligence

In the previous section, taught you about the log-loss function. There are many other error functions used for neural networks. Let me teach you another one, called the mean squared error. As the name says, this one is the mean of the squares of the differences between the predictions and the labels. In the following section I'll go over it in detail, then we'll get to implement backpropagation with it on the same student admissions dataset. And as a bonus, we'll be implementing this in a very effective way using matrix multiplication with NumPy! We want to find the weights for our neural networks. Let's start by thinking about the goal.


Machine Learning Basics: Building a Regression model in R

#artificialintelligence

The course "Machine Learning Basics: Building a Regression model in R" teaches you all the steps of creating a Linear Regression model, which is the most popular Machine Learning model, to solve business problems. Machine Learning is a field of computer science which gives the computer the ability to learn without being explicitly programmed. It is a branch of artificial intelligence based on the idea that systems can learn from data, identify patterns and make decisions with minimal human intervention. What is the Linear regression technique of Machine learning? Linear Regression is a simple machine learning model for regression problems, i.e., when the target variable is a real value.