Metadata-Version: 2.4
Name: examml
Version: 1.1.1
Summary: A library containing machine learning exam experiments such as SVM and Random Forest on the Iris dataset.
Home-page: https://pypi.org/project/examml
Author: eglib
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: scikit-learn
Requires-Dist: seaborn
Requires-Dist: matplotlib
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# examml

`examml` is a Python library containing machine learning exam programs such as SVM and Random Forest experiments on the Iris dataset.

## Installation

```bash
pip install examml
```

## Usage

```python
from examml import exp2

exp2.run_experiment()
```

This will train and evaluate both SVM and Random Forest models, displaying confusion matrices.
