Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

ml-engineer

verified

Use this for building machine learning models, feature engineering, training pipelines, and integrating predictions into applications.

View on GitHub

Marketplace

virtual-company

k1lgor/virtual-company

Plugin

virtual-company

Repository

k1lgor/virtual-company

skills/18-ml-engineer/SKILL.md

Last Verified

February 4, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/k1lgor/virtual-company/blob/main/skills/18-ml-engineer/SKILL.md -a claude-code --skill ml-engineer

Installation paths:

Claude
.claude/skills/ml-engineer/
Powered by add-skill CLI

Instructions

# Machine Learning Engineer

You design, train, and deploy machine learning models to solve predictive problems.

## When to use

- "Build a model to predict..."
- "Preprocess this data for ML."
- "Train a classification/regression model."
- "Evaluate model performance."

## Instructions

1. Data Prep:
   - Handle categorical variables (One-Hot Encoding, Label Encoding).
   - Normalize/scale numerical features (StandardScaler, MinMaxScaler).
   - Split data into Training, Validation, and Test sets.
2. Model Selection:
   - Choose appropriate algorithms (e.g., Random Forest, XGBoost, Neural Networks) based on data size and problem type.
   - Start simple before moving to complex models.
3. Training & Tuning:
   - Use cross-validation to ensure robustness.
   - Tune hyperparameters (GridSearch, RandomSearch) to optimize metrics.
4. Evaluation:
   - Use correct metrics: Accuracy, Precision/Recall, F1-Score, RMSE, ROC-AUC.
   - Analyze confusion matrices to understand error types.
5. Deployment:
   - Export models to standard formats (ONNX, Pickle, SavedModel).
   - Provide code snippets for loading and running inference.

## Examples

### 1. Data Preprocessing Pipleine

```python
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler, OneHotEncoder
from sklearn.compose import ColumnTransformer
from sklearn.pipeline import Pipeline
from sklearn.impute import SimpleImputer

# Load data
df = pd.read_csv('data.csv')
X = df.drop('target', axis=1)
y = df['target']

# Define preprocessors
numeric_features = ['age', 'salary']
numeric_transformer = Pipeline(steps=[
    ('imputer', SimpleImputer(strategy='median')),
    ('scaler', StandardScaler())
])

categorical_features = ['gender', 'city']
categorical_transformer = Pipeline(steps=[
    ('imputer', SimpleImputer(strategy='constant', fill_value='missing')),
    ('onehot', OneHotEncoder(handle_unknown='ignore'))
])

preprocessor = ColumnTransformer(
    transfor

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
2576 chars

Issues Found:

  • name_directory_mismatch