Big Data Processing
Scalable Machine Learning Platform
★ 4.4
Spark's Machine Learning Library
★ 4.5
pip install h2opip install pysparkpip install h2opip install pysparkPython data engineers use the `h2o` Python package to run distributed AutoML experiments on large training datasets that exceed single-machine memory. Engineers call `h2o.automl.H2OAutoML().train()` pointing at an H2OFrame backed by a cluster, let H2O evaluate dozens of algorithms, then export the best model as a MOJO for deployment in a Python scoring service.
Python data engineers use PySpark's `pyspark.ml` module to train machine learning models on datasets too large for scikit-learn. An MLlib Pipeline chains a `StringIndexer`, `VectorAssembler`, and `GBTClassifier` — fitting the pipeline on a distributed Spark DataFrame and saving the trained model to S3 for later scoring in a batch inference job.
Individual Tool Pages