-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfactor_list.py
More file actions
89 lines (82 loc) · 2.18 KB
/
factor_list.py
File metadata and controls
89 lines (82 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
relative = [
"allInPings",
"assistMePings",
"assists",
"baitPings",
"basicPings",
"bountyLevel",
"commandPings",
"champLevel",
"consumablesPurchased",
"damageDealtToBuildings",
"damageDealtToObjectives",
"damageDealtToTurrets",
"damageSelfMitigated",
"dangerPings",
"deaths",
"doubleKills",
"enemyMissingPings",
"enemyVisionPings",
"itemsPurchased",
"killingSprees",
"kills",
"largestKillingSpree",
"largestMultiKill",
"longestTimeSpentLiving",
"getBackPings",
"goldEarned",
"goldSpent",
"holdPings",
"needVisionPings",
"neutralMinionsKilled",
"objectivesStolen",
"objectivesStolenAssists",
"onMyWayPings",
"pentaKills",
"pushPings",
"quadraKills",
"timeCCingOthers",
"totalAllyJungleMinionsKilled",
"totalDamageDealtToChampions",
"totalDamageShieldedOnTeammates",
"totalDamageTaken",
"totalEnemyJungleMinionsKilled",
"totalHeal",
"totalHealsOnTeammates",
"totalMinionsKilled",
"totalTimeSpentDead",
"totalUnitsHealed",
"tripleKills",
"turretKills",
"turretTakedowns",
"visionClearedPings",
"visionScore",
"visionWardsBoughtInGame",
"wardsKilled",
"wardsPlaced"]
relative_onehot = [
"firstBloodAssist",
"firstBloodKill",
"firstTowerAssist",
"firstTowerKill",] #위 네개는 ture,false로 돼있음
relative_total = [ "inhibitorsLost","turretsLost"]
team_first_factors = ['baron','dragon','inhibitor', 'riftHerald']
unrelative =["championId", "championName"]
need_additional_process = ["챔피언 픽", "룬 정보",
"summoner1Casts", #스펠 사용 횟수
"summoner1Id", #스펠 아이디
"summoner2Casts",
"summoner2Id",
"item0",
"item1",
"item2",
"item3",
"item4",
"item5",
"item6",]
team_factors = [
"turretsLost",
]
target = "win"
team_id = ["teamID"]
team_position = ["teamPosition"]