Machine Learning for Kids
This is an example for combining Machine Learning for Kids with Scratch to perform image recognition. There are two parts to this:
training a machine learning model
completing and using a program in Scratch
Training a machine learning model
To train a machine learning (ML) mode, we use the website Machine Learning for Kids. Go to the login page and either log in if you already have an account, sign up if you want to save your projects, or just try it out without creating an account to get a first idea.
In the next step, got to Projects in the top panel and add a new project. Give it a project name and choose recognizing images as Project Type. As storage choose either your web browser or the cloud depending on what your preferences/needs are. Click Create. If you click on the project you will see the following screen:
Go to Train first to define you classes and collect your samples for training the ML model. In this example, we will train an ML model that can distinguish images of paws that either all point in the same direction or in opposite direction. When all paws point in the same direction, this corresponds to the p1 symmetry of 2D wallpaper groups. Similarly, paws in opposite directions exhibit a p2 symmetry.
Paws in same direction:
p1 symmetry
Paws in opposite direction:
p2 symmetry
Create two new labels by clicking on Add new label and name them, for example, ‘Paws same direction’ and ‘Paws opposite direction’. Images of paw patterns with p1 symmetry can be found here, paw patterns with p2 symmetry are available here. You can simply drag+drop the images from these sides into the corresponding labels.
Once you have collected all samples for the two categories, go back and go to Learn & Test to train the ML model. Simply click Train new machine learning model and wait a few moments for the training to finish. Now the ML model is ready to be used together with Scratch to perform image pattern recognition and distinguish images with paws in p1 and p2 symmetry.
To create a Scratch program using the trained ML model, go back to again and move on to Make. Go to Scratch 3 and Open in Scratch 3 to open a new tab in your browser with Scratch containing the ML elements.
Writing a Scratch program
As a starting point, you can download and use this Scratch example code. Save the file to your computer. Then go back to the Scratch browser tab and load the code example via File -> Load from your computer, which will load the following program:
The programming elements of your trained ML model are available on the left and they need to be incorporated into the provided example code at positions 1, 2, and 3. Assemble the labeled programming elements as shown below:
Now your Scratch progam is ready and you can watch the little dinosaur sort a series of paw pattern images into p1 (same direction) and p2 (opposite direction) symmetries. You can maximize the window showing the dinosaur and press the green flag to start the program. The dinosaur will think for a bit and then proclaim its conclusion with a certain confidence (out of 100).
Feel free to modify the Scratch program and invent new tasks and actions based on image recognition. Have fun!!
Bad training data
A crucial aspect in training ML models is the availability of suitable training data. Even a seemingly simple classification task as sorting paw images into two different patterns can dramatically fail due to inconsistencies in the provided training data. You can try this out yourself by using paw images with p1 and p2 symmetry in black and white only, while the images to be distinguished in the Scratch program are in color. The black and white training data are available here for p1 and here for p2.
Following the same procedure as above and setting up a new ML project on the Machine Learning for Kids website with these biased training data, the little dinosaur in the corresponding Scratch program will fail to distinguish between paws in the same and opposite direction but will almost always declare that the paw pattern exhibits a p1 symmetry (same direction).
This is interesting and somewhat surprising as the only difference between the training data is color vs. black and white images, and it shows that it is not always obvious what the corresponding ML model really learns.