Skip to content

MALE5-V3.0.0

Latest
Compare
Choose a tag to compare
@MegaJoctan MegaJoctan released this 03 Mar 14:37

Documentations and examples prioritized in this Major release

-> I have been receiving complaints that the library is hard to use as it is not well documented for people with no ML background and coming across this repo from Github, There are plenty of README files to explain each model inside its folder

-> Some might still find the wiki useful

-> Compatibility Checked!! users may not be able to find errors during compilation on this release than the previous ones

-> KMeans class updates and version compatibility

-> Dimensionality reduction Base class renamed to BaseDimRed to avoid conflicts with other base classes when multiple files are imported

-> Kohonen Maps PlotScatterCurveMatrix compatibility fixed, this method has been revoked matrix of maps or clusters can be plotted as follows

-> Kohonen maps fit & predicts methods

-> Metrics | scaler save methods for each scaler to csv files | Will be updated to binaries in the next version
-> RegressionMetrics for metric.mqh static class

    CColorGenerator clr;
    
    plt.Plot("kom", x, plotmatrix.Col(0), "map", "clusters","cluster"+string(1),CURVE_POINTS,clr.Next()); //plot the first cluster
    for (ulong i=1; i<plotmatrix.Cols(); i++) //start at the second column in the matrix | the second cluster
      {
        plt.AddPlot(plotmatrix.Col(i), "cluster"+string(i+1),clr.Next()); //Add the rest of clusters to the existing plot 
      }

-> fit() and fit_transform for all the prediction models and transformation models respectively implemented for all models