Skip to main content

Generalized Distance Weighted Discrimination (DWD) with sGS-ADDM

Project description

genDWD: Generalized Distance Weighted Discrimination

genDWD is a high-performance Python implementation of the Generalized Distance Weighted Discrimination (DWD) algorithm.

While Support Vector Machines (SVM) are widely used, they often suffer from the "data piling" phenomenon in HDLLS (High-Dimension, Low Large Sample) settings, where many data points project onto the same location on the decision boundary, leading to poor generalization. DWD was specifically developed to overcome this by accounting for the relative distance of all data points, providing better robustness in high-dimensional spaces.

Originally formulated for binary classification, this implementation extends the algorithm's utility by featuring built-in Multiclass classification support, enabling its application to complex, real-world datasets with multiple categories. It is designed to handle these tasks efficiently using the sGS-ADMM framework for large-scale optimization.


Core Research Basis

This implementation is strictly constructed based on the numerical procedures described in the following scientific paper:

"Fast algorithms for large scale generalized distance weighted discrimination"

— Xin Yee Lam, J.S. Marron, Defeng Sun, and Kim-Chuan Toh (September 5, 2018)

Key Features

  • Automatic Detection: Automatically switches between Binary and Multiclass (One-vs-One) logic.
  • Adaptive Solvers: Dynamically selects between Cholesky, SMW, or PSQMR based on n (data) and d (features).
  • sGS-ADMM Framework: Ensures fast convergence using Symmetric Gauss-Seidel ADMM.
  • Penalty Tuning: Automatic C parameter calculation using median inter-class distance.

Quick Start

  1. Install the package:
pip install genDWD

Implementation Guide

To use the genDWD class in your project, follow the instructions below. The model follows the standard .fit() and .predict() pattern.

1. Basic Initialization

You can customize the model during initialization. The parameter C='auto' is recommended as it calculates the penalty based on the dataset's geometry.

from gendwd import genDWD

model = genDWD(C='auto')

2. Model Training and Prediction

The model follows the familiar .fit() and .predict() workflow. It automatically handles both binary and multiclass data.

Training the Model

To train the model, pass your feature matrix X and label vector y. The algorithm will automatically detect if it should use a binary or multiclass (One-vs-One) strategy.

import numpy as np

# Sample Data: 100 samples, 10 features
X_train = np.random.randn(100, 10)
# Labels can be integers, strings, or floats
y_train = np.random.choice(['Class_A', 'Class_B'], size=100)

# Train the model
model.fit(X_train, y_train)

# New data for prediction
X_new = np.random.randn(5, 10)

# Get predicted class labels
predictions = model.predict(X_new)

print(f"Predicted Labels: {predictions}")

Acknowledgments

I would like to express my sincere gratitude to the following individuals for their invaluable support and guidance during the development of this project:

  • Adilan Widyawan Mahdiyasa, S.Si., M.Si., Ph.D., for the academic guidance, mentorship, and insights into the mathematical foundations of optimization and discrimination algorithms.
  • Ika, Marshanda, Puan, and Radith, for the productive discussions and assistance during the coding, debugging, and testing phases.

Their contributions have been instrumental in making this implementation of the genDWD algorithm possible.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gendwd-0.1.1.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gendwd-0.1.1-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file gendwd-0.1.1.tar.gz.

File metadata

  • Download URL: gendwd-0.1.1.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.1

File hashes

Hashes for gendwd-0.1.1.tar.gz
Algorithm Hash digest
SHA256 8102b14056dc59aa0b6a52ebbaafe6a2bdccbc211151626151d90e45b4b64113
MD5 ce88ad03078820124dc21c3a06c1f194
BLAKE2b-256 88b1de49afb5ab9946a45a5bc5bad9d97be410d5fe4fd49f1e5b8b6147d20a28

See more details on using hashes here.

File details

Details for the file gendwd-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: gendwd-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.1

File hashes

Hashes for gendwd-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f68d2eb54d1d71ed3a5261722d9fcf17500eb59eeff44b5570ed360e6452d073
MD5 ed6e77974ed3730434b842e60134ca72
BLAKE2b-256 ce7826bac3e767c8d3348d2837f0a0ccb3cbd7eb3ba763c0f7e73c1b5976612a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page