Metadata-Version: 2.4
Name: smartml-auto
Version: 1.0.0
Summary: Intelligent AutoML that automatically analyzes data, engineers features, and selects the best machine learning models
Author-email: David Johnson <david@example.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.20.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: scikit-learn>=1.0.0
Requires-Dist: scipy>=1.7.0
Requires-Dist: joblib>=1.0.0
Dynamic: license-file

# SmartML Auto 🤖

**Intelligent AutoML that automatically analyzes your data, engineers features, and selects the best machine learning models.**

## Installation

```bash
pip install smartml-auto
```

## Quick Start

```python
import automl
from sklearn.datasets import load_iris

# Load data
iris = load_iris()
X, y = iris.data, iris.target

# Train model
predictor = automl.train(X, y, time_budget='fast')

# Make predictions
predictions = predictor.predict(X[:5])

# View results
predictor.summary()
```

## License

MIT License
