Skip to content

Commit

Permalink
chore: fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed Oct 17, 2024
1 parent 5aa5a83 commit c1da1b7
Showing 1 changed file with 4 additions and 19 deletions.
23 changes: 4 additions & 19 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,18 @@
/* eslint-disable import/order */
/* eslint-disable import/first */




// Try to keep this list in the same structure as the README.

// Unsupervised learning
export { PCA } from 'ml-pca';





// Supervised learning


export { default as KNN } from 'ml-knn';
export { PLS, KOPLS, OPLS, oplsNipals } from 'ml-pls';


export { ConfusionMatrix } from 'ml-confusion-matrix';



// Artificial neural networks
export { default as FNN } from 'ml-fnn';
export { default as SOM } from 'ml-som';
Expand All @@ -40,13 +29,9 @@ export {
RobustPolynomialRegression,
} from 'ml-regression';



// Optimization
export { levenbergMarquardt } from 'ml-levenberg-marquardt';



// Math
import * as MatrixLib from 'ml-matrix';
const {
Expand All @@ -58,7 +43,6 @@ const {
QrDecomposition,
} = MatrixLib;
export {

Matrix,
SVD,
EVD,
Expand Down Expand Up @@ -87,8 +71,6 @@ export { default as padArray } from 'ml-pad-array';
export { default as binarySearch } from 'binary-search';
export { default as Random } from 'ml-random';



import min from 'ml-array-min';
import max from 'ml-array-max';
import median from 'ml-array-median';
Expand Down Expand Up @@ -137,7 +119,10 @@ export const ArrayXY = {
filterX,
};
export { DecisionTreeClassifier, DecisionTreeRegression } from 'ml-cart';
export { RandomForestClassifier, RandomForestRegression } from 'ml-random-forest';
export {
RandomForestClassifier,
RandomForestRegression,
} from 'ml-random-forest';
export * as HClust from 'ml-hclust';
export * as KMeans from 'ml-kmeans';
export * as NaiveBayes from 'ml-naivebayes';
Expand Down

0 comments on commit c1da1b7

Please sign in to comment.