ML classifier for role in Riot API LoL matches
Project description
Role ML
League of Legends Role Classifier
This project aims to provide to Riot Games API users, especially those using match data, a better classifier for role. It is known that the internal role classifier give a lot of misclassifications, making the whole thing not enough reliable for any production application.
Based on that observation, we used machine learning to create a classifier closer to what user would expect as roles, and with an improved accuracy. In order to get solid bases and verify the ability of our classifier, we build a set of manually labeled roles as a verification set. From this verification set, the Riot Games classifier gives a 12.5% error rate and our classifier downed this error rate to less than 0.1%, on really edge cases.
For more details about the development of the classifier, check https://github.com/Canisback/roleML/blob/master/exploration/Role%20ML.ipynb
To get the verification set raw data, get it here : https://github.com/Canisback/roleML/blob/master/data/verification_results.csv (column name is participantId) (all games are from EUW server).
This classifier only works for normal and ranked games on Summoner's Rift.
Note that the range of possible role as been reduced to the 5 most used roles : MIDDLE_SOLO, TOP_SOLO, JUNGLE_NONE, BOTTOM_DUO_CARRY, BOTTOM_DUO_SUPPORT.
How to use it
The classifier is available as a python module.
pip install roleml
As the classifier relies on a set of carefully picked features from the match data, you will need to give it raw data from the API :
- Match : https://developer.riotgames.com/api-methods/#match-v4/GET_getMatch
- Timeline : https://developer.riotgames.com/api-methods/#match-v4/GET_getMatchTimeline
import roleml
roleml.predict(match, timeline)
Output :
{
1: 'mid',
2: 'bot',
3: 'supp',
4: 'top',
5: 'jungle',
6: 'top',
7: 'jungle',
8: 'bot',
9: 'supp',
10: 'mid'
}
The output is a dictionary linking participantId to their role.
The match needs to be at least 12 minutes long, an exception will be raised else.
Options
Add the predicted role to the participant and fix the timeline data :
fixed_match, fixed_timeline =
roleml.fix_game(game, timeline)
You can turn off the timeline fix :
fixed_match, fixed_timeline =
roleml.fix_game(game, timeline, False)
You can also change the role format output :
roleml.change_role_formatting("full")
- clean (default)
{
1: 'mid',
2: 'bot',
3: 'supp',
4: 'top',
5: 'jungle',
6: 'top',
7: 'jungle',
8: 'bot',
9: 'supp',
10: 'mid'
}
- full
{
1: 'MIDDLE_SOLO',
2: 'BOTTOM_DUO_CARRY',
3: 'BOTTOM_DUO_SUPPORT',
4: 'TOP_SOLO',
5: 'JUNGLE_NONE',
6: 'TOP_SOLO',
7: 'JUNGLE_NONE',
8: 'BOTTOM_DUO_CARRY',
9: 'BOTTOM_DUO_SUPPORT',
10: 'MIDDLE_SOLO'
}
- rgapi
{
1: {"lane":"MIDDLE","role":"SOLO"},
2: {"lane":"BOTTOM","role":"DUO_CARRY"},
3: {"lane":"BOTTOM","role":"DUO_SUPPORT"},
4: {"lane":"TOP","role":"SOLO"},
5: {"lane":"JUNGLE","role":"NONE"},
6: {"lane":"TOP","role":"SOLO"},
7: {"lane":"JUNGLE","role":"NONE"},
8: {"lane":"BOTTOM","role":"DUO_CARRY"},
9: {"lane":"BOTTOM","role":"DUO_SUPPORT"},
10: {"lane":"MIDDLE","role":"SOLO"}
}
Cassiopeia support
RoleML partially supports Cassiopeia Match data structure. The predict function has a cassiopeia_dicts flag to be used with the Cassiopeia match .to_dict() function :
roleml.predict(match.to_dict(), match.timeline.to_dict(), True)
A special function allows to add the predicited role in Participants object from Cassiopeia matches :
roleml.add_cass_predicted_roles(match)
Working example :
import roleml
import cassiopeia as cass
cass.set_riot_api_key("RGAPI-")
cass.set_default_region("EUW")
summoner = cass.get_summoner(name="Canisback")
match = cass.MatchHistory(summoner=summoner, queues={cass.Queue.blind_fives})[0].load()
match.timeline.load()
roleml.add_cass_predicted_roles(match)
for p in match.participants:
print(p.predicted_role)
Output :
bot
jungle
mid
top
supp
bot
mid
supp
jungle
top
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file roleml-0.2.3.tar.gz
.
File metadata
- Download URL: roleml-0.2.3.tar.gz
- Upload date:
- Size: 4.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b5281acf4a98d3bc7afb349acf777f5753e59d4fc69f1622e4ce366b4c63af1 |
|
MD5 | 7ee0541357ae90220ca2c5af7efaaebd |
|
BLAKE2b-256 | 9debf70b5f6c388daba7080c8fc0498f888e9dc1655fa784ee6a367c5c419248 |
File details
Details for the file roleml-0.2.3-py2.py3-none-any.whl
.
File metadata
- Download URL: roleml-0.2.3-py2.py3-none-any.whl
- Upload date:
- Size: 4.5 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c8306c50f6563ff0a3ccdc831548b3231d3ba41758251ecd0df82ae51eaff83 |
|
MD5 | e0357315f185ef14979d646216256573 |
|
BLAKE2b-256 | 151143b44383a891bc6cce11e5d668e14c0c714e25a5d6ae1ef5a9569da1098e |