Skip to main content

Happymath is a high-level mathematical modeling Python library. Its core philosophy lies in reducing users' learning costs through high-level encapsulation, enabling efficient mathematical modeling. It is particularly suitable for mathematical modeling competitions and applied mathematics fields.

Project description

HappyMath

PyPI version Python 3.8+ License: MIT

HappyMath is a comprehensive mathematical computing and machine learning library that provides unified interfaces for automated machine learning, multi-criteria decision making, differential equations, and mathematical optimization.

Features

🤖 AutoML - Automated Machine Learning

  • Classification: Automated model selection and hyperparameter tuning for classification tasks
  • Regression: Intelligent regression model building with feature engineering
  • Clustering: Unsupervised learning with automatic algorithm selection
  • Anomaly Detection: Outlier and anomaly identification algorithms
  • Time Series: Specialized time series forecasting and analysis

📊 Decision - Multi-Criteria Decision Making (MCDM)

A comprehensive framework for multi-criteria decision analysis with 80+ algorithms:

  • Subjective Weighting: AHP, BWM, FUCOM, ROC, and more
  • Objective Weighting: CRITIC, Entropy, MEREC, PSI, and others
  • Scoring Methods: TOPSIS, VIKOR, SAW, MOORA, and 30+ algorithms
  • Outranking Methods: ELECTRE and PROMETHEE families
  • Fuzzy Decision Making: Complete fuzzy methodology support

🔧 DiffEq - Differential Equations

Unified interface for solving differential equations:

  • Ordinary Differential Equations (ODE): Initial value and boundary value problems
  • Partial Differential Equations (PDE): Various numerical methods
  • Symbolic Analysis: Symbolic computation and analysis tools
  • Multiple Solvers: SciPy, SymPy, and custom implementations

⚙️ Opt - Mathematical Optimization

Comprehensive optimization framework supporting:

  • Linear Programming: Simplex and interior point methods
  • Nonlinear Programming: Gradient-based and derivative-free methods
  • Multi-objective Optimization: Pareto front analysis
  • Constraint Handling: Various constraint types and formulations
  • Solver Integration: Pyomo, Pymoo, and specialized solvers

Installation

pip install happymath

Note: When installing with pip, the ipopt solver is not included by default, and LightGBM models cannot be properly installed, which may cause AutoML errors. If you install via pip, it is recommended to manually install these two packages through conda.

Requirements

  • Python 3.11+
  • All dependencies are automatically installed

Quick Start

AutoML Example

from happymath import AutoML
import pandas as pd

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

# Automated classification
automl = AutoML.ClassificationML()
model = automl.fit(X, y)
predictions = model.predict(X_test)

Decision Analysis Example

from happymath import Decision
import numpy as np

# Decision matrix and criteria types
dm_data = np.array([[250, 16, 12], [200, 16, 8], [300, 32, 16]])
criteria = ['min', 'max', 'max']

# Calculate weights and rankings
weighting = Decision.ObjWeighting()
weights = weighting.decide(dataset=dm_data, criterion_type=criteria).get_weights()

scoring = Decision.ScoringDecision()
rankings = scoring.decide(dataset=dm_data, weights=weights, criterion_type=criteria).get_rankings()
print(rankings)

Differential Equations Example

from happymath import DiffEq
import numpy as np

# Define ODE system
def ode_func(t, y):
    return -y + np.sin(t)

# Solve ODE
solver = DiffEq.ODE()
result = solver.solve(ode_func, t_span=[0, 10], y0=[1.0])
t, y = result.get_solution()

Optimization Example

from happymath import Opt
import numpy as np

# Define optimization problem
def objective(x):
    return x[0]**2 + x[1]**2

# Solve optimization problem
optimizer = Opt.Optimization()
result = optimizer.minimize(objective, x0=[1.0, 1.0])
optimal_x = result.x
optimal_value = result.fun

Documentation

For detailed documentation, tutorials, and examples, please visit our documentation page.

Contributing

We welcome contributions! Please see our Contributing Guide for details.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

If you have any questions or need help, please:

Citation

If you use HappyMath in your research, please cite:

@software{happymath2024,
  title={HappyMath: A Comprehensive Mathematical Computing Library},
  author={HappyMathLabs},
  year={2024},
  url={https://github.com/HappyMathLabs/happymath}
}

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

happymath-0.1.3.tar.gz (234.5 kB view details)

Uploaded Source

Built Distribution

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

happymath-0.1.3-py3-none-any.whl (350.2 kB view details)

Uploaded Python 3

File details

Details for the file happymath-0.1.3.tar.gz.

File metadata

  • Download URL: happymath-0.1.3.tar.gz
  • Upload date:
  • Size: 234.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for happymath-0.1.3.tar.gz
Algorithm Hash digest
SHA256 963463dbdb26e059aeacc1558f475531557e8170c5b67b466481abb6b27a5484
MD5 16c3b4c8d347c663ce45a539932814c1
BLAKE2b-256 c0e865e62be17a58ef61c55ba8b12220a3158c299f84624bb0027c85e9e44315

See more details on using hashes here.

File details

Details for the file happymath-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: happymath-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 350.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for happymath-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 83ff16bf711cc267020c7770dccb3889acf5d3f08ff53f1dc1b304a23124323a
MD5 47d807412e40cf1d31b0753145385e4b
BLAKE2b-256 00b9e2014b5016133625133991646202f230fcd6e4d486f60816fead87903ba0

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