Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/1adore1/-old-deadlock-winner-prediction

Predict the winning team in Valve's MOBA game Deadlock based on team picks.
https://github.com/1adore1/-old-deadlock-winner-prediction

beautifulsoup4 catboost numpy pandas python scikit-learn

Last synced: 7 days ago
JSON representation

Predict the winning team in Valve's MOBA game Deadlock based on team picks.

Awesome Lists containing this project

README

        

# **Deadlock Winner Prediction**

### Overview

The goal of this project is to predict the winning team in the new MOBA game Deadlock by Valve, based solely on the teams picks.

### Installation

1. Clone the repository:
```
git clone https://github.com/1adore1/deadlock-winner-prediction.git
cd deadlock-winner-prediction
```
2. Install required libraries:
```
pip install -r requirements.txt
```

### Usage

1. Preprocess the dataset by running (takes about 1 minute for 10k matches):
```
python preprocess.py
```
2. Train the model with:
```
python train_model.py
```
3. Make predictions on your input picks:
```
python predict.py
```

### Models Used

* **Random Forest**
* **Gradient Boosting**
* **Logistic Regression**

### Data

The dataset includes match history from Deadlock, that was parsed from [tracklock.gg](https://tracklock.gg).

Dataset contains:

* **Team picks**: Heroes chosen by each team.
* **Game results**: Outcome of the match (win/loss).
---