Recently I was working on a project using F# and Elasticsearch. I thought it would be fun to post a light introduction. Nicely enough, Elastic provides a .NET client, two actually here. They are a combination of low level and high level interfaces. As is sometimes the case, using F# and C#-style libraries requires some clever navigation of the interface. For this post I will only focus on the high level interface (NEST).
F# and ML.NET Clustering
Read Time: 13 minutesF# and ML.NET Classification
Read Time: 12 minutesExpanding on my previous post, F# and ML.NET Regression, the current post will take a look at performing classification using Microsoft’s new ML.NET framework. The task at hand will be to use biomechanical attributes to classify patient vertebra conditions into normal (NO), disk hernia (DH), or spondilolysthesis (SL) categories.
F# and ML.NET Regression
Read Time: 13 minutesRecently Microsoft announced ML.NET, a machine learning framework for .NET. This is exciting news. So my mind immediately goes to: how does this look with F#? The current post will take a look at using ML.NET’s regression module to predict concrete compressive strength based on its composite ingredients.
F# and Word Stems
Read Time: 6 minutesToday’s post discusses performing word stemming with F#. This will be an expansion on a previous post, Comparing Quora question intent. As a result, it will also address some feature engineering.