https://github.com/alexandregazagnes/scikit-res
Very Basic package to store results of ML models Grid search results are hard to exploit. This package aims to store them in a more convenient way.
https://github.com/alexandregazagnes/scikit-res
data machine-learning mlops mlops-workflow results scikit-learn
Last synced: 5 months ago
JSON representation
Very Basic package to store results of ML models Grid search results are hard to exploit. This package aims to store them in a more convenient way.
- Host: GitHub
- URL: https://github.com/alexandregazagnes/scikit-res
- Owner: AlexandreGazagnes
- License: gpl-3.0
- Created: 2024-01-25T13:36:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T13:49:41.000Z (about 2 years ago)
- Last Synced: 2025-04-08T04:49:34.104Z (about 1 year ago)
- Topics: data, machine-learning, mlops, mlops-workflow, results, scikit-learn
- Language: Python
- Homepage: https://alexandregazagnes.github.io/scikit-res
- Size: 4.19 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://www.gnu.org/licenses/gpl-3.0)   [](https://www.python.org/dev/peps/pep-0008/) [](https://python-poetry.org/)   
# Scikit-res : Scikit-learn + results
## About
### Context
Very Basic package to store results of ML models
Grid search results are hard to exploit. This package aims to store them in a more convenient way.
## Installation
### Clone the repository
Please clone the repository using the following command :
* for https :
```bash
git clone https://github.com/AlexandreGazagnes/skres.git
```
* for ssh :
```bash
git clone git@github.com:AlexandreGazagnes/skres.git
```
### Install the dependencies
The project uses [Poetry](https://python-poetry.org/) to manage its dependencies. Please install it using the following command :
```bash
pip install poetry
```
Then, please install the dependencies using the following command :
```bash
poetry install
```
Alternatively, you can install the dependencies using the following command :
```bash
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -r .utils/requirements-dev.txt
```
## Usage
```python
from skres import SkRes
grid_search = GridSearchCV(...)
grid_search.fit(X_train, y_train)
skres = SkRes(grid_search)
```
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
## License
[GPLv3](LICENSE)