Machine Learning Implementation using Java and Tribuo

Introduction to Oracle Tribuo

This is the opening post in a series of four posts. Oracle Tribuo is a Java based, open-source, general purpose machine learning library. It provides tools for various machine learning tasks, such as classification, regression and clustering, as well as natural language processing (NLP). In addition, Tribuo enables Java programs to use models that were trained by Python libraries, such as…

Continue Reading

Machine Learning Implementation using Java and Tribuo

First Tribuo Example—Wine Quality Classifier

This is the second post in a series of four posts. As we saw in Introduction to Supervised Learning, one of the basic machine learning tasks is classification, where we need to map a set of inputs (usually referred to as ‘features’) into two or more categories (or ‘classes’). While typically data for such tasks needs to be collected and…

Continue Reading

Machine Learning Implementation using Java and Tribuo

Going Deeper with Tribuo—Regression, Provenance and Model Serialization

This is the third post in a series of four posts. In the previous post, First Tribuo Example, we saw how to implement a wine quality classifier with Tribuo, a Java-based Machine Learning library. This time, we will use the same dataset to demonstrate how to implement a regressor, and along the way discover a few more capabilities of Tribuo.…

Continue Reading

Machine Learning Implementation using Java and Tribuo

Creating a REST Service for Wine Quality Prediction using Tribuo and SpringBoot

This is the concluding post in a series of four posts. In the previous post, Going Deeper with Tribuo, we created a Random Forest model that was trained to predict the quality of red wine based on the values of eleven given characteristics. This time, we will use this model to create a REST service that will respond with a…

Continue Reading