Blog of Andrés Aravena
Dry-Lab:

Learning Machine Learning, session 1

07 October 2018

Keywords

The first session is based on one of my early classes of 2016, available on line.

To get the full idea, I recommend that, before looking at the class, you first read the short story “Funes the Memorious” (by Argentine writer Jorge Luis Borges). You can find it on the web. There is even a PDF in Turkish language. Google “Funes ve Sonsuz Bellek” and look on pages 111-119.

After reading it, do you want to have perfect memory? Why?

Project library

I will keep a small library of relevant books on my office’s bookshelf. These are some of the books:

Books with the theory.
Good book in plain Python.
Also using Python, and ad-hoc libraries such as NumPy, Pandas, and Scikit-learn.

The idea we discuss in these slides is that learning is forgetting. Not in the sense of forgetting memories, but forgetting details. In the Borges’ story, the protagonists has perfect memory and cannot forget any detail. Therefore, Borges concludes, he is incapable of thinking, or of making abstractions.

In this sense, machine learning is programming computers so they can ignore some details and make abstractions, in the sense of classes of objects. If a computer can recognize a dog in a picture, then in some sense the computer has learned the concept of dog, very much like the Platonic model of idea.

We spoke about the two main branches of machine learning: supervised and unsupervised classification. In the first cases we start with some examples of the classes, such as pictures that we know include dogs, and train the computer to find a rule to recognize them. In the second case, we just train with a lot of pictures and let the computer figure out which are the classes.

Datasets

The main reason why machine learning has returned to the forefront1 is the easy access to massive data.

One data source that we mentioned was the Netflix Prize, a contest to improve the recommendation system of this movie provider. The winning team got one million dollar, and the runner up got new business proposals for several times that figure. Recommendation systems are the base of many business models, including Amazon.com, Google and Facebook. These companies are really pushing the science of machine learning, and we will indeed use some of their tools. It is also possible that we will use their infrastructure, in the form of cloud servers. At least, that is the idea.

In our case we will try to use Molecular Biology data, or data for any other scientific question. In particular there is a lot of gene expression data from microarray or RNAseq experiments. We can also use genetic data, if we code it properly.

GitHub

Can Kandemir, one of our co-learners, proposed that we use GitHub for our code. I agree with that idea, it is how things are done today. He will prepare a talk for one of the future sessions.

By coincidence, I had just listened to a podcast that spoke about GitHub and his impact. The speaker is Seth Godin, one of the thinkers I’m following nowadays. The podcast episode also touches other subjects about how technology is changing our world, including Science. You can hear the podcast episode at https://www.akimbo.me/blog/s-2-e-9-distribution-and-cultural-destiny.

Originally published at https://anaraven.bitbucket.io/blog/2018/dry-lab/workshop-session-1.html