- F# for Machine Learning Essentials
- Sudipta Mukherjee
- 296字
- 2021-07-16 13:07:01
APIs used
In this chapter, you will learn how to use the preceding APIs to solve problems using several linear regression methods and plot the result.

FsPlot is a charting library for F# to generate charts using industry standard JavaScript charting APIs, such as HighCharts. FsPlot provides a nice interface to generate several combination charts, which is very useful when trying to understand the linear regression model. You can find more details about the API at its homepage at https://github.com/TahaHachana/FsPlot.
Math.NET Numerics for F# 3.7.0
Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, in engineering, and in everyday use. It supports F# 3.0 on .Net 4.0, .Net 3.5, and Mono on Windows, Linux, and Mac; Silverlight 5 and Windows 8 with PCL portable profile 47; Android/iOS with Xamarin.

You can get the API from the NuGet page at https://www.nuget.org/packages/MathNet.Numerics.FSharp/. For more details, visit the project homepage at http://www.mathdotnet.com/.

The Accord.NET framework is a .NET machine learning framework combined with audio and image processing libraries completely written in C#. It is a complete framework for building production-grade computer vision, computer audition, signal processing, and statistics applications; it is for commercial use as well. For more details, visit the homepage of the framework at http://accord-framework.net/.
Getting Math.NET
Math.NET is a leading .NET API for doing mathematical, statistical, and of course machine learning stuff. Math.NET, like any other .NET API, can be used in C# and F#. But there is a nice wrapper for F# that makes the experience in F# very friendly. You can get that F# wrapper (called Math.Net.Numerics.FSharp
) from NuGet at https://www.nuget.org/packages/MathNet.Numerics.FSharp/.
Experimenting with Math.NET
In the following section, you will learn how to do several basic matrix-related and vector-related operations using Math.NET.
- Spring Boot 2實戰之旅
- 流量的秘密:Google Analytics網站分析與優化技巧(第2版)
- Microsoft Exchange Server PowerShell Cookbook(Third Edition)
- 精通搜索分析
- C語言程序設計案例式教程
- 實戰Java高并發程序設計(第3版)
- Terraform:多云、混合云環境下實現基礎設施即代碼(第2版)
- 基于ARM Cortex-M4F內核的MSP432 MCU開發實踐
- 深入剖析Java虛擬機:源碼剖析與實例詳解(基礎卷)
- Kotlin極簡教程
- 分布式架構原理與實踐
- Flask Web開發實戰:入門、進階與原理解析
- 你也能看得懂的Python算法書
- Python程序設計案例教程:從入門到機器學習(微課版)
- JavaScript實戰-JavaScript、jQuery、HTML5、Node.js實例大全(第2版)