The Deep Dojo Machine Learning Blog

A Mac lover's guide to the robot apocalypse.

deeplearning.ai Courses

Coursera launched in 2011. As a co-founder, Andrew Ng offered a course on machine learning that quickly became popular. Six years later, Proffessor Ng is offering a new series of courses in deep learning.

In his post, Arvind Nagaraj offers some observations.

“In classic Ng style, the course is delivered through a carefully chosen curriculum, neatly timed videos and precisely positioned information nuggets. Andrew picks up from where his classic ML course left off.”

He also offers some encouragement.

“Everyone starts in this field as a beginner. If you are a complete newcomer to the deep learning field, it’s natural to feel intimidated by all the jargon and concepts. Please don’t give up.”

Sep 16, 2017

Apple Introduces Face ID

Apple isn’t just a hardware company. It’s not just a software company either. It’s both. I’ve always admired how clever the company is at leveraging that distinction.

The latest iPhone will unlock itself merely by looking at your face.

Continue reading →

Exporting from PyTorch to Core ML

Oleg Poyaganov has implemented a bridge from PyTorch to Core ML using coremltools. The Python package listing can be found here.

Only the nn module from Torch is currently supported but this still converts a range of different layers.

Continue reading →

Godfather of AI

Joe Shute interviews Geoffrey Hinton about the bumpy road at the beginning of his career.

“In a sensibly organised society, if you improve productivity there is room for everybody to benefit. The problem is not the technology, but the way the benefits are shared out.”

Compiling Core ML Models on Device

Camilla Dahlstrøm dives under the hood and reveals some dynamic details of Core ML.

“This post will have a look at the case where the developer wishes to update or insert a model into the application, but avoiding the process of recompiling the entire application. … Several approaches will be discussed, from Apple’s preferred method to less conventional tricks which trade speed and storage efficiency alike.”

Matthijs Hollemans dives into even greater detail.

On the surface, Core ML has the appearance of being fairly static. You bring a trained model file into your project and let Xcode turn it into a runtime solution when your app is built. The details, it turns out, are a bit more dynamic.

Some of these details have even made their way up to public API.

let compiledModelURL = try MLModel.compileModel(at: modelURL)
let model = FlowerClassifier(contentsOf: compiledModelURL)
Aug 16, 2017

Under the Hood of Torch

Back in 2015 interest in Torch was peaking. Around that time, I took a look under the hood to try and map out how the framework was put together.

Continue reading →

The Data Show Podcast Discusses PyTorch

Ben Lorica interviews Soumith Chintala from Facebook who provides some background on frameworks used for training deep learning models.

“Around pre-2014, there were three main frameworks. … They all had their nitch.

Theano was really good as a symbolic compiler. Torch was a framework that would try to be out of your way if you’re a C programmer. You could write your C programs and then just interface it into Lua’s interpreter language. Caffe was very suited to computer vision models. So if you wanted a conv net and you wanted to train it on a large vision dataset, Caffe was your framework.

All three of these frameworks had aging designs. These frameworks were about six or seven years old. It was evident that the field was moving their research in a certain direction and these frameworks and their abstractions weren’t keeping up.

In late 2015, TensorFlow came out. Tensorflow was one of the first professionally built frameworks from the ground up to be open source. … I see Tensorflow as a much better Theano-style framework.”

… [Before that] Deep Mind was using Torch. Facebook. Twitter. Several university labs. The year of 2015 was Torch. The year of 2014 was Caffe. The year of 2016 was TensorFlow in terms of getting the large set of audiences.”

… Keras is a fantastic front end for TensorFlow and Theano and CNTK. You can build neural networks quickly. … It’s a very powerful tool for data scientists who want to remain in Python and never want to go into C or C++.”

Soumith was a significant contributor to Torch and started working on its successor in July 2016.

PyTorch is both a front end and a back end. You can think of PyTorch as something that gives you the ease of use of Keras, or probably more in terms of debugging. And power users can go all the way down to the C level and do hand coded optimizations.

It takes the whole stack of a front end calling a back end to create a neural network. And that back end in turn calls some underlying GPU code or CPU code. And we make that whole stack very flat without many abstractions so that you have a superior user experience.”

How to Break Into Machine Learning

Pete Warden offers advice for turning machine learning into a career.

“I took a very random path to focusing on deep learning full time, but so did most of the people I work with.”

The Story Behind ImageNet

Dave Gershgorn covers the story of Fei-Fei Li and her motivation for creating the dataset.

“In 2009, Li and her team published the ImageNet paper with the dataset — to little fanfare. Li recalls that CVPR, a leading conference in computer vision research, only allowed a poster, instead of an oral presentation, and the team handed out ImageNet-branded pens to drum up interest. People were skeptical of the basic idea that more data would help them develop better algorithms.”

— Dave Gershgorn

Within three years, everything would change.

“If the artificial intelligence boom we see today could be attributed to a single event, it would be the announcement of the 2012 ImageNet challenge results.

Geoffrey Hinton, Ilya Sutskever, and Alex Krizhevsky from the University of Toronto submitted a deep convolutional neural network architecture called AlexNet — still used in research to this day — which beat the field by a whopping 10.8 percentage point margin.”

Machine Learning Resources for iOS

A curated list of over 250 links across 20+ categories from Alex Sosnovshchenko.

“Some of the resources are awesome, some are great, some are fun, and some can serve as an inspiration.”

The most recent update was this month. If you have a GitHub account you can watch the list here.