Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 774 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 774 Bytes

ML Domino Pieces

Domino pieces for machine learning tasks.

  • InferenceModelPiece - Runs inference from a pickle file with a trained sklearn model.
  • OpenCVFilterPiece - Runs an OpenCV filter on an image.
  • PCATrainPiece - Trains a PCA model over a tabular dataset.
  • PCAInferencePiece - Runs inference from a pickle file with a trained PCA model.
  • StandardScalerPiece - Runs a standard scaler on a tabular dataset.
  • TSNEPiece - Applies t-SNE dimensionality reduction to a tabular dataset.
  • UMAPPiece - Applies UMAP dimensionality reduction to a tabular dataset.
  • TrainTestSplitPiece - Splits a tabular dataset into train and test sets.
  • TrainRandomForestClassifierPiece - Trains a random forest classifier over a tabular dataset.