EasyML 1.0.0-beta2
See the version list below for details.
dotnet add package EasyML --version 1.0.0-beta2
NuGet\Install-Package EasyML -Version 1.0.0-beta2
<PackageReference Include="EasyML" Version="1.0.0-beta2" />
paket add EasyML --version 1.0.0-beta2
#r "nuget: EasyML, 1.0.0-beta2"
// Install EasyML as a Cake Addin #addin nuget:?package=EasyML&version=1.0.0-beta2&prerelease // Install EasyML as a Cake Tool #tool nuget:?package=EasyML&version=1.0.0-beta2&prerelease
EasyML
EasyML is a component to train a machine learning system and use it to get predictions with just a few lines of code. The objective of this project is to facilitate the use of ML algorithms in any project by any developer with no knowledge about ML. It is basically a wrapper to allow devs to focus only in get advantage from this technology as fast as possible instead of getting lost themselves in the implementation details.
Features
- Regression implementation: A supervised machine learning implementation that is used to predict the value of a column (label) from a set of related features. The label can be of any real value.
How to use
1️⃣
Model your data
The first thing you must define is the data you will use to train your system and what are que predictions you want to get.
Suppose we need a ML system to predict the estimated time a expensive operation lasts. I can get the following data every time I performed one of those operations (that are the parameters/features of your system): Number of calls needed, Server we call, Total amount of data sent, weekday, daytime, Total seconds . I write this in a class:
class OperationSummary
{
public int Calls { get; set; }
public string DestinationIP { get; set; }
public int AmountOfData { get; set; }
public int Weekday { get; set; }
public TimeOnly Daytime { get; set; }
public uint TotalSeconds { get; set; }
}
⚠️WORK IN PROGRESS...
About performance
- ML systems can consume a lot of time being trained (depending on how precise you want to be and how long you let it be trained). This operation can be done in parallel...
Roadmap
- Save and load datasets from files
- Save and load trained model to/from files
- Other implementations like multiclass classification, clustering, anomaly detection, etc..
Credits and more information
This project uses Microsoft's Microsoft.ML.AutoML package, an implementation to create, train, evaluate and get predictions from ML models.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- No dependencies.
-
All Frameworks
- Microsoft.ML.AutoML (>= 0.19.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.0.3 | 536 | 6/5/2022 | |
1.0.2 | 560 | 2/11/2022 | |
1.0.1 | 470 | 2/11/2022 | |
1.0.0 | 485 | 2/11/2022 | |
1.0.0-beta2 | 252 | 2/10/2022 | |
1.0.0-beta1 | 202 | 2/10/2022 |
v.1.0.0-beta2
- Regression system