An open API service indexing awesome lists of open source software.

https://github.com/rodolfoferro/ml-orchestation

Código demo sobre el uso de Prefect como orquestador de procesos, 2022.
https://github.com/rodolfoferro/ml-orchestation

Last synced: 4 months ago
JSON representation

Código demo sobre el uso de Prefect como orquestador de procesos, 2022.

Awesome Lists containing this project

README

          

![GitHub last commit](https://img.shields.io/github/last-commit/RodolfoFerro/ml-orchestation?style=for-the-badge)
![GitHub repo size](https://img.shields.io/github/repo-size/RodolfoFerro/ml-orchestation?style=for-the-badge)
![License](https://img.shields.io/github/license/RodolfoFerro/ml-orchestation?style=for-the-badge)

[![Twitter](https://img.shields.io/twitter/follow/rodo_ferro?label=Twitter&logo=twitter&style=for-the-badge)](https://twitter.com/rodo_ferro/)
[![LinkedIn](https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555)](https://www.linkedin.com/in/rodolfoferro/)

Este repo contiene código demo sobre el uso de Prefect como orquestador de procesos.

#### Stack principal

- Python 3.8+
- Prefect
- requests

Para mayor información sobre la ejecución y testeo, porfa revisa los slides de la charla:

[![Slides](https://img.shields.io/static/v1?label=Slides&message=Google%20Slides&color=tomato&style=for-the-badge)](https://docs.google.com/presentation/d/e/2PACX-1vS1a6SWDC6H36NFjZqI6KRjC-WY5pAgWiNdVUIrG7DH0tliwrr0EWnqPO7uZspmWrGYfbNMcV9GmBn-/pub?start=false&loop=false&delayms=3000)

## Setup

1. Crea un entorno virtual (te recomiendo usar `conda`):
```bash
conda create --name orch-env python=3.8
```
2. Activate the virtual environment:
```bash
conda activate orch-env
```
3. Install requirements:
```bash
pip install -r requirements.txt
```