Metadata-Version: 2.4
Name: omega-models
Version: 0.3.4
Summary: A collection of generated machine learning algorithms
Author-email: Annika Singh <annikas@infinity.inc>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy<2.0
Requires-Dist: scikit-learn<1.8
Requires-Dist: scipy<1.17
Dynamic: license-file

# Omega: A Library of AI Invented Machine Learning Algorithms

Omega is an open-source Python library containing novel machine learning algorithms generated through automated algorithmic synthesis techniques. These algorithms push the boundaries of traditional machine learning approaches and offer unique capabilities for tackling complex data analysis tasks.

## Key Features

- **Novel Algorithms**: Includes machine learning algorithms not found in other libraries, created through evolutionary computation and neural architecture search.
- **Simple Scikit-Learn Style Interface**: Follows scikit-learn API conventions for easy integration into existing ML pipelines.

## Installation

```bash
pip install omega-models
```

## Quick Start

```python
from omega_models import DimAwareForest

# Load your dataset
X, y = load_dataset()

# Initialize and train the model
model = DimAwareForest()
model.fit(X, y)

# Make predictions
predictions = model.predict(X_test)
```
