Metadata-Version: 2.4
Name: pocket_ml
Version: 0.1.1
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.19.0
Requires-Dist: pandas>=1.2.0
Requires-Dist: scikit-learn>=0.24.0
Requires-Dist: matplotlib>=3.3.0
Requires-Dist: seaborn>=0.11.0
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist

# pocket_ml

A lightweight and user-friendly machine learning library designed to simplify ML workflows.

## Features

- Simple and intuitive API for common ML tasks
- Automated data preprocessing
- Easy model training and evaluation
- Built-in visualization tools
- Comprehensive documentation and examples

## Installation

```bash
pip install pocket_ml
```

## Quick Start

```python
from pocket_ml.model import Classifier
from pocket_ml.preprocessing import DataPreprocessor

# Prepare your data
preprocessor = DataPreprocessor()
X_processed = preprocessor.fit_transform(X)

# Train a model
model = Classifier('random_forest')
model.fit(X_processed, y)

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

## Documentation

For detailed documentation and examples, visit our [documentation page](https://pocket_ml.readthedocs.io).

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

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