machine-learning
Originally frompluginagentmarketplace/custom-plugin-python
Installation
SKILL.md
Machine Learning
Production-grade machine learning with scikit-learn, XGBoost, and modern ML engineering practices.
Quick Start
# Production ML Pipeline with scikit-learn
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split, cross_val_score
from sklearn.pipeline import Pipeline
from sklearn.compose import ColumnTransformer
from sklearn.preprocessing import StandardScaler, OneHotEncoder
from sklearn.impute import SimpleImputer
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import classification_report, roc_auc_score
import joblib
Related skills
More from pluginagentmarketplace/custom-plugin-data-engineer
statistics-math
Statistics, probability, linear algebra, and mathematical foundations for data science
327deep-learning
PyTorch, TensorFlow, neural networks, CNNs, transformers, and deep learning for production
48big-data
Apache Spark, Hadoop, distributed computing, and large-scale data processing for petabyte-scale workloads
43python-programming
Master Python fundamentals, OOP, data structures, async programming, and production-grade scripting for data engineering
31data-engineering
Data pipeline architecture, ETL/ELT patterns, data modeling, and production data platform design
29etl-tools
Apache Airflow, dbt, Prefect, Dagster, and modern data orchestration for production data pipelines
28