🏠 Startseite
Vergleiche
📊 Alle Benchmarks 🦖 Dinosaurier v1 🦖 Dinosaurier v2 ✅ To-Do-Listen-Apps 🎨 Kreative freie Seiten 🎯 FSACB - Ultimatives Showcase 🌍 Übersetzungs-Benchmark
Modelle
🏆 Top 10 Modelle 🆓 Kostenlose Modelle 📋 Alle Modelle ⚙️ Kilo Code
Ressourcen
💬 Prompt-Bibliothek 📖 KI-Glossar 🔗 Nützliche Links
Advanced

Imbalanced Dataset Strategy

#data-science #machine-learning #imbalanced-data #python

Formulate a strategy for handling a highly imbalanced classification dataset.

Act as a Senior Data Scientist. I am working on a fraud detection dataset where the positive class (fraud) represents only 0.1% of the data. I cannot collect more data. Propose a comprehensive modeling pipeline that includes: 1) Data resampling techniques (SMOTE, ADASYN, etc.) and their trade-offs, 2) Algorithm selection focusing on anomaly detection vs classification, 3) Cost-sensitive learning approaches, and 4) Evaluation metrics that are more informative than Accuracy or ROC-AUC (such as Precision-Recall AUC). Provide Python code snippets using Scikit-Learn and Imbalanced-Learn to demonstrate the pipeline.