/groovy-data-science

Some Data Science examples using Groovy

Primary LanguageJupyter NotebookApache License 2.0Apache-2.0

Data Science with Groovy

Groovy is a powerful multi-paradigm programming language for the JVM that offers a wealth of features that make it ideal for many data science and big data scenarios.

  • Groovy has a dynamic nature like Python, which means that it is very powerful, easy to learn, and productive. The language gets out of the way and lets data scientists write their algorithms naturally.

  • Groovy has a static nature like Java and Kotlin, which makes it fast when needed. Its close alignment with Java means that you can often just cut-and-paste the Java examples from various big data solutions and they’ll work just fine in Groovy.

  • Groovy has first-class functional support, meaning that it offers features and allows solutions similar to Scala. Functional and stream processing with immutable data structures can offer many advantages when working in parallel processing or clustered environments.

This repo has examples of using Groovy with various Data Science and related libraries.

Math and Data Science libraries and technologies covered include:
Weka, Smile, Apache Commons Math, Jupyter/Beakerx notebooks, Tablesaw, Apache OpenNLP, Deep Learning4J, Choco.

Libraries for scaling, concurrency and machine learning at scale include:
Apache Spark, Apache Ignite, Apache MXNet, GPars, Apache Beam.

Libraries for graphing/visualization include:
Tablesaw Plot.ly support, Smile visualization, JFreeChart, XChart, GroovyFX.

Utility libraries covered include:
OpenCSV, Apache Commons CSV,

House price prediction with regression

Linear regression will enable us to find a "best fit" linear relationship between some properties or features of interest. Ordinary least squares finds such a relationship by minimising residual errors. This example uses linear regression to explore predicting house prices from a number of other features such as number of bedrooms, number of bathrooms, living space etc. The examples illustrate several alternative dataframe libraries, several CVS handling libraries and a number of visualization options.

linear regression house prices

Groovy code examples can be found in the HousePrices subproject. If you have opened the repo in IntelliJ (or your favourite IDE) you should be able to execute the examples directly in the IDE.

Alternatively, you can run the main examples online using a Jupyter/Beakerx notebook: Binder

It can be potentially difficult to scale linear regression. How do you minimise residual errors on data spread across different threads/clusters/CPUs? Some regression algorithm variants like stochastic gradient descent are amenable to scaling. And some frameworks support such algorithms. The following subprojects highlight frameworks with special support for scaling linear regression:

  • The HousePricesIgnite subproject which illustrates scaling up to a cluster using Apache Ignite.

  • The HousePricesSpark subproject which illustrates scaling up to a cluster using Apache Spark.

If you find that your algorithm isn't directly amenable to scaling you can often tweak it or apply it in some fashion to ensure certain constraints hold. This can enable you to still scale up. The following subprojects highlight tweaking linear regression for scaling purposes:

  • The HousePricesBeam subproject which illustrates scaling up to a cluster using Apache Beam.

  • The HousePricesGPars subproject which illustrates scaling up concurrently using GPars.

Requirements: Some examples run only on JDK 8, e.g. examples using GroovyFX. Most others run on JDK 8 or 11.

Whiskey clustering with K-means

K-means is the most common form of “centroid” clustering. Unlike classification, clustering is an unsupervised learning method. The categories are not predetermined but instead represent natural groupings which are found as part of the clustering process. Members of each cluster should be similar to each other and different from the members of the other clusters. The K represents the number of clusters to find. This example uses K-means to look at grouping together similar Whiskey drinks from various distilleries.

Constraint programming

Groovy code examples can be found in the Whiskey subproject. If you have opened the repo in IntelliJ (or your favourite IDE) you should be able to execute the examples directly in the IDE.

Alternatively, you can run the main examples online using a Jupyter/Beakerx notebook: Binder

The complete repo has additional examples using alternative clustering algorithms or visualization options. See also:

  • The WhiskeyIgnite subproject which illustrates scaling up to a cluster using Apache Ignite.

  • The WhiskeySpark subproject which illustrates scaling up to a cluster using Apache Spark.

Natural language processing

Natural language processing may involve language detection, parsing, part-of-speech tagging and other activities. This example makes use of a pre-trained language model to detect the language used for a fragment of text. It uses the Apache OpenNLP library.

Language detection notebook screenshot.groovy

Groovy code examples can be found in the LanguageDetect subproject. If you have opened the repo in IntelliJ (or your favourite IDE) you should be able to execute the examples directly in the IDE.

Alternatively, you can run the example online using a Jupyter/Beakerx notebook: Binder

Digit recognition using neural networks

An artificial neural network consists of layers of nodes which talk to other nodes based on weights and thresholds. It mimics to some degree the way in which neurons are interconnected in biological neural networks. Neural networks are particularly good when some degree of fuzziness is required in the processing activity. They are popular for speech and image recognition and medical diagnosis among other areas. This example looks at using neural networks for digit recognition.

Running Gui.groovy

More details can be found in the Mnist subproject. It contains examples using hand-written neural networks with Apache Commons Math used for matrix calculations and multilayer perceptron examples using Deep Learning4J.

Deep-learning with Apache MXNet

Neural networks with numerous layers of nodes allow for more complex, rich and deeper processing and understanding. This example detects objects within an image. It uses a pre-trained model and the Apache MXNet library.

MXNet.groovy

Groovy code examples can be found in the DeepLearningMxnet subproject. If you have opened the repo in IntelliJ (or your favourite IDE) you should be able to execute the examples directly in the IDE.

Requirements: Unfortunately the MXNet Java Inference API (which is what our Groovy script is using) currently has issues running in Windows. The Scala API has the same issue. Avoid the Windows platform for this example for now.

Diet optimization

Optimization algorithms aren't exclusively related just to data science but never-the-less can crop up quite often. This case study looks at using linear programming to optimize a diet problem. Given the cost and nutrition values of various foods, can we minimise the cost of a diet but still meet various health requirements for the diet. There are examples which use Apache Commons Math, Choco, Ojalgo, and the SAS Groovy integration.

Linear programming

Groovy code examples can be found in the Diet subproject. If you have opened the repo in IntelliJ (or your favourite IDE) you should be able to execute the examples directly in the IDE.

Alternatively, you can run the Apache Commons Math example online using a Jupyter/Beakerx notebook: Binder

Cryptarithmetic puzzle with constraint programming

While not often spoken about as a classic data science technique, constraint programming can be a very useful tool in numerous scenarios. It allows users to specify characteristics of a problem as high-level constraints and then invoke a solution engine which will apply back-tracking, constraint propagation and perhaps heuristics to find a solution matching the constraints. This example solves a classic cryparithmetic puzzle using constraint programming. The Groovy solution is contrasted with brute-force approaches and python solutions.

Constraint programming

Groovy code examples can be found in the SendMoreMoney subproject. If you have opened the repo in IntelliJ (or your favourite IDE) you should be able to execute the examples directly in the IDE.

Alternatively, you can run the examples online using a Jupyter/Beakerx notebook: Binder