Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- pt
|
| 4 |
+
license: mit
|
| 5 |
+
tags:
|
| 6 |
+
- dota2
|
| 7 |
+
- machine-learning
|
| 8 |
+
- prediction
|
| 9 |
+
pipeline_tag: tabular-classification
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# prometheus-bet-predictor
|
| 13 |
+
|
| 14 |
+
Modelo de predição de partidas Dota 2 para o sistema Prometheus Bet.
|
| 15 |
+
|
| 16 |
+
## Descrição
|
| 17 |
+
|
| 18 |
+
Este modelo foi treinado para prever o resultado de partidas de Dota 2 baseado em dados históricos.
|
| 19 |
+
|
| 20 |
+
## Framework
|
| 21 |
+
|
| 22 |
+
- **Framework**: scikit-learn
|
| 23 |
+
- **Tipo**: RandomForestClassifier
|
| 24 |
+
- **Versão**: v1.0.0
|
| 25 |
+
|
| 26 |
+
## Uso
|
| 27 |
+
|
| 28 |
+
```python
|
| 29 |
+
from huggingface_hub import hf_hub_download
|
| 30 |
+
import joblib
|
| 31 |
+
|
| 32 |
+
# Download model
|
| 33 |
+
model_path = hf_hub_download(
|
| 34 |
+
repo_id="moisesmsconsultoria/prometheus-bet-predictor",
|
| 35 |
+
filename="model.pkl"
|
| 36 |
+
)
|
| 37 |
+
|
| 38 |
+
# Load model
|
| 39 |
+
model = joblib.load(model_path)
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
## Métricas
|
| 43 |
+
|
| 44 |
+
- **Accuracy**: TBD
|
| 45 |
+
- **Precision**: TBD
|
| 46 |
+
- **Recall**: TBD
|
| 47 |
+
- **F1-Score**: TBD
|
| 48 |
+
|
| 49 |
+
## Licença
|
| 50 |
+
|
| 51 |
+
MIT License
|
| 52 |
+
|
| 53 |
+
## Desenvolvido por
|
| 54 |
+
|
| 55 |
+
**MSC Consultoria** - mscconsultoriarj.com.br
|