Metadata-Version: 2.1
Name: optymus
Version: 0.1.0
Summary: Optimization Methods Library
Author: Kleyton da Costa
Maintainer: Kleyton da Costa
Maintainer-email: kleyton.vsc@gmail.com
Requires-Python: >=3.8,<4.0.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: autograd (>=1.6.2)
Requires-Dist: seaborn (>=0.11.2)
Requires-Dist: tqdm (>=4.64.1)
Description-Content-Type: text/markdown

<h1 align="center">
<img src="logo.png" width="400">
</h1>

[![PyPI](https://img.shields.io/pypi/v/optymus)](https://pypi.org/project/optymus/)
[![GitHub](https://img.shields.io/github/license/kleyt0n/optymus)](https://github.com/kleyt0n/optymus/blob/master/LICENSE)

Welcome to _optymus_, the Optimization Methods Library for Python! This library provides a comprehensive collection of optimization methods, both with and without constraints, implemented in the Python programming language.

## Table of Contents

- [Introduction](#introduction)
- [Getting Started](#getting-started)
- [Content](#content)
- [Contributions](#contributions)
- [License](#license)

## Introduction

_optymus_ is designed to empower users with a versatile set of optimization tools, facilitating the search for optimal solutions in various problem domains. This library covers a range of optimization methods, making it suitable for diverse applications in computer science and engineering.

## Getting Started

To begin using _optymus_, follow these steps:

1. **Install optymus:**
   ```bash
   pip install optymus
   ```

2. **Explore the Documentation:**
   Visit the [official documentation](https://optymus-docs.readthedocs.com) to understand the available optimization methods and how to use them effectively.

3. **Get Started:**
   ```python
   from optymus.minimize import Optimizer
   
   import numpy as np
   f = lambda x: x[0]**[2]-3*x[0]*x[1]+4*x[1]**2+x[0]-x[1]
   grad = lambda x: np.array([2*x[0]-3*x[1]+1, -3*x[0]+8*x[1]-1])
   hess = lambda x: np.array([[2, -3], [-3, 8]])
   initial_point = np.array([2, 2])

   optimizer = Optimizer(f_obj=f,
                        x0=initial_point,
                        grad=grad,
                        hess=hess,
                        method='bfgs')
   
   optimizer.report()

   optimizer.plot()
   ```

## Content

_optymus_ includes a rich set of optimization methods, such as:

- Unconstrained Optimization Methods
- Constrained Optimization Methods
- Global Optimization
- Gradient Descent
- Evolutionary Algorithms

Refer to the documentation for detailed information on each method and its application.

## Contributions

Contributions to Optymus are highly appreciated! If you have additional optimization methods, improvements, or bug fixes, please submit a pull request following the [contribution guidelines](CONTRIBUTING.md).

## License

Optymus is licensed under the [MIT License](LICENSE), allowing you to use, modify, and distribute the library for both commercial and non-commercial purposes.

Start optimizing with Optymus and unlock the potential for finding optimal solutions in your Python projects!

