AI/ML News & Innovations Hub

AI/ML news, top picks, and generated innovation digests.

★ Visit ai-karthik.com
422Sources
10385News Items
8Top Picks
86Blogs
failedLast Run

Latest AI/ML News

10385 matching items

MIT CSAIL Research 2019-04-29 17:27 UTC Score 56.0 USR-0009-20190429-research-aca-aac386e0 Full article

Giving robots a better feel for object manipulation

Giving robots a better feel for object manipulation rachelg Mon, 04/29/2019 - 13:27 Video April 29 '19 Rob Matheson Model improves a robot’s ability to mold materials into shapes and interact with liquids and solid objects. A new learning system developed by MIT researchers improves robots’ abilities to mold materials into target shapes and make predictions about interacting with solid objects and liquids. The system, known as a learning-based particle simulator, could give industrial robots a more refined touch — and it may have fun applications in personal robotics, such as modelling clay shapes or rolling sticky rice for sushi. In robotic planning, physical simulators are models that capture how different materials respond to force. Robots are “trained” using the models, to predict the outcomes of their interactions with objects, such as pushing a solid box or poking deformable clay. But traditional learning-based simulators mainly focus on rigid objects and are unable to handle fluids or softer objects. Some more accurate physics-based simulators can handle diverse materials, but rely heavily on approximation techniques that introduce errors when robots interact with objects in the real world. In a paper being presented at the International Conference on Learning Representations in May, the researchers describe a new model that learns to capture how small portions of different materials — “particles” — interact when they’re poked and prodded. The model directly learns fr…

Andrej Karpathy Blog 2019-04-25 09:00 UTC Score 46.0 USR-0115-20190425-ai-specialis-9c771960 Full article

A Recipe for Training Neural Networks

Some few weeks ago I posted a tweet on “the most common neural net mistakes”, listing a few common gotchas related to training neural nets. The tweet got quite a bit more engagement than I anticipated (including a webinar :)). Clearly, a lot of people have personally encountered the large gap between “here is how a convolutional layer works” and “our convnet achieves state of the art results”. So I thought it could be fun to brush off my dusty blog to expand my tweet to the long form that this topic deserves. However, instead of going into an enumeration of more common errors or fleshing them out, I wanted to dig a bit deeper and talk about how one can avoid making these errors altogether (or fix them very fast). The trick to doing so is to follow a certain process, which as far as I can tell is not very often documented. Let’s start with two important observations that motivate it. 1) Neural net training is a leaky abstraction It is allegedly easy to get started with training neural nets. Numerous libraries and frameworks take pride in displaying 30-line miracle snippets that solve your data problems, giving the (false) impression that this stuff is plug and play. It’s common see things like: >>> your_data = # plug your awesome dataset here >>> model = SuperCrossValidator ( SuperDuper . fit , your_data , ResNet50 , SGDOptimizer ) # conquer world here These libraries and examples activate the part of our brain that is familiar with standard software - a place where clean API…

Cross Validated 2019-03-19 14:57 UTC Score 12.0 AI-113-20190319-social-media-9c086e1f

Stationary and non-stationary variables in time series - how to difference?

I want to predict a multivariate daily time series, the target output is the volume of packages that is send and the covariates are day specific information as weather, the distance to holidays but as well lagged values of the target variable. The target output time series is not stationary, when I difference it, it is. So my intention was to just difference every variable. However, some of my covariates are already stationary, so differencing makes them non-stationary. I am not really sure if I should difference everything or nothing or just some variables, where the latter sounds not really reasonable to me. Could you please help?

Confidence interval for Population Attributable Fraction with several strata
Cross Validated 2019-03-08 18:45 UTC Score 12.0 AI-113-20190308-social-media-94892830 Full article

Confidence interval for Population Attributable Fraction with several strata

I have used aggregated data to create a table of person-years (pys) and deaths by social class, age and sex. If we consider social class to be a modifiable factor, we can calculate the number of 'expected' deaths in a situation where the low class group has the same mortality rate as the high class group. The difference is the number of attributable deaths. In the example below this is 38, and the Population Attributable Fraction for social class is 38 / 182 = 21%. +-------+-------+--------+------+--------+--------+----------+--------------+ | Class | Age | Sex | Pys | Deaths | Rate | Expected | Attributable | +-------+-------+--------+------+--------+--------+----------+--------------+ | High | Young | Male | 100 | 10 | 0.1 | 10 | 0 | | High | Young | Female | 120 | 12 | 0.1 | 12 | 0 | | High | Old | Male | 40 | 8 | 0.2 | 8 | 0 | | High | Old | Female | 80 | 12 | 0.15 | 12 | 0 | +-------+-------+--------+------+--------+--------+----------+--------------+ | Low | Young | Male | 200 | 30 | 0.15 | 20 | 10 | | Low | Young | Female | 200 | 30 | 0.15 | 20 | 10 | | Low | Old | Male | 160 | 40 | 0.25 | 32 | 8 | | Low | Old | Female | 200 | 40 | 0.2 | 30 | 10 | +-------+-------+--------+------+--------+--------+----------+--------------+ | ALL | ALL | BOTH | 1100 | 182 | 0.1655 | 144 | 38 | +-------+-------+--------+------+--------+--------+----------+--------------+ Do you know how I would calculate a confidence interval for this fraction? It seems straightforward to calculate a P…

Cross Validated 2019-03-06 10:48 UTC Score 28.0 AI-113-20190306-social-media-7fa59d66

k-fold cross validation with multiple classes

I'm working on an image retrieval system (not classification). I have 5,000 images as the data set. 500 images of this dataset are the query images used for retrieval evaluation. these 500 images represent 10 different landmarks. the retrieval evaluation requires to evaluate each landmark using the average precision. and then mean average precision is measured to evaluate the 10 landmarks. However, I have a different number of query images for each landmark. some landmarks have 200 (out of 500) images as a query image and some have only 10. I'm required to divide the 500 query images into 5 folds. My question is how to perform the k-fold cross validation when the query images for each landmark varies from 10 to 200. in other words, how to deal with k-fold cross-validation in multiple classes and the sizes of the classes are different. my work is similar to the evalaution of this paper . EDIT as an example: I have 5000 images represents 10 landmarks. I have 500 query images (out of the 5000 images). The query images are as follows: landmark 1: 50 images (out of the 500). landmark 2: 10 images (out of the 500). landmark 3: 70 images : landmark 10: 200 images. I need to measure the retrieval performance for each landmark. The required number of folds is 5. Which means the 500 are supposed to be divided into 5 folds with 100 each. My question is: how to deal with the query landmarks of different sizes when distributing them across the folds?

MIT CSAIL Research 2018-11-29 18:52 UTC Score 38.0 USR-0009-20181129-research-aca-ed14a407 Full article

Reproducing paintings that make an impression

Reproducing paintings that make an impression rachelg Thu, 11/29/2018 - 13:52 Video November 29 '18 Rachel Gordon CSAIL's new RePaint system aims to faithfully recreate your favorite paintings using deep learning and 3-D printing. The empty frames hanging inside the Isabella Stewart Gardner Museum serve as a tangible reminder of the world’s biggest unsolved art heist. While the original masterpieces may never be recovered, a team from MIT’s Computer Science and Artificial Intelligence Laboratory (CSAIL) might be able to help, with a new system aimed at designing reproductions of paintings. RePaint uses a combination of 3-D printing and deep learning to authentically recreate favorite paintings — regardless of different lighting conditions or placement. RePaint could be used to remake artwork for a home, protect originals from wear and tear in museums, or even help companies create prints and postcards of historical pieces. “If you just reproduce the color of a painting as it looks in the gallery, it might look different in your home,” says Changil Kim, one of the authors on a new paper about the system, which will be presented at ACM SIGGRAPH Asia in December. “Our system works under any lighting condition, which shows a far greater color reproduction capability than almost any other previous work.” To test RePaint, the team reproduced a number of oil paintings created by an artist collaborator. The team found that RePaint was more than four times more accurate than state-of…

NVIDIA Blog 2018-04-12 15:27 UTC Score 29.0 AI-055-20180412-official-ai--79c2f756 Full article

Comment on What’s the Difference Between Ray Tracing and Rasterization? by Polaristar

In reply to Nutti . Yes, but this article discusses the use of ray tracing *in games.* As in, *real-time ray tracing.* We're getting to the point where software and hardware are capable of outputting ray-traced frames at 30 or 60 times a second. This is even explained near the top of the article: "Historically, though, computer hardware hasn’t been fast enough to use these techniques in real time, such as in video games. Moviemakers can take as long as they like to render a single frame, so they do it offline in render farms. Video games have only a fraction of a second. As a result, most real-time graphics rely on another technique, rasterization." This is why it's a pretty historical event.

Andrej Karpathy Blog 2018-01-20 11:00 UTC Score 25.0 USR-0115-20180120-ai-specialis-628db382 Full article

(started posting on Medium instead)

The current state of this blog (with the last post 2 years ago) makes it look like I’ve disappeared. I’ve certainly become less active on blogs since I’ve joined Tesla, but whenever I do get a chance to post something I have recently been defaulting to doing it on Medium because it is much faster and easier. I still plan to come back here for longer posts if I get any time, but I’ll default to Medium for everything short-medium in length. TLDR Have a look at my Medium blog .

MIT CSAIL Research 2017-10-17 17:58 UTC Score 35.0 USR-0009-20171017-research-aca-09c88a8a Full article

Using artificial intelligence to improve early breast cancer detection

Using artificial intelligence to improve early breast cancer detection Anonymous (not verified) Tue, 10/17/2017 - 13:58 Article October 17 '17 Adam Conner-Simons Every year 40,000 women die from breast cancer in the U.S. alone. When cancers are found early, they can often be cured. Mammograms are the best test available, but they’re still imperfect and often result in false positive results that can lead to unnecessary biopsies and surgeries. Every year 40,000 women die from breast cancer in the U.S. alone. When cancers are found early, they can often be cured. Mammograms are the best test available, but they’re still imperfect and often result in false positive results that can lead to unnecessary biopsies and surgeries. One common cause of false positives are so-called “high-risk” lesions that appear suspicious on mammograms and have abnormal cells when tested by needle biopsy. In this case, the patient typically undergoes surgery to have the lesion removed; however, the lesions turn out to be benign at surgery 90 percent of the time. This means that every year thousands of women go through painful, expensive, scar-inducing surgeries that weren’t even necessary . How, then, can unnecessary surgeries be eliminated while still maintaining the important role of mammography in cancer detection? Researchers at MIT’s Computer Science and Artificial Intelligence Laboratory (CSAIL), Massachusetts General Hospital, and Harvard Medical School believe that the answer is to turn to ar…

MIT CSAIL Research 2017-05-01 14:25 UTC Score 40.0 USR-0009-20170501-research-aca-4331151e Full article

Detecting walking speed with wireless signals

Detecting walking speed with wireless signals Anonymous (not verified) Mon, 05/01/2017 - 10:25 Video May 01 '17 Adam Conner-Simons | Rachel Gordon We’ve long known that blood pressure, breathing, body temperature and pulse provide an important window into the complexities of human health. But a growing body of research suggests that another vital sign – how fast you walk – could be a better predictor of health issues like cognitive decline, falls, and even certain cardiac or pulmonary diseases. We’ve long known that blood pressure, breathing, body temperature and pulse provide an important window into the complexities of human health. But a growing body of research suggests that another vital sign – how fast you walk – could be a better predictor of health issues like cognitive decline, falls, and even certain cardiac or pulmonary diseases. Unfortunately, it’s hard to accurately monitor walking speed in a way that’s both continuous and unobtrusive. Professor Dina Katabi’s group at MIT’s Computer Science and Artificial Intelligence Laboratory (CSAIL) has been working on the problem, and believes that the answer is to go wireless. In a new paper, the team presents “WiGait,” a device that can measure the walking speed of multiple people with 95 to 99 percent accuracy using wireless signals. The size of a small painting, the device can be placed on the wall of a person’s house and its signals emit roughly one-hundredth the amount of radiation of a standard cellphone. It builds o…

Disrupt Africa 2017-01-19 10:19 UTC Score 20.0 USR-0197-20170119-regional-new-5cfc4104 Full article

Comment on Dubai fintech accelerator to assist African startups by Dejene Mulugeta

I have new innovative technological solution for drinking water invisible leakage and contamination control system for each house holds and others tap water users. The technology solution is new in the global water sector. I need global financial support and partnership for my project. Many tanks!

Alignment Newsletter 2017-01-08 22:42 UTC Score 25.0 USR-0153-20170108-ai-specialis-8ee5ca74 Full article

Teaching from Simple Abstractions

(You need to know programming to understand this post. If you know what linked lists are, that’s enough to get the general point, but more knowledge would be more helpful.) Within the Programming Languages community, there’s a subcommunity that thinks a lot about education, especially for introductory courses. Two main approaches are SICP approach and […]

Alignment Newsletter 2016-12-20 21:16 UTC Score 25.0 USR-0153-20161220-ai-specialis-9217b3d4 Full article

Thoughts on the “Meta Trap”

Cross-posted to the EA Forum. Thanks to Ajeya Cotra and Jeff Kaufman for feedback on a draft of this post. Any remaining errors are my own. Last year, Peter Hurford wrote a post titled ‘EA risks falling into a “meta trap”. But we can avoid it.’ Ben Todd wrote a followup that clarified a few […]

Disrupt Africa 2016-12-18 17:01 UTC Score 20.0 USR-0197-20161218-regional-new-ba469015 Full article

Comment on 20 startups to pitch to investors at Angel Fair Africa by Dejene Mulugeta

I am working on new innovative technological solution for drinking water saveing system from invisible leakage and contamination control for each house holds and other users. The technological solution is new in the filed and also the world. Now at a time I am finishing prototype and finishing pilot test by domestic level with best result. So how can you advice me to join the global market and to get global partnership and any other support for my project? Pls.email dejenemulugeta50@gmail.com Telephone +251 922844504 Many tanks!

Disrupt Africa 2016-12-11 16:42 UTC Score 25.0 USR-0197-20161211-regional-new-5afec214 Full article

Comment on Kenyan recruitment startup Fuzu raises $1.88m by Dejene Mulugeta

Here I have new innovative technological solution for drinking water saveing systems from invisible leakage and contamination control system for each house holds and other tap water users. the technological solution is new in the field and also the world. so I need funding and partners or any other support for my project. Please email to me dejenemulugeta50@gmail.com Telephone +251 922844504 Many Tanks!

Alignment Newsletter 2016-10-20 23:08 UTC Score 25.0 USR-0153-20161020-ai-specialis-7d970b73 Full article

Almost Vegan

About a year and a half ago, I decided to stop consuming animal products, because of the intense suffering on factory farms. (Why focus on this problem among myriads of others? Jacy from Animal Charity Evaluators explains.) For the most part, I actually found being vegan easier than I thought it would be, though it still wasn’t […]

Andrej Karpathy Blog 2016-09-07 11:00 UTC Score 36.0 USR-0115-20160907-ai-specialis-85602144 Full article

A Survival Guide to a PhD

This guide is patterned after my “Doing well in your courses” , a post I wrote a long time ago on some of the tips/tricks I’ve developed during my undergrad. I’ve received nice comments about that guide, so in the same spirit, now that my PhD has come to an end I wanted to compile a similar retrospective document in hopes that it might be helpful to some. Unlike the undergraduate guide, this one was much more difficult to write because there is significantly more variation in how one can traverse the PhD experience. Therefore, many things are likely contentious and a good fraction will be specific to what I’m familiar with (Computer Science / Machine Learning / Computer Vision research). But disclaimers are boring, lets get to it! Preliminaries First, should you want to get a PhD? I was in a fortunate position of knowing since young age that I really wanted a PhD. Unfortunately it wasn’t for any very well-thought-through considerations: First, I really liked school and learning things and I wanted to learn as much as possible, and second, I really wanted to be like Gordon Freeman from the game Half-Life (who has a PhD from MIT in theoretical physics). I loved that game. But what if you’re more sensible in making your life’s decisions? Should you want to do a PhD? There’s a very nice Quora thread and in the summary of considerations that follows I’ll borrow/restate several from Justin/Ben/others there. I’ll assume that the second option you are considering is joining a medium…

Andrej Karpathy Blog 2016-05-31 11:00 UTC Score 59.0 USR-0115-20160531-ai-specialis-fd04d0db Full article

Deep Reinforcement Learning: Pong from Pixels

--> This is a long overdue blog post on Reinforcement Learning (RL). RL is hot! You may have noticed that computers can now automatically learn to play ATARI games (from raw game pixels!), they are beating world champions at Go , simulated quadrupeds are learning to run and leap , and robots are learning how to perform complex manipulation tasks that defy explicit programming. It turns out that all of these advances fall under the umbrella of RL research. I also became interested in RL myself over the last ~year: I worked through Richard Sutton’s book , read through David Silver’s course , watched John Schulmann’s lectures , wrote an RL library in Javascript , over the summer interned at DeepMind working in the DeepRL group, and most recently pitched in a little with the design/development of OpenAI Gym , a new RL benchmarking toolkit. So I’ve certainly been on this funwagon for at least a year but until now I haven’t gotten around to writing up a short post on why RL is a big deal, what it’s about, how it all developed and where it might be going. Examples of RL in the wild. From left to right : Deep Q Learning network playing ATARI, AlphaGo, Berkeley robot stacking Legos, physically-simulated quadruped leaping over terrain. It’s interesting to reflect on the nature of recent progress in RL. I broadly like to think about four separate factors that hold back AI: Compute (the obvious one: Moore’s Law, GPUs, ASICs), Data (in a nice form, not just out there somewhere on the int…

Oxford Machine Learning Research Group 2016-01-11 17:55 UTC Score 39.0 USR-0027-20160111-research-aca-96a14953 Full article

aisp_new

Autonomous Intelligent Systems This project intertwines Bayesian inference, model-predictive control, distributed information networks, human-in-the-loop and multi-agent systems. The project focuses on the principled handling of uncertainty for distributed modelling in complex environments which are highly dynamic, communication poor, observation costly and time-sensitive. We aim to develop robust, stable, computationally practical and principled approaches which naturally accommodate these rea…

Disrupt Africa 2015-12-22 13:06 UTC Score 17.0 USR-0197-20151222-regional-new-b9f45806 Full article

Comment on Banks face extinction if they don’t find ways to work with fintech startups by Dejene Mulugeta

here I have new innovative technological solution for drinking water invisible leaking and contamination control system for each house hold and other users. the technological solution is new on the field and the world so how can i get support. tanks. best regards. Dejene Mulugeta

Disrupt Africa 2015-12-22 12:59 UTC Score 17.0 USR-0197-20151222-regional-new-2ab39ff2 Full article

Comment on Impact Hub’s Resilience Africa to launch new hubs, incubators by Dejene Mulugeta

here I have new innovative technological solution for drinking water invisible leaking and contamination control system for each house hold and other users. the technological solution is new on the field and the world. so now at a time i need great support. tanks. best regards. Dejene Mulugeta sabeh water save systems and roofing technologies. tell = +251 922844504

Andrej Karpathy Blog 2015-11-14 11:00 UTC Score 27.0 USR-0115-20151114-ai-specialis-46526a97 Full article

Short Story on AI: A Cognitive Discontinuity.

The idea of writing a collection of short stories has been on my mind for a while. This post is my first ever half-serious attempt at a story, and what better way to kick things off than with a story on AI and what that might look like if you extrapolate our current technology and make the (sensible) assumption that we might achieve much more progress with scaling up supervised learning than any other more exotic approach. A slow morning Merus sank into his chair with relief. He listened for the satisfying crackling sound of sinking into the chair’s soft material. If there was one piece of hardware that his employer was not afraid to invest a lot of money into, it was the chairs. With his eyes closed, his mind still dazed, and nothing but the background hum of the office, he became aware of his heart pounding against his chest- an effect caused by running up the stairs and his morning dose of caffeine and taurine slowly engulfing his brain. Several strong beats passed by as he found his mind wandering again to Licia - did she already come in? A sudden beep from his station distracted him - the system finished booting up. A last deep sigh. A stretch. A last sip of his coffee. He opened his eyes, rubbed them into focus and reached for his hardware. “Thank god it’s Friday”, he muttered. It was time to clock in. Fully suited up, he began scrolling past a seemingly endless list of options. Filtering, searching, trying to determine what he was in the mood for. He had worked hard a…

Oxford Machine Learning Research Group 2015-11-05 09:55 UTC Score 36.0 USR-0027-20151105-research-aca-e6c30d21 Full article

application_domains

Applications Current Projects Human Agent Collectives - ORCHID As computation increasingly pervades the world around us, we will increasingly work in partnership with highly inter-connected computational agents that are able to act autonomously and intelligently. Humans and software agents will continually and flexibly establish a range of collaborative relationships with one another, forming human-agent collectives (HACs) to meet their individual and collective goals.

TechCabal 2015-06-14 07:37 UTC Score 12.0 USR-0196-20150614-regional-new-311b6c7b Full article

Comment on Seven Top Nigerian Universities Where Nigerian Developers Come From by Seven Top Nigerian Universities Where Nigerian Developers Come From | WAKAPOST.

[…] Still, we were curious about what universities Nigerian coders come from. So we decided to make a list, based on an informal survey of tech companies and developers who we are familiar with. Some are no surprise, while others that made the list areSeven Top Nigerian Universities Where Nigerian Developers Come From […]

TechCabal 2015-06-11 16:16 UTC Score 12.0 USR-0196-20150611-regional-new-9922f87f Full article

Comment on European Business Angel Network is Ready to Partner with the African Angel Community by Thursday News Roundup: European Business Angel Network ready to support African Angel Community | techcabal.com

[…] European Angel Network Ready to Partner with African Angel Community The European Business Angel Network (EBAN) is ready to the support of the development of the African angel community. […]

Oxford Machine Learning Research Group 2015-06-11 16:04 UTC Score 20.0 USR-0027-20150611-research-aca-ad8775d9 Full article

aamas_2008.pdf - created

TechCabal 2015-06-11 11:31 UTC Score 17.0 USR-0196-20150611-regional-new-fa6d55f6 Full article

Comment on 88mph halts investments in African startups by Africa’s best-known tech funder is taking a break from investing in startups - Quartz

[…] better known locally based pan-African funders, and any sign that it is halting its operations is bad for sentiment in Africa. Barnwell, who stresses that 88mph is merely taking a break, says there is no reason for […]

Oxford Machine Learning Research Group 2013-10-14 16:55 UTC Score 20.0 USR-0027-20131014-research-aca-a9aa633f Full article

wiki:logo.png - created

Oxford Machine Learning Research Group 2012-12-11 12:48 UTC Score 20.0 USR-0027-20121211-research-aca-65fe38dc Full article

microarray.jpg - created

Oxford Machine Learning Research Group 2012-12-11 12:34 UTC Score 20.0 USR-0027-20121211-research-aca-4e4b2d6a Full article

exoplanet.jpg - created