Metadata-Version: 2.4
Name: mlbuddy-learn
Version: 0.1.0
Summary: An ML library that guides beginners step by step
Project-URL: Homepage, https://github.com/Mohammedjaasir/mlbuddy-learn
Author-email: Mohammed Jaasir <jaasir@example.com>
License: MIT
License-File: LICENSE
Keywords: AI,beginners,education,machine learning
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: scikit-learn
Description-Content-Type: text/markdown

# MLPilot

Machine Learning automation and guidance system.

## Project Structure

- **mlpilot/auto/**: Automated machine learning tasks
  - `data.py`: Data handling and preprocessing
  - `trainer.py`: Model training utilities
  
- **mlpilot/guide/**: ML guidance and suggestions
  - `suggest.py`: Suggestions engine for ML workflows
  
- **mlpilot/explain/**: Model interpretation and visualization
  - `visualizer.py`: Model visualization tools
  
- **tests/**: Test suite

## Installation

```bash
pip install -e .
```

## Development

Install development dependencies:

```bash
pip install -e ".[dev]"
```

Run tests:

```bash
pytest
```
