-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.py
85 lines (82 loc) · 2.79 KB
/
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
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
video_details = [
{
"id": "1",
"video_url": "https://www.youtube.com/watch?v=lYkUWfJV7yc",
"video_id": "6664e424d22b3a3c97bf1c5f",
"index_id": "_",
"video_name": "Scottie Scheffler Press Conference | 2024 PGA Championship Round 2"
},
{
"id": "2",
"video_url": "https://www.youtube.com/watch?v=lBP8sUCEdKQ",
"video_id": "666505d9d22b3a3c97bf1c8d",
"index_id": "_",
"video_name": "Andy Murray: Pre-Championships Press Conference | Wimbledon 2023"
},
{
"id": "3",
"video_url": "https://www.youtube.com/watch?v=KsPwmZ-MynY",
"video_id": "6664e418d22b3a3c97bf1c5c",
"index_id": "_",
"video_name": "Tiger Woods returns to Augusta National | Press Conference"
},
{
"id": "4",
"video_url": "https://www.youtube.com/watch?v=4rLPcx0Q8NU",
"video_id": "6664e422d22b3a3c97bf1c5e",
"index_id": "_",
"video_name": "Everton vs Liverpool Press Conference | Jürgen Klopp"
},
{
"id": "5",
"video_url": "https://www.youtube.com/watch?v=g1-_qNjHfWE",
"video_id": "666505e4d22b3a3c97bf1c8e",
"index_id": "_",
"video_name": "Serena Williams Semi-Final Press Conference Wimbledon 2019"
},
{
"id": "6",
"video_url": "https://www.youtube.com/watch?v=cvPBymcda8E",
"video_id": "66654808d22b3a3c97bf1ce9",
"index_id": "_",
"video_name": "Nika Muhl: UConn women's basketball postgame locker room NCAA Tournament first round"
},
{
"id": "7",
"video_url": "https://www.youtube.com/watch?v=RQ20Y1OZuH0",
"video_id": "66656e70d22b3a3c97bf1d45",
"index_id": "_",
"video_name": "MS Dhoni: The Story Continues - #CSKvGT - #IPLFinal | TATA IPL 2023 on JioCinema"
},
{
"id": "8",
"video_url": "https://www.youtube.com/watch?v=G5o2NHUADSo",
"video_id": "6665480ad22b3a3c97bf1cea",
"index_id": "_",
"video_name": "Nelly Korda Winning Press Conference | 2024 The Chevron Championship"
},
{
"id": "9",
"video_url": "https://www.youtube.com/watch?v=f6JLbSGjU9Y",
"video_id": "66654805d22b3a3c97bf1ce8",
"index_id": "_",
"video_name": "Jannik Sinner Post-Win Press Conference | Australian Open 2024"
},
{
"id": "10",
"video_url": "https://www.youtube.com/watch?v=TWk94ZLvaic",
"video_id": "66656e7bd22b3a3c97bf1d46",
"index_id": "_",
"video_name": "Mark Ben Duckett press conference | India v England | Third test, day three"
},
]
video_names = [video["video_name"] for video in video_details]
EMOTIONS = ['angry',
'disgusted',
'fearful',
'happy',
'neutral',
'other',
'sad',
'surprised',
'<unk>']