-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconstants.py
41 lines (38 loc) · 999 Bytes
/
constants.py
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
# The keys are the displayed team names in the days data and the values are the internal names of each team.
TEAM_NAMES = {
'SK': 'SK',
'KIA': 'KIA',
'NC': 'NC',
'LG': 'LG',
'kt': 'KT',
'삼성': 'SAMSUNG',
'두산': 'DOOSAN',
'넥센': 'NEXEN',
'롯데': 'LOTTE',
'한화': 'HANHWA',
}
# The keys are the displayed stadium names in the days data and the values are the internal
# names of each stadium.
STADIUM_NAMES = {
'문학': "MoonHak",
'대구': "DaeGu",
'잠실': "JamSil",
'대전': "DaeJun",
'마산': "MaSan",
'목동': "MokDong",
'광주': "GwangJu",
'상동': "SangDong",
'울산': "UlSan",
'사직': "SaJik",
'포항': "PoHang",
'청주': "Chung Joo",
'고척': 'GoChuk',
'수원': 'SuWon'
}
## SELU
ALPHA = 1.6732632423543772848170429916717
SCALE = 1.0507009873554804934193349852946
DROP_ALPHA = -1.7580993408473766
## Data location
DATA_17 = "2017_data.txt"
DATA_16 = "2016_data.txt"