Teach Neural Networks to identify sequences of values
Off We Go!
The compile()
method then readies the learning model for processing, determines mean_squared_error
(deviations from optimal learning success are measured according to the mean square method) as the learning parameter, and sets rmsprop
, a common method for neural networks, as the algorithm optimizer
.
Line 45 then calls the model's fit()
method, passes the learning data to it, and stipulates the number of learning iterations as epoch = 500
. In my lab, a lower number affected the results negatively, but larger values of epoch
did not achieve any greater learning success, since the system reached a steady state afterward, and the learning process visibly stagnated at a constant value for the loss
function.
The section starting in line 48 of Listing 1 then monitors the predictions with the model in the current phase in the training, both for the training data and for previously unseen sequences that the system needs to guess without precedence in the training data.
Figure 7 shows that the network does a good job, even for cyclic data (1,2,3,1,2,3), regardless of the length of the signal period, which is a major advantage over traditional neural networks, for which you have to state the periodicity in advance for reliable predictions.
Fast as a Snail
You need to install the following libraries from the Python treasure trove to be able to install the keras
library:
pip3 install --user keras pandas tensorflow sklearn numpy sudo apt-get install python-tk
The TensorFlow back end used by keras
is not exactly speedy; it took a good 10 seconds for the program to get going and start the training on my five-year-old PC.
At the end of the day, the network did not perform particularly well in the intelligence test (Figure 8; see also the "Online Example" box). As you will have guessed, you need to alternately add 3 and 2 to the existing numbers in the 2,5,7,10,12
series. Since the jump from 10 to 12 was two units in length, a count of three thus needs to be added to predict the next number: 15 is the correct result. The network tended toward 14 most of the time, so it cannot compete with human intelligence (as of yet).
Online Example
Mike Schilli demonstrates the example in a screencast (in German) at: http://www.linux-magazin.de/Ausgaben/2017/10/plus
Infos
- Number sequence test: https://www.fibonicci.com/numerical-reasoning/number-sequences-test/easy/
- Listings for this article: ftp://ftp.linux-magazine.com/pub/listings/linux-magazine.com/206/
- Brownlee, Jason. Long Short-Term Memory Networks with Python: Machine Learning Mastery. 2017, https://machinelearningmastery.com/lstms-with-python/
« Previous 1 2
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.
-
Plasma Desktop Will Soon Ask for Donations
The next iteration of Plasma has reached the soft feature freeze for the 6.2 version and includes a feature that could be divisive.
-
Linux Market Share Hits New High
For the first time, the Linux market share has reached a new high for desktops, and the trend looks like it will continue.
-
LibreOffice 24.8 Delivers New Features
LibreOffice is often considered the de facto standard office suite for the Linux operating system.
-
Deepin 23 Offers Wayland Support and New AI Tool
Deepin has been considered one of the most beautiful desktop operating systems for a long time and the arrival of version 23 has bolstered that reputation.
-
CachyOS Adds Support for System76's COSMIC Desktop
The August 2024 release of CachyOS includes support for the COSMIC desktop as well as some important bits for video.
-
Linux Foundation Adopts OMI to Foster Ethical LLMs
The Open Model Initiative hopes to create community LLMs that rival proprietary models but avoid restrictive licensing that limits usage.
-
Ubuntu 24.10 to Include the Latest Linux Kernel
Ubuntu users have grown accustomed to their favorite distribution shipping with a kernel that's not quite as up-to-date as other distros but that changes with 24.10.
-
Plasma Desktop 6.1.4 Release Includes Improvements and Bug Fixes
The latest release from the KDE team improves the KWin window and composite managers and plenty of fixes.
-
Manjaro Team Tests Immutable Version of its Arch-Based Distribution
If you're a fan of immutable operating systems, you'll be thrilled to know that the Manjaro team is working on an immutable spin that is now available for testing.