kaggle-target-transform

Transform Kaggle regression targets with log, sqrt, winsorization, isotonic regression, and beta sharpening.

1|Updated Jun 6, 2026
One-click install
npx skills add https://github.com/OlixIgnacious/agent-skills --skill kaggle-target-transform
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kaggle-target-transform
Source: https://github.com/OlixIgnacious/agent-skills/tree/main/.claude/skills/kaggle-target-transform
Command: npx skills add https://github.com/OlixIgnacious/agent-skills --skill kaggle-target-transform

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill solves the problem of transforming regression targets in Kaggle competitions to enhance model performance and robustness against outliers.

Core Features & Use Cases

  • Target and Prediction Transforms: Includes log/sqrt for skewed targets, winsorization for outliers, isotonic regression for calibration, and beta-sharpening for confident predictions.
  • Application Scenarios: Appropriate for regression and probability tasks where model calibration is crucial.
  • Use Case: For instance, use this Skill to apply a log transformation to your regression targets to mitigate skewness before training a model.

Quick Start

Execute the 'kaggle-target-transform' skill to transform the target and prediction for your regression model.

Frequently Asked Questions about kaggle-target-transform

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reduce skewness in regression targets for Kaggle competitions?

To reduce skewness in regression targets, apply log or sqrt transformations to normalize the target distribution before training your model. This mitigates extreme skewness and enhances regression performance.

What is the best way to handle outliers in regression target variables?

The best way to handle outliers in regression target variables is winsorization, which limits extreme values to reduce their impact. This targeted transformation ensures your model training remains robust against outlier anomalies.

How does isotonic regression improve model calibration for probability tasks?

Isotonic regression improves model calibration by adjusting predictions to match observed probabilities, which is crucial for probability tasks. It provides a targeted transformation to calibrate regression model outputs effectively.

Can I use beta sharpening to enhance confident predictions in machine learning competitions?

Yes, you can use beta sharpening to enhance confident predictions in machine learning competitions. It serves as a targeted transformation specifically designed to sharpen the confidence of regression model predictions.

When do I need to apply target transformation to my regression model?

You need to apply target transformation to your regression model when dealing with skewed targets, outlier sensitivity, or poor calibration. These targeted transformations enhance model performance and robustness against data anomalies.