Metadata-Version: 2.1
Name: sam_ml-py
Version: 0.4.1
Summary: a library for ML programing created by Samuel Brinkmann
Author: Samuel Brinkmann
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# SAM_ML

[![PyPI version](https://badge.fury.io/py/sam-ml-py.svg)](https://badge.fury.io/py/sam-ml-py)

a library created by Samuel Brinkmann

## getting started

1. install the package to your activated virtual environment

```
pip install sam-ml-py
```

2. now you can import the package, e.g.:

```
from sam_ml.models import RFC

RandomForestClassifier = RFC()
```

--> in the '[examples](https://github.com/Priapos1004/SAM_ML/tree/main/examples)' folder you can find notebooks with code snippets that explain the usage of the package
