clamepending commited on
Commit
67dba86
1 Parent(s): b7dd7d2

tokenizer done

Browse files
Files changed (6) hide show
  1. app.py +67 -0
  2. flagged/log.csv +2 -0
  3. logic_lyrics.txt +1149 -0
  4. logic_tokenizer.ipynb +0 -0
  5. merge.json +1 -0
  6. vocab.json +1 -0
app.py ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import gradio as gr
3
+
4
+ import json
5
+
6
+
7
+ file_path = 'merge.json'
8
+ with open(file_path, 'r') as json_file:
9
+ merge = json.load(json_file)
10
+ file_path = 'vocab.json'
11
+ with open(file_path, 'r') as json_file:
12
+ vocab = json.load(json_file)
13
+
14
+ def get_counts(text):
15
+ counts = {}
16
+ for pairs in zip(text, text[1:]):
17
+ counts[str(pairs[0]) + "_" + str(pairs[1])] = counts.get(str(pairs[0]) + "_" + str(pairs[1]), 0) + 1
18
+ return counts
19
+
20
+ def merge_token(token_pattern, text, symbol):
21
+ i = 0
22
+ new_text = []
23
+
24
+ token_pattern = token_pattern.split("_")
25
+ token_pattern = [int(x) for x in token_pattern]
26
+ while i < len(text):
27
+ if i + 1 < len(text) and text[i] == token_pattern[0] and text[i+1] == token_pattern[1]:
28
+ # print("found pattern")
29
+ new_text.append(symbol)
30
+ i += 2
31
+ else:
32
+ new_text.append(text[i])
33
+ i += 1
34
+ return new_text
35
+
36
+ def encode_sequence(sequence):
37
+ tokens = list(sequence.encode('utf-8'))
38
+ # print(tokens)
39
+
40
+
41
+ while len(tokens) >= 2:
42
+ counts = get_counts(tokens)
43
+ pair = min(counts, key=lambda x: merge.get(x, float('inf')))
44
+ # print(pair)
45
+ # print(merge)
46
+ if pair not in merge:
47
+ break
48
+ # print("pair: ", pair, merge[pair])
49
+ symbol = int(merge[pair])
50
+ tokens = merge_token(pair, tokens, symbol)
51
+ # print("tokens: ", tokens)
52
+ return tokens
53
+
54
+ def decode_sequence(sequence):
55
+ # print(sequence)
56
+ bitstring = b"".join([vocab[str(token)].encode('utf-8') for token in sequence])
57
+ return bitstring.decode('utf-8', errors='replace')
58
+
59
+ def tokenize(input):
60
+ encoded = encode_sequence(input)
61
+ return [decode_sequence([token]) for token in encoded], len(input)/len(encoded)
62
+
63
+
64
+ examples = ["ayyyy whats up 👋", "Okay now picture little Bobby just a youngin' runnin' round", "Peace is when you leave it in the past, let it heal like a cast;When enough time pass, then you blast;Kinda like John Wick, bars like a convict;Fuck around and you don't wanna start shit, woo!"]
65
+
66
+ intf = gr.Interface(fn=tokenize, inputs="text", outputs=["text", gr.components.Number()], examples=examples, title = "Logic Tokenizer", description="Logic Tokenizer tokenizes your text based on BPE run on the top 10 songs by logic. The vocab size is 512, and expanded from an original 256 from utf-8")
67
+ intf.launch(inline=True, share=True)
flagged/log.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ input,output,flag,username,timestamp
2
+ hello,,,,2024-03-02 16:32:18.149837
logic_lyrics.txt ADDED
@@ -0,0 +1,1149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ I’ve been on the low
2
+
3
+ I been taking my time
4
+ I feel like I’m out of my mind
5
+ It feel like my life ain’t mine
6
+ Who can relate?
7
+ I’ve been on the low
8
+ I been taking my time
9
+ I feel like I’m out of my mind
10
+ It feel like my life ain’t mine
11
+
12
+ I don’t wanna be alive
13
+ I don’t wanna be alive
14
+ I just wanna die today
15
+ I just wanna die
16
+ I don’t wanna be alive
17
+ I don’t wanna be alive
18
+ I just wanna die
19
+ And let me tell you why
20
+
21
+ All this other shit I’m talkin’ ’bout they think they know it
22
+ I’ve been praying for somebody to save me, no one’s heroic
23
+ And my life don’t even matter
24
+ I know it, I know it, I know I’m hurting deep down but can’t show it
25
+ I never had a place to call my own
26
+ I never had a home
27
+ Ain’t nobody callin’ my phone
28
+ Where you been? Where you at? What’s on your mind?
29
+ They say every life precious but nobody care about mine
30
+
31
+ I’ve been on the low
32
+ I been taking my time
33
+ I feel like I’m out of my mind
34
+ It feel like my life ain’t mine
35
+ Who can relate?
36
+ I’ve been on the low
37
+ I been taking my time
38
+ I feel like I’m out of my mind
39
+ It feel like my life ain’t mine
40
+
41
+ I want you to be alive
42
+ I want you to be alive
43
+ You don’t gotta die today
44
+ You don’t gotta die
45
+ I want you to be alive
46
+ I want you to be alive
47
+ You don’t gotta die
48
+ Now lemme tell you why
49
+
50
+ It’s the very first breath
51
+ When your head’s been drowning underwater
52
+ And it’s the lightness in the air
53
+ When you’re there
54
+ Chest to chest with a lover
55
+ It’s holding on, though the road’s long
56
+ And seeing light in the darkest things
57
+ And when you stare at your reflection
58
+ Finally knowing who it is
59
+ I know that you’ll thank God you did
60
+
61
+ I know where you been, where you are, where you goin’
62
+ I know you’re the reason I believe in life
63
+ What’s the day without a little night?
64
+ I’m just tryna shed a little light
65
+ It can be hard
66
+ It can be so hard
67
+ But you gotta live right now
68
+ You got everything to give right now
69
+
70
+ I’ve been on the low
71
+ I been taking my time
72
+ I feel like I’m out of my mind
73
+ It feel like my life ain’t mine
74
+ Who can relate?
75
+ I’ve been on the low
76
+ I been taking my time
77
+ I feel like I’m out of my mind
78
+ It feel like my life ain’t mine
79
+
80
+ I finally wanna be alive (finally wanna be alive)
81
+ I finally wanna be alive
82
+ I don’t wanna die today (hey)
83
+ I don’t wanna die
84
+ I finally wanna be alive (finally wanna be alive)
85
+ I finally wanna be alive (oh)
86
+ I don’t wanna die (no, I don’t wanna die)
87
+ I don’t wanna die
88
+ (I just wanna live)
89
+ (I just wanna live)
90
+
91
+ Pain don’t hurt the same, I know
92
+ The lane I travel feels alone
93
+ But I’m moving ’til my legs give out
94
+ And I see my tears melt in the snow
95
+ But I don’t wanna cry
96
+ I don’t wanna cry anymore
97
+ I wanna feel alive
98
+ I don’t even wanna die anymore
99
+ Oh I don’t wanna
100
+ I don’t wanna
101
+ I don’t even wanna die anymore
102
+
103
+ [Intro]
104
+ Yeah, uh, yeah
105
+
106
+ [Verse 1]
107
+ Livin' life like this
108
+ Gotta paint a picture when I write like this
109
+ Tales from my hood, not a sight like this
110
+ Where they up to no good on a night like this
111
+ And they murder motherfuckers just 'cause
112
+ Type of shit I see, you probably wonder where I was
113
+ I was in the crib, just sittin' on the rug
114
+ Basedheads comin' through lookin' for the plug
115
+ Now, born and raised in my area
116
+ Beautiful by day, by night it's hysteria
117
+ Fuck around and bury ya tonight
118
+ Ridin' with my homies on sight
119
+ Momma tell me to come in at night
120
+ Now I really gotta go, but they never know
121
+ Livin' life to the fullest, I gotta blow
122
+ Po-po finna bust in the door, we got blow in the crib
123
+ In the kitchen over there next to the baby with the bib
124
+ Goddamn, what it feel like, middle of the night
125
+ Wakin' up, scared for my life
126
+ Never had the heat, just a knife
127
+ When the gat go blat like that
128
+ Guarantee you it’s a wrap
129
+ Finna put you on your back like that
130
+ Just breathe, while their mama grieve
131
+ Bullet to the dome like an Aleve
132
+ Gotta leave for the premises, to murder my nemesis
133
+ No, no, uh, uh, just stop, stop, stop
134
+ ‘Fore they even call the cops
135
+ Do it for the money and the bitches
136
+ And the drugs and the props
137
+ Tell me why another body even gotta drop
138
+ Get shot off top for some shit that was gang related
139
+ See rap shows near Brooklyn
140
+ Get tickets as low as $40
141
+ You might also like
142
+ Lightyear
143
+ Logic
144
+ Shimmy
145
+ Logic
146
+ Village Slum
147
+ Logic
148
+ [Break: News Report Sample]
149
+ Up first at five tonight, breaking news in Gaithersburg, where a massive manhunt is underway after a deadly shooting. It's all unfolding in the 400 block of West Deer Park and 355. Our Montgomery County reporter joins us, with the latest tonight
150
+
151
+ [Verse 2]
152
+ Livin' life like this
153
+ Hope little Bobby never fight like this
154
+ Stab a motherfucker with a knife like this
155
+ All about the money on a night like this
156
+ Run up in the crib, put a bullet in your rib
157
+ Got a lot to give, but I never had the chance
158
+ Never had the chance, yeah
159
+ Stay strapped, but I hate it when I take it out
160
+ If you want it I'ma lay it out
161
+ Hope my little brother make it out
162
+ Every night what I pray about what I pray about
163
+ Check it, uh yeah, got a son on the way
164
+ But I cling to the streets even though I wanna run away
165
+ I imagine a better life
166
+ Where I never had a debt in life
167
+ Hit you with the *gunshots* in the dead of night
168
+ Sellin' crack to my own pops
169
+ Pushin' this weight on my own block
170
+ If I sell a brick I can buy a house
171
+ If they find the key they might lock me up
172
+ But I take the chance 'cause I need that shit and don’t give a fuck
173
+ Take the chance, 'cause I need that shit and don’t give a fuck
174
+ [Pause] — Get down or lay down
175
+ Hit ya with the Beretta, you better stay down
176
+ Stray shots on the playground
177
+ Livin' how I'm livin' with the life that I'm given
178
+ Anybody that’s ridin' with me, I’m ridin' with 'em
179
+ Show me the enemy, and I'ma hit 'em
180
+ The second I bit 'em, I get 'em
181
+ And hit 'em with the venom
182
+ Ain’t no need to pretend I'ma never do it
183
+ I knew it, already been through it
184
+ I do it for the street, for the fam, for the life
185
+ Anybody that's gang related
186
+
187
+ [Intro: Smokey Legendary, Logic & Both]
188
+ Son, you know why you the greatest alive?
189
+ Why, Dad?
190
+ Because you came out of my balls, nigga
191
+ Hahahahahaha
192
+ (Roof!)
193
+
194
+ [Chorus: Logic]
195
+ Fuck rap
196
+ Bustin' like an addict with a semi-automatic
197
+ Who done had it, and he ready for anybody to buck back
198
+ Hold up, catch a vibe, ain't no way in hell we leavin' nobody alive
199
+ Leave a suicide note, fuck that
200
+ Bobby feelin' villainous, he killin' this
201
+ I'm comin' for your man and his lady and even the baby
202
+ I'm feelin' like I'm, chika-chika-chika, Slim Shady with rabies
203
+
204
+ [Verse 1: Logic]
205
+ I'm foamin' at the mouth, ain't nobody takin' me out
206
+ Every single rapper in the industry, yeah, they know what I'm about
207
+ And I dare you to test me
208
+ 'Cause not a single one of you motherfuckers impress me
209
+ And maybe that's a little bit of an exaggeration
210
+ But I'm full of innovation
211
+ And I'm tired of all of this high school "He's cool, he's not" rap shit
212
+ Can a single one of you motherfuckers even rap? Shit
213
+ No, this ain't a diss to the game, this is gas to the flame
214
+ Nowadays, everybody sound the same, shit's lame
215
+ Like a moth to the flame, I'ma reel 'em in and kill 'em
216
+ Know you feelin' lyricism when I'm spillin' it, I'm feelin' myself
217
+ Yeah, yeah, Bobby Boy, he be feelin' himself
218
+ Mass murder like this can't be good for my health
219
+ When I rap like this, do I sound like shit?
220
+ Well, it don't really matter, 'cause I'm killin' this shit
221
+ Yeah, I'm killin' this shit
222
+ Oh yeah, oh yeah, I'm killin' this shit
223
+ Bobby, how many times you been killin' this shit?
224
+ Find another rhyme, goddamn, nigga, shit
225
+ See rap shows near Brooklyn
226
+ Get tickets as low as $40
227
+ You might also like
228
+ ​all-american bitch
229
+ Olivia Rodrigo
230
+ ​making the bed
231
+ Olivia Rodrigo
232
+ K-POP
233
+ Travis Scott
234
+ [Chorus: Logic]
235
+ Fuck rap
236
+ Bustin' like an addict with a semi-automatic
237
+ Who done had it, and he ready for anybody to buck back
238
+ Hold up, catch a vibe, ain't no way in hell we leavin' nobody alive
239
+ Leave a suicide note, fuck that
240
+ Bobby feelin' villainous, he killin' this
241
+ I'm comin' for your man and his lady and even the baby
242
+ I'm feelin' like I'm, chika-chika-chika-chika
243
+ Chika-chika-chika-chika-chika, Slim Shady
244
+
245
+ [Verse 2: Logic]
246
+ There's nowhere to hide, we call this shit genocide
247
+ Hit 'em with that (Do-do-do) and they die
248
+ We gon' leave 'em crucified, we call this shit genocide
249
+ I got bitches, I got hoes, I got rare designer clothes
250
+ No, we ain't fuckin' with that
251
+ Yeah, there's a time and a place
252
+ But if you ain't comin' with the illest of raps
253
+ Callin' yourself the greatest alive
254
+ Then you don't deserve to do that
255
+ No, no, oh no, no, please do not do that
256
+ You gon' get smacked
257
+ You gon' make Bobby attack
258
+ You gon' make Bobby Boy snap
259
+ You gon' make Bobby Boy snap (Bobby Boy!)
260
+ [Chorus: Logic]
261
+ Fuck rap
262
+ Bustin' like an addict with a semi-automatic
263
+ Who done had it, and he ready for anybody to buck back
264
+ Hold up, catch a vibe, ain't no way in hell we leavin' nobody alive
265
+ Leave a suicide note, fuck that
266
+ Bobby feelin' villainous, he killin' this
267
+ I'm comin' for your man and his lady and even the baby
268
+ I'm feelin' like I'm chika-chika-chika-chika
269
+ Chika-chika-chika-chika-chika, Slim Shady
270
+
271
+ [Verse 3: Eminem]
272
+ Jigga-jigga-jigga-jigga-jigga like JAY-Z
273
+ Jig is up, you fuckers who didn't write anything
274
+ Are getting washed, liga-liga-liga, like bathing
275
+ Young Hova, I know hitters like Yankees
276
+ Gun toters that pull triggers like crazy
277
+ Unloadin', leave you shot up in your Rover
278
+ Your body goes limp and slumps over
279
+ Like A-Rod in a month lull, but he just homered
280
+ Hol' up, I said "Rover" because now your Rover is red
281
+ Like Red Rover, so you know what I meant
282
+ But I roll over my opponents instead
283
+ Makin' dog sounds 'cause I gotta keep breakin' these bars down
284
+ I'll go slow for the speds
285
+ But when I go (Roof!) like the Dobermann said
286
+ I still think the (Roof!) would go over your head (Ha-ha)
287
+ Beast mode, motherfuckers 'bout to get hit
288
+ With so many foul lines, you'll think I'm a free throw
289
+ Figured it was about time for people to eat crow
290
+ You about to get out-rhymed, how could I be dethroned?
291
+ I stay on my toes like the repo, a behemoth in sheep's clothes
292
+ From the East Coast to the West, I'm the ethos and I'm the G.O.A.T
293
+ Who the best, I don't gotta say a fuckin' thing, though
294
+ 'Cause MCs know
295
+ But you don't wanna hear me spit the facts
296
+ Your shit is ass like a tailbone
297
+ Or you're trapped in your cell phone
298
+ Or my chicken scratch, or my self-loathe
299
+ I don't wanna fuckin' listen to you spit your raps someone else wrote
300
+ Used to get beat up by the big kids
301
+ Used to let the big kids steal my big wheel
302
+ And I wouldn't do shit but just sit still
303
+ Now money's not a big deal
304
+ I'm rich, I wipe my ass with six mill'
305
+ Big bills like a platypus
306
+ A caterpillar's comin' to get the cannabis
307
+ I'm lookin' for the smoke but you motherfuckers are scatterin'
308
+ Batterin' everything and I've had it with the inadequate
309
+ Man, I can see my dick is standin' stiff as a mannequin
310
+ And I'm bringin' the bandana back, and the fuckin' headband again
311
+ A handkerchief and I'm thinkin' of bringin' the fuckin' fingerless gloves back
312
+ And not giving a singular fuck, like fuck rap
313
+ I sound like a fuckin' millionaire
314
+ With a Derringer with a hair trigger
315
+ 'Bout to bear hug a fuckin' terrier, the Ric Flair dripper
316
+ Y'all couldn't hold a candle at a prayer vigil
317
+ When I vent, they compare me to a fuckin' air duct
318
+ I'm 'bout to bare-knuckle it, nah, fuck it
319
+ I'm gonna go upside their head with a Nantucket
320
+ Abraca-fuckin'-dabra
321
+ The track is the blood, I'm attracted, I'm attackin' it
322
+ What? Dracula, fuck that shit
323
+ I'm up, back with a thud
324
+ Man, stop
325
+ [Outro: Chris D'Elia]
326
+ Look what I'm plannin', plannin', I'm plannin' to
327
+ Do all this while ya panickin'
328
+ And you're lookin' and starin' at mannequins
329
+ And I'm goin' to Fanagans
330
+ Trying to get up a plan against
331
+ All of the blana-kazana-ka-fam-bam-bannigans
332
+ While of all the bana-kazanika Hanna in a cabana
333
+ You're in a cab-
334
+ I'm in a cabana and a Janet
335
+ I'm in a cabana chantin' all this standup banter
336
+ While you don't got the stamina, you're lackin' the stamina
337
+ You're lackin' the stamina while you're divorcin' Harrison Ford
338
+ And I'm in a Porsche on the floorboards
339
+ While I'm world tourin'
340
+ You usin' way too many napkins, papkins
341
+ Lapkins and chapki-
342
+ You using ChapStick and napkins while I'm bapkin'
343
+ Flappin' around like a bapkin'
344
+ Flamminababbitapannitajampkin
345
+ Dammit, a can of pada-
346
+
347
+ [Verse 1]
348
+ Ayy, bitch, I've been goin' and goin' like the Energizer
349
+ Yeah, I'm supplyin' the wood like Elijah
350
+ In the cut, smokin' on indica
351
+ Might fuck around and compartmentalize ya
352
+ They say, they say life is a bitch
353
+ And if that is the case then I'm finna surprise her
354
+ No, I am not an advisor, but I do advise ya
355
+ To pay attention, never need to mention
356
+ I'm that motherfucker bustin' heads
357
+ Finna push it to the ledge
358
+ Yeah, I been smokin' my meds
359
+ Ain't got no love for the feds
360
+ Can't let fame go to yo' head
361
+ Fuck with me, watch where you tread
362
+ I'm finna kill it instead
363
+ I'm finna, I'm finna, I'm finna
364
+ I will, I will, do it like I never done it
365
+ And I wanna run it and I wanna keep it goin' and goin'
366
+ Like infinity, be the only entity to ever rip it apart
367
+ From the start like this, from the heart like this
368
+ Finna murder it, a million miles a minute, no nitrous
369
+ Doin' righteous
370
+ I-I been, I-I-I been down this road before
371
+ Everybody think that they do but they don't
372
+ Swear to God that they would but they won't
373
+ Spittin' riddles in the middle of a past-time
374
+ Me in my mind, feelin' divine, like yeah
375
+ Finna get it like yeah—yeah
376
+ Like yeah, like yeah (Woo, woo, woo, woo)
377
+ I done made 20 million dollars (Preach)
378
+ I don't flex to be acknowledged (Preach)
379
+ At this point it's common knowledge (Preach)
380
+ All you haters been abolished (Preach)
381
+ You in the club throwin' dollars, but I'm savin' mine so my kids go to college (Preach)
382
+ Or maybe whatever they wanna do (Preach)
383
+ Just as long as they never say (Preach)
384
+ "Daddy blew 20 million dollars (Ayy)
385
+ He had to flex to be acknowledged (Ayy)
386
+ He in the club throwin' dollars
387
+ And now cannot afford to send me to college (Ayy)
388
+ Daddy just wanna be loved
389
+ Just like everybody wanna be accepted (Ayy)
390
+ But somehow he had neglected
391
+ Me and my momma for all of this rap shit" (Ayy)
392
+ No, I cannot fuck with that shit (Ayy)
393
+ No, I cannot fuck with that
394
+ See rap shows near Brooklyn
395
+ Get tickets as low as $40
396
+ You might also like
397
+ ‌solace
398
+ Earl Sweatshirt
399
+ #PanicRoomJP
400
+ MC松島 (MC MATUSIMA)
401
+ The Moss
402
+ Cosmo Sheldrake
403
+ [Verse 2]
404
+ Who you know dropped an album
405
+ Back to back to back to back to back to back again?
406
+ I'm back again to snap again
407
+ And goddamnit, it ain't no other way around it
408
+ Yeah, it's happenin', 'cause I've been livin' in a world on my own
409
+ Leave me alone, I'm in the zone
410
+ Where I've been prone to destroy shit
411
+ You cannot avoid this, wack mothafuckas have annoyed this
412
+ Yes, you know I enjoy this
413
+ Preach, mothafuckin' preach
414
+ Yeah, I'm tryna reach everybody in the streets
415
+ Writin' words to the beats
416
+ Each one teach one, yeah, I'm tryna reach one
417
+ Who the beast one?
418
+ That be me, on the top to the East one
419
+ Tell me how you really wanna do it right now, time to murder this
420
+ Shout out everybody, no fuckin' around, ain't heard of this
421
+ Heard of us, we ain't goin' nowhere, it's a herd of us
422
+ Hold up, roll up
423
+
424
+ [Verse 3]
425
+ Levitated like I'm David Blaine
426
+ Livin' a dream like I'm David Aames
427
+ Talk all you want, we are not the same
428
+ Step in the spot, now they know the name
429
+ Sold more albums my first week than Harry Styles and Katy Perry
430
+ If that ain't a sign of the times
431
+ Then I don't know what is, man this shit is scary
432
+ 'Cause bitch, I've been blowin' up like C-4
433
+ And I'm 3 for 3 like a free throw
434
+ Anybody hatin' on the boy, take a step back and then deep-throat
435
+ Now my phone blowin' up like ring
436
+ Like ring, ring, ring, ring, ring, ring, ring, ring, ring, ring, ring!
437
+ That Kevin Durant, I'm a champion
438
+ Check the numbers, I'm a champion
439
+ Can't sleep on the boy anymore
440
+ But the haters that love to hate gon' pop an Ambien
441
+ Star Lord, champion
442
+ Know the name, now they know the alias, that's for sure
443
+ Gave 'em 44, now here's 44 more
444
+
445
+ [Intro]
446
+ Okay I was gone for a minute but I'm back now
447
+ Sit the fuck back down
448
+ Seem like everybody nowadays Hollywood
449
+ Oh, it’s like that now?
450
+ I'ma show you mothafuckas how to act now
451
+ I'ma show 'em how to act
452
+ I'ma show 'em how to act
453
+
454
+ [Verse 1]
455
+ Okay now picture little Bobby just a youngin' runnin' round
456
+ With his mans, hammer in his hands, feelin' like the man
457
+ Run, mothafucka, run
458
+ Before the popo get the gun, put it to your brain like goddamn!
459
+ Everybody know you ain't about it
460
+ Everything you talk about I know I can live without it
461
+ Red light, stop. Green light, go!
462
+ Everything ain't what it seem like
463
+ Mothafucka I know!
464
+ Hold up, what you mean, where you been?
465
+ Bitch, I been in
466
+ This is merely the beginning again
467
+ What you been living in?
468
+ A box, under the bridge, like Anthony Kiedis?
469
+ Looking for something to complete us
470
+ And maybe lead us, fuck an elitist
471
+ Hell of a long way from equal is how they treat us
472
+ Body of a builder with the mind of a fetus
473
+ Turn on the television and see the vision they feed us
474
+ And I wish I could erase that, face facts
475
+ See rap shows near Brooklyn
476
+ Get tickets as low as $40
477
+ You might also like
478
+ Amen
479
+ Drake
480
+ Hallelujah
481
+ Logic
482
+ ​logical
483
+ Olivia Rodrigo
484
+ [Chorus]
485
+ Everybody people, everybody bleed, everybody need something
486
+ Everybody love, everybody know, how it go
487
+ Everybody people, everybody bleed, everybody need something
488
+ Everybody love, everybody know
489
+
490
+ [Verse 2]
491
+ I been knockin' doors down like a Jehovah witness
492
+ God as my witness, I'm with this
493
+ But on the real, I think I need another witness!
494
+ If it was 1717, black daddy, white momma wouldn't change a thing
495
+ Light skin mothafucka certified as a house nigga
496
+ Well I'll be God damned, go figure
497
+ In my blood is the slave and the master
498
+ It's like the devil playin' spades with the pastor
499
+ But he was born with the white privilege!
500
+ Man, what the fuck is that?
501
+ White people told me as a child, as a little boy, playin' with his toys
502
+ I should be ashamed to be black
503
+ And some black people look ashamed when I rap
504
+ Like my great granddaddy didn’t take a whip to the back
505
+ Not accepted by the black or the white
506
+ I don't give a fuck, praise God, I could see the light
507
+ Everybody talkin' 'bout race this, race that
508
+ I wish I could erase that, face facts
509
+ [Chorus]
510
+ Everybody people, everybody bleed, everybody need something
511
+ Everybody love, everybody know, how it go
512
+ Everybody people, everybody bleed, everybody need something
513
+ Everybody love, everybody know
514
+
515
+ [Outro]
516
+ Okay I was gone for a minute but I'm back now
517
+ Sit the fuck back down
518
+ Seem like everybody nowadays Hollywood
519
+ Oh, it's like that now?
520
+ I'ma show you mothafuckas how to act now
521
+ I'ma show 'em how to act
522
+ I'ma show 'em how to act
523
+
524
+ [Intro]
525
+ Attention Deficit Hyperactivity Disorder, or better known as ADHD, is a mental disorder that affects an individual's ability to focus
526
+ Causing them to move around more frequently
527
+ They may also have trouble controlling their impulsive behaviors
528
+
529
+ [Chorus: Joyner Lucas]
530
+ One time for them prayin' on my downfall (Yeah)
531
+ Two times for the homies in the chow hall (Whoa)
532
+ Three times for them hoes on the internet
533
+ Shittin' on niggas when they really should get out more
534
+ Four times for the days that were all bad (Woo!)
535
+ Five times for the bitches who ain't called back (Yeah)
536
+ Six times for the kids like me who got ADHD just to— (Brap, brap, brap)
537
+
538
+ [Verse 1: Joyner Lucas]
539
+ Kidnap a nigga like ISIS (Whoa)
540
+ Turn a whole world to a crisis (Whoa)
541
+ Walk around the city with a ice pick
542
+ I been paranoid, usually, I ain't like this (Boop, boop)
543
+ Ain't no tellin' how crazy I might get, uh (Woo!)
544
+ Beat the police with a nightstick (Boop)
545
+ In my whole life, I been lifeless
546
+ Now I'm so fly, I'm a muhfuckin' flight risk (Woo! Whoa)
547
+ Fuck a couple hoes 'til I pass out (Whoa)
548
+ Niggas throwin' stones at my glass house (Whoa)
549
+ I remember sleepin' on my dad's couch (Whoa)
550
+ Now I got the Bentley, and it's blacked out (Whoa)
551
+ Family lookin' at me like a cash cow (Whoa)
552
+ E'rybody dissin' just to have clout (Whoa)
553
+ Thought you had a chance, now you assed out
554
+ Nigga, I'm the muhfuckin' man, where you at now? (Whoa)
555
+ Fuck it, I'ma hit 'em 'til they jumpin'
556
+ I ain't trippin', this is nothin' (Brap, brap, brap)
557
+ I been livin' in the dungeon
558
+ I done held a couple grudges
559
+ Went to hell and got abducted
560
+ Meet the devil, I'm his cousin
561
+ I ain't settlin' for nothin' (Brap, brap, brap)
562
+ Got a metal in the truck, I keep a semi when I'm bussin'
563
+ Niggas duckin' (Bop)
564
+ Even Stevie Wonder could've see it comin' (Brrrap, brap, bop)
565
+ I ain't judgin', I just want the money, I don't need a budget
566
+ I been hungry, I ain't got no oven (Bop, bop, brrrap, brap)
567
+ But I got the munchies, nigga
568
+ How you gon' move on the front line? (Woo!)
569
+ If I don't fuck with you, I just cut ties (Whoa)
570
+ My high school teacher said I'd never be shit
571
+ Tell that bitch that I turned out just fine (Joyner)
572
+ And no, I don't know you for the twelfth time (Woo!)
573
+ We do not share the same bloodline (No)
574
+ You love to run your mouth like a tough guy
575
+ Hope you keep the same energy when it's crunch time (Woo!)
576
+ See rap shows near Brooklyn
577
+ Get tickets as low as $40
578
+ You might also like
579
+ All Of The Girls You Loved Before
580
+ Taylor Swift
581
+ SKITZO
582
+ Travis Scott
583
+ ​redrum
584
+ 21 Savage
585
+ [Interlude]
586
+ According to the American Psychiatric Association
587
+ It affects roughly eight percent of children
588
+ And two percent of adults
589
+ Commonly believed to only affect boys
590
+ Because they are perceived as rowdy and rambunctious
591
+
592
+ [Chorus: Joyner Lucas]
593
+ One time for them prayin' on my downfall (Yeah)
594
+ Two times for them bitches in the South Shore (Whoa)
595
+ Three times for them days on the block
596
+ Gettin' chased by the cops like a motherfuckin' outlaw
597
+ Four times for the days that were all bad (Woo!)
598
+ Five times for the bitches who ain't called back (Yeah)
599
+ Six times for the kids like me who got ADHD just to— (Brap, brap, brap)
600
+
601
+ [Verse 2: Logic]
602
+ Me and Joyner need a couple hearses (Woo!)
603
+ Double homicide, kill the beat and the verses
604
+ Everybody livin' on the surface
605
+ But we came from the underground, yeah, we deserve it
606
+ What's beef?
607
+ Beef is when you murder motherfuckers on a beat
608
+ Kill 'em all, kill 'em all
609
+ Nah, nah, what's beef?
610
+ Beef is brothers dyin' over shit
611
+ That never mattered in the first place, lyin' in the street
612
+ What's peace?
613
+ Peace is when you leave it in the past, let it heal like a cast
614
+ When enough time pass, then you blast
615
+ Kinda like John Wick, bars like a convict
616
+ Fuck around and you don't wanna start shit, woo!
617
+ Comin' with the hot shit, all they do is talk shit
618
+ You could never top it, boy, just stop, stop it
619
+ High and drunk, call that HD vision
620
+ All these other motherfuckers full of indecision
621
+ And I murder with precision all over your television
622
+ I'm numero uno, number one and you is just a subdivision
623
+ Never listen, we gon' leave them missin'
624
+ That's the mission like ISIS (ISIS)
625
+ Ain't no time to bicker over who the nicest
626
+ It's Logic, it's obvious, just ask the audience
627
+ I've come to body this shit (Body this shit)
628
+ Yes, it's egregious, I'm Regis, you Kelly, you pussy (You pussy)
629
+ Don't push me, I'm Louis Vuitton
630
+ You at Target with your mom
631
+ On the internet still hatin' on my last post (I hate this nigga)
632
+ I just sent a steak back at Mastro's, my god
633
+ Me and Joyner need a couple hearses (Woo!)
634
+ Double homicide, kill the beat and the verses
635
+ Everybody livin' on the surface
636
+ But we came from the underground, yeah, we deserve it
637
+ Yeah, uh, far from the minimum, killin' 'em with no Ritalin
638
+ And 5'9" was the middleman to get 'em in the same room
639
+ Now we on the same tune and we sealed the game's doom
640
+ The illest of lyricists on the same shit
641
+ RattPack, clap back on the gang shit
642
+ Do it for the love of rap, not for the fame shit, woo!
643
+ [Chorus: Logic]
644
+ One time for the Grammy that I never got
645
+ Two times for the Garden that I sold out
646
+ Three times for the street crimes that I committed
647
+ Yeah, I did it, but thank God that I made it out
648
+ Four times 'cause I'm a fuckin' bastard
649
+ Five times Platinum with my last shit
650
+ Six times for the beats and the rhymes
651
+ Fuck the heat and the crime
652
+ Keep the peace like a waistline, woo!
653
+
654
+ [Outro]
655
+ ISIS, ISIS, ISIS, ISIS, ISIS
656
+ ISIS, ISIS, ISIS, ISIS, ISIS
657
+ ISIS, ISIS, ISIS, ISIS, ISIS
658
+ ISIS, ISIS, ISIS
659
+
660
+ [Intro]
661
+ Dog 'round—from a—from a—dog 'round—once a
662
+ Dog 'round—from a—from a—dog 'round—once a
663
+ Dog 'round—from a—from a—dog 'round—once a
664
+ Dog 'round—from a—from a—dog 'round—
665
+
666
+ [Chorus]
667
+ Work so fucking much, my greatest fear is I'ma die alone
668
+ Every diamond in my chain, yeah, that's a milestone (I'm lovin' it!)
669
+ People calling me, askin' me for money, man (Uh)
670
+ The only thing I'ma give you motherfuckers is the dial tone (Yeah)
671
+
672
+ [Verse 1]
673
+ Flashbacks of a youngin' sippin' that purple Kool-Aid
674
+ Skippin' school with my homies and chiefing reefer for two days
675
+ Running from the law, livin' how I'm livin', fuck 'em all
676
+ Bumping Triple Six
677
+ Hennessy in my cup, drivin' through the sticks
678
+ Who the bitch ridin' with me?
679
+ Man, the devil tryna get me
680
+ Motivated, under-educated, and hated
681
+ But finally gettin' cake like a happy belated
682
+ Bitch I made it, we on
683
+ Buy it, break it, roll it, light it, smoke it, inhale it
684
+ Write it, record it, mix it, master it, press it up, unveil it
685
+ Feel like I've been waitin' forever, forever to inherit
686
+ This is war, I declare it
687
+ Time is money, I can't spare it
688
+ Futuristic, so simplistic
689
+ Please decipher my linguistics
690
+ Slow it down, Robitussin
691
+ I'm the king, ain't no discussion
692
+ And now we blowin' up like spontaneous human combustion
693
+ My consumption is the illest
694
+ Section eight, I know you feel this
695
+ On the come up, where they run up on you for nothin' at all
696
+ Brighter than eleven suns, this the first, where my funds?
697
+ EBT, that's the card
698
+ I thank God, I thank God, but it's hard
699
+ Uh, but it's hard
700
+ See rap shows near Brooklyn
701
+ Get tickets as low as $40
702
+ You might also like
703
+ Blind
704
+ SZA
705
+ Low
706
+ SZA
707
+ STARS
708
+ ¥$, Kanye West & Ty Dolla $ign
709
+ [Chorus]
710
+ Uh, work so fuckin' much, my greatest fear is I'ma die alone
711
+ Every diamond in my chain, yeah, that's a milestone
712
+ People callin' me, askin' me for money, man
713
+ The only thing I'ma give you motherfuckers is the dial tone
714
+
715
+ [Verse 2]
716
+ God damn, god damn, we at it again
717
+ Me and my homies that know me blowing up like the Taliban
718
+ Yeah, my stress up, but I'm blessed up
719
+ Fuck around and get messed up
720
+ When I murder the rhyme, I'm livin' divine
721
+ You know that I'm one of a kind
722
+ Lemme get it right now, ho
723
+ Draped up and I'm dripped out (And I'm dripped out)
724
+ Right now, ho
725
+ Caked up 'til I cash out and I got 'em all wonderin', "How so?"
726
+ On the down low, haters drown slow
727
+ On the down low, haters drown slow
728
+ Oh God, my God, we got it all right
729
+ Oh God, my God, we gotta get it, right?
730
+ These fuckers facades, they just a mirage, right?
731
+ I said these fuckers facades, they just a mirage, right?
732
+ Uh, tell me that they love me
733
+ Know damn well that they don't give a fuck
734
+ I be on that finger-flippin' killin' shit up in the cut
735
+ That's what's up
736
+ All these bitches out here tryna gas it up
737
+ This is everything I ever wanted, I can't pass it up
738
+ Life changed in a year, couldn't happen fast enough
739
+ "Can I do it like you do it?" That's what they be askin' us
740
+ White Benz, black card, bitch better get your plastic up
741
+ Man, this shit is hella hard, but we never actin' up
742
+ Live it up, hold on to your dream, don't ever give it up
743
+ Finally had my share of success, and shit, I can't get enough
744
+ Now they know my name through the nation
745
+ 'Cause my single like that good shit, man, always in rotation
746
+ Now they know Logic for Logic, not through my affiliations
747
+ Stackin' profit on profit, from this music I'm makin'
748
+ Even Jesus had haters, so when you feelin' forsaken
749
+ Tell 'em jealous Judases who this is, and man, that'll break 'em
750
+ And bitch, I'm still the same
751
+ Dash of autotune so y'all can feel the pain
752
+ Broke as fuck, back in that basement, not a dollar to my name
753
+ Chasin' fame, chasin' glory, 'til the day we make a story
754
+ Positive that life ain't mine, bitch you can take that shit to Maury
755
+ [Chorus]
756
+ Work so fuckin' much, my greatest fear is I'ma die alone
757
+ Every diamond in my chain, yeah, that's a milestone
758
+ People callin' me, askin' me for money, man
759
+ The only thing I'ma give you motherfuckers is the dial tone
760
+
761
+ [Verse 3]
762
+ (Hello, no one is available to take your call)
763
+ I been workin' hard, I been searchin' for God
764
+ I been workin' hard, I been searchin' for God
765
+ (Please leave a message after the tone)
766
+ Little brother, this is yo' sister, you're busy, I get you
767
+ But I insist you call me back 'cause I miss you
768
+ I wish you well, well, I wish you would call
769
+ 'Cause lately it feel like I’m just not yo' sister at all—all
770
+ Uh, I’m sorry for callin' and bawlin', I’m all in
771
+ And I feel like I'm fallin' lately, it feel like my children hate me
772
+ You tell me I'm beautiful and yet no man wanna date me
773
+ Haunted by vivid memories of that man who raped me
774
+ And lately I, I feel more and more like mommy, I know I’m me, but still
775
+ You always seemed to pick up the phone and somehow I feel
776
+ Better, but you been answerin' me lesser and lesser
777
+ So I resorted to the pills in my dresser, I'm gone
778
+ And as for... oh no, he left and he ain’t comin' back
779
+ I hate him and if I see him I swear I tell him that
780
+ No longer cookin' crack in my kitchen, cuttin' an' sellin' that
781
+ He broke my heart, that relationship been to hell and back
782
+ I been workin' hard, I been searchin' for God
783
+ I can feel the Devil around me as they all applaud
784
+ Promise you won't forget me, that you'll always be wit' me
785
+ And even when you gone I can call whenever he hit me
786
+ Under pressure, I've been feeling under pressure
787
+ [Verse 4]
788
+ Hey, son, this is your father, don't mean to bother
789
+ How are you? Heard you were in town, but I never saw ya
790
+ Tried to call ya, where are ya?
791
+ In Paris? What a beautiful destination
792
+ To perish right by the Eiffel, come now
793
+ Please don't be spiteful of all my small talk
794
+ I think we're overdue a long talk
795
+ When I see kids around the way, I say how I'm your dad
796
+ It gets me thinkin' 'bout incredible moments we've had
797
+ And on the real, I'm tryin' so hard not to bug you
798
+ But do you think you could stop rappin' about my drug use?
799
+ I'm two years clean, no longer a fiend
800
+ Yeah, I'm 57, but I feel 19
801
+ And I love you I swear, Bobby, I know you're there
802
+ And when the time is right I know that you gon' take care
803
+ Of anything I need, of yo' family
804
+ Can I have some tickets to your next show?
805
+ Would you stand wit' me?
806
+ Can I have some money for my new honey that's hella fine?
807
+ I forgot to mention I got divorced from yo' step-mom
808
+ My mind goin' crazy, but I still look hella calm
809
+ Maybe you could tell *beep*
810
+ I've been feelin' under pressure
811
+
812
+ [Interlude]
813
+ Hey, what's up, bro? This Ralph, I didn't want much, man, just calling to see what's going on. I know you're busy. Uh, Dad hit me up, it's his birthday today, but I know you know that. Uh, yeah, he calling, he be tryna introduce me to his new chick and stuff, man, I don't know how to handle that. I don't wanna tell him like nah, I ain't trying to meet her off top, you know? So what you think I should do? Text me, I know you're busy, dawg. But he been callin' me saying he wanna come down, he wanna bring his new chick and Brenda's like "Damn, he really tryna rock out with his new chick" 'cause you know we all fuck with Debbie. But I don't know, I don't know how to tell him this shit so just hit me back whenever you got the time, man, I know there's more shit on your plate. You ain't—you ain't gotta hit me, dawg, but if you do I'd appreciate it. When you back, love you, do your thing. Swag RattPack all day, boy. Alright, nigga, hit me
814
+
815
+ [Verse 5]
816
+ Uh, yeah, dear family, I'm so sorry that I've been distant
817
+ Everything changed in an instant, my time has been inconsistent
818
+ I know that you been insistin', I know that birthday I missed it
819
+ I swore I told my assistant, but I guess my mind is in another place
820
+ Thoughts off in another world, I started seein' another girl
821
+ It fell through, man, what a world
822
+ But I'm so focused on my craft, on employin' my staff
823
+ Such a perfectionist, I can't even finish this draft
824
+ This letter to the ones I love, the ones that I miss
825
+ Brothers and sisters that hit me up just to reminisce
826
+ Meanwhile, people outside of my blood askin' for favors
827
+ I don't owe you a fuckin' thing, you best switch yo' behavior
828
+ Truly remarkable how I barely know you, but somehow owe you When you don't even know 'bout the shit I go through, uh
829
+ We ain't spoken in a while, tell me sister, how yo' child?
830
+ Come now, girl, give me a smile, come on, girl, don't do me foul
831
+ Sorry I ain't call before, but I'm callin' you right now
832
+ I heard that you was poppin' E, stop resortin' to the vowel
833
+ How my mama, how she doin'? Does she know what I'm pursuin'?
834
+ I ain't talk to her in years, that relationship she ruined
835
+ But sometimes I wake up and wonder just what the fuck I'm doin'
836
+ They say family is everything, I swear that shit the truth
837
+ I should spend it all with y'all, but I spend it in the booth
838
+ This is everything I love, this is everything I need
839
+ Never sacrifice this feelin' even though my heart it bleed
840
+ This is everything I love, everything I need
841
+ Never sacrifice this feelin' even though my heart bleed
842
+ Under pressure, I've been feelin' under pressure
843
+
844
+ [Interlude]
845
+ Hey, son, I'm sorry I missed your call today, but I was in an AA meeting. Um, a friend of mine was celebrating four years so I couldn't get you right then. And then when I did call you, you weren't able to answer or whatever. Just wonderin' how things are going. Deb and I aren't together anymore, um... Livin' on my own, you know, um... Anyway, the whole family, even the family that you don’t know, my sisters and your aunts that you've never met are very proud of you. Your cousins just love you too. Anyway, son, I love you, I just want you to know that. And just keep grindin', you know? And um, I don't wanna hear you joinin' the Illuminati 'cause then I gotta kill ya. Hm-hm, I love you, son, bye
846
+
847
+ [Verse]
848
+ I can feel you in my lungs, feel you in my veins
849
+ Bloodstream only way to make it to my brain
850
+ I tried some others but man they just not as good as you
851
+ Going crazy 'cause I only feel this good with you
852
+ Maybe I'm just not as strong as I once was
853
+ When we're together lately I don't even feel a buzz
854
+ I'm addicted to this shit like it was hard drugs (Drugs)
855
+ Nikki baby, I love you but now I gotta go
856
+ 'Cause in the end what happens you already know
857
+ Probably wonder where I been at, I been laying low
858
+ But in my mind I'm wondering what I'm paying for (Paying for)
859
+ All these other bitches on my dick but I can't fuck with that
860
+ You're the only girl I need I gotta have you back
861
+ Even though you turn my lungs black (My lungs black)
862
+ Tell me where you been Jack (Been Jack)
863
+ Uh, I know this shorty that go by the name of Mary
864
+ I used to fuck her way back when I didn't know a thing
865
+ Skipping school with all my homies on some truancy
866
+ But when I ended things with her it was just you and me
867
+ Doing me good, that's what I thought at first
868
+ Me and you together, swear to God that's all that worked
869
+ Away from you though man it's just so hard to work (Hard to work)
870
+ Uh, my heart is hard at work
871
+ We been together like ten years
872
+ Goddamn, took me as a young man
873
+ Everyday I wonder who I am, who will I be, where will I go
874
+ What will they write upon my grave?
875
+ A free man born as a king, who died as a slave
876
+ But everything he gave her was for nothing though
877
+ Oh no I can't fade that shit I gotta let you go
878
+ You got me tripping like a flight to Vegas
879
+ All this shit you got me doing man it's outrageous
880
+ All I know is I'm living the life I never would
881
+ Finally let you go, I thought I never could
882
+ Don't get me wrong, can't forget the times shared
883
+ Seem like everywhere I go, I always know you're there
884
+ Tried to run but my legs won't
885
+ I look away but my head don't
886
+ I love it when you're fresh
887
+ I love it when I take your top off and we share the same breath
888
+ I hate it that I need you, Nikki
889
+ But I love it when I feed you, Nikki
890
+ I hate that I bleed for you
891
+ Uh, I long and I need for you
892
+ But I love it when I taste you (Taste you)
893
+ Nothing can replace you (Replace you)
894
+ I wish I could erase you, you’re everywhere I go
895
+ But you're everywhere I long to be
896
+ And all these other people that don't seem to understand
897
+ I'm just a man they always ask what’s wrong with me
898
+ Man you're everything I crave
899
+ You're the only thing I let in that would put me in the grave
900
+ I'm a king, you're my Coretta
901
+ But lately, I been feeling like a slave for the nicotine (Nicotine, nicotine)
902
+ See rap shows near Brooklyn
903
+ Get tickets as low as $40
904
+ You might also like
905
+ Gaithersburg Freestyle
906
+ Logic
907
+ Lightsabers
908
+ Logic
909
+ Gang Related
910
+ Logic
911
+ [Break]
912
+ Slave for the—
913
+ Said, I'm a slave for the nicotine (Nicotine, nicotine)
914
+ Been a slave for ya
915
+ I'm a muthafuckin' slave for ya
916
+ Slave for the nicotine (Nicotine, nicotine)
917
+ Nikki, Nikki, slave for ya
918
+ I'm a slave for ya Nikki
919
+ I'm a muthafuckin' slave for ya
920
+
921
+ [Outro: Thalia]
922
+ All handwriting on the album's artwork was done by Big Lenbo—
923
+
924
+ [Intro]
925
+ Jesus, Black Jesus
926
+ Jesus, Black Jesus
927
+
928
+ [Chorus]
929
+ I been feeling so down
930
+ I think they should know now
931
+ I think they should know what's up
932
+ That's that road I been down
933
+ I know how it go down
934
+ I know how it go now, what's up
935
+ I feel like I don’t belong
936
+ I feel like my life is wrong
937
+ I feel like I don’t know what's up
938
+ What's up, what's up
939
+ Yeah, yeah
940
+ Ayy
941
+
942
+ [Verse]
943
+ I ain’t here to pick and choose
944
+ I ain't here to sing the blues
945
+ I’m just here to spread the clues
946
+ I’m just here to spread the news
947
+ Everybody know I do
948
+ Listen
949
+ I ain’t ashamed to be white
950
+ I ain’t ashamed to be Black
951
+ I ain’t ashamed of my beautiful Mexican wife as a matter of fact
952
+ I know you fucking with that
953
+ And I’m not scared of the people who tell me I should be
954
+ Do what you love and don’t ever wonder what it could be
955
+ Everybody from my hood, everybody know I’m good
956
+ Sometimes I’m misunderstood
957
+ But that's just the uneducated that never related and feel like I'm fading off
958
+ They feel like I'm fading
959
+ I'm right out my mind
960
+ Tell 'em!
961
+ Momma don't love me
962
+ Daddy don't love me
963
+ Wonder why I drown in the bubbly
964
+ You could be anything you wanna be
965
+ 'Cept the person you don’t wanna be
966
+ Let him hate let em love
967
+ Wondering if everybody still like this up above
968
+ When that push come to shove
969
+ Make me wanna pull up with the, with the gat in the glove like
970
+ I just wanna be free
971
+ Not a slave to the stereotype
972
+ All alone in my room in the middle of the night
973
+ I don’t have the words but my stereo might
974
+ I don't wanna be black, I don’t wanna be white, I just wanna be a man today
975
+ I don't wanna be a Christian, Muslim, gay, straight, or bi, see you later, bye
976
+ Not perceived by the things I believe or the color of my skin
977
+ Or the fact I’m attracted to her, maybe him
978
+ Or the fact I’m a single mother living all alone
979
+ Looking for a man and a home to call my own
980
+ But I already have one
981
+ The only man I’ma ever need is my son, my son, my son, my son
982
+ Son, say:
983
+ Black is beautiful
984
+ Be black and proud
985
+ Fuck everybody hatin' on me right now, I’m black and proud
986
+ I’m just as white as that Mona Lisa
987
+ I’m just as black as my cousin Keisha
988
+ I’m biracial so bye Felicia
989
+ Praise Black Jesus now call the preacher
990
+ Maybe Jesus was black
991
+ Maybe Jesus had dreads
992
+ Spiderman should be black
993
+ I vote for Glover instead
994
+ Glover instead
995
+ Like what's up
996
+ I vote for more and more and more and more and more and more and more and more and more
997
+ I vote for so much more
998
+ See rap shows near Brooklyn
999
+ Get tickets as low as $40
1000
+ You might also like
1001
+ CARNIVAL
1002
+ ¥$, Kanye West, Ty Dolla $ign & Rich The Kid
1003
+ ​yes, and?
1004
+ Ariana Grande
1005
+ Fuck tha Police
1006
+ N.W.A
1007
+ [Chorus]
1008
+ I been feeling so down
1009
+ I think they should know now
1010
+ I think they should know what's up
1011
+ That's that road I been down
1012
+ I know how it go down
1013
+ I know how it go now, what's up
1014
+ I feel like I don’t belong
1015
+ I feel like my life is wrong
1016
+ I feel like I don’t know what's up
1017
+ What's up, what's up
1018
+
1019
+ [Bridge: Logic & Damian]
1020
+ Go on and let your soul glow
1021
+ Let your soul glow
1022
+ Glow
1023
+ Shine and glow
1024
+ Let it glow
1025
+ Glow
1026
+ Let, let it
1027
+ Black Spiderman can he save a brother now
1028
+ Black Spiderman can he save a brother now
1029
+ Yeah
1030
+ Let your soul glow
1031
+ Let your soul glow
1032
+ Glow
1033
+ Yeah
1034
+ [Skit: Logic & Sir Dylan]
1035
+ Ayy man
1036
+ What's up, bro?
1037
+ Spiderman should be Black
1038
+ Yeah, I mean Spiderman should be Black
1039
+ Fuck yeah
1040
+ Yeah man
1041
+ Black Spiderman
1042
+ Black Superman
1043
+ Black Santa Claus
1044
+ Shit, Black Seinfeld
1045
+ Black Seinfeld?
1046
+ Nigga, that's Martin!
1047
+ Damn, you're right...
1048
+ Shit, I'm fuckin' high
1049
+
1050
+ [Chorus: Logic]
1051
+ Hold up
1052
+ Let me get my mind, let me get my mind right, yeah
1053
+ Let me get my mind, let me get my mind right
1054
+ You know everything is alright
1055
+ You know everything is al-
1056
+
1057
+ [Verse 1: Logic]
1058
+ Just ride with a mothafucka
1059
+ Keep it real, never lie to a mothafucka, hold me down
1060
+ Chillin', In-A-Gadda-Da-Vida, rockin' Adidas
1061
+ With a señorita when she sippin' liquor by the liter
1062
+ That's royalty, like the homie Gambino
1063
+ He know we be in the casino, lightin' Cubans with a C-note
1064
+ I'ma fuck the game, dare you to test my libido
1065
+ Comin' up shorter than Danny DeVito
1066
+ Whenever I step on the beat, ho
1067
+ Like a killer on the creep slow
1068
+ Had my share of defeat, but we still gon' eat, ho
1069
+ While the fans bumpin' Welcome To Forever on repeat though, uh
1070
+ Wonderin' if I'ma ever fall off
1071
+ Feelin' mad at the world, wanna hit it with a sawed-off
1072
+ Blowin' up like a Molotov
1073
+ This is war, everybody, ain't no reason I'ma call it off
1074
+ Get it right, shout out to the homie Dizzy Wright
1075
+ In the studio every day
1076
+ So you know this shit about to be a busy night
1077
+ Everything is al-, everything is alright
1078
+ See rap shows near Brooklyn
1079
+ Get tickets as low as $40
1080
+ You might also like
1081
+ Playwright
1082
+ Logic
1083
+ Calling For You
1084
+ Drake
1085
+ Soul Food
1086
+ Logic
1087
+ [Interlude: Big Sean]
1088
+ It's Finally Famous over everything
1089
+ RattPack gang
1090
+ What up though, Logic? Yeah
1091
+ Day one shit right there
1092
+
1093
+ [Chorus: Logic & Big Sean]
1094
+ Hold up
1095
+ Let me get my mind, let me get my mind right, yeah
1096
+ Let me get my mind, let me get my mind right
1097
+ You know everything is alright (Sean Don)
1098
+ You know everything is al-
1099
+
1100
+ [Verse 2: Big Sean]
1101
+ Oh my God, they plottin' and schemin'
1102
+ Fuckboys rather me not even breathin'
1103
+ They tryna take my blessings away
1104
+ They gotta be demons, I'm blessed every day
1105
+ And not blessed like I'm sneezin', I'm healthy and well
1106
+ On top of my ship and I'm not even sinkin'
1107
+ And I could just sit back and say that I'm happy
1108
+ But can't spend a day without smokin' and drinkin'
1109
+ Got Champagne problems, and I order more
1110
+ My wardrobe is Aura Gold
1111
+ I'm a young nigga with a older soul
1112
+ But still young enough to know I gotta know some more
1113
+ I made somethin' out of nothin', Sean Don the magician (Good, yeah)
1114
+ She doin' tricks with her pussy, I guess she's a vagician (Good)
1115
+ She tryna hold on to a nigga sta-sta-stackin' up (Uh-huh)
1116
+ Purell for these fake niggas tryna dap-dap me up
1117
+ Hype nigga, back-back-back it up (Woah)
1118
+ Claimin' that we homies, boy stop (Stop)
1119
+ That's the type of shit I boycott
1120
+ Yellin' fuck the 5-0, state troops
1121
+ Any nigga with a badge, I don't even trust the boy scouts
1122
+ I got these good girls hoin' out
1123
+ Tell me what the fuck you know about (What?)
1124
+ Bein' that nigga that these niggas don't know about
1125
+ Then they throw you in the game
1126
+ And you mothafuckin' blow it out
1127
+ Now everything is alright
1128
+ [Chorus: Logic]
1129
+ Hold up
1130
+ Let me get my mind, let me get my mind right, yeah
1131
+ Let me get my mind, let me get my mind right
1132
+ You know everything is alright (Yeah)
1133
+ You know everything is al- (Uh, yeah)
1134
+
1135
+ [Verse 3: Logic]
1136
+ Whippin' through Gotham
1137
+ Hatin' mothafuckas, I wanna off 'em
1138
+ Hella endorphins, got me livin' life to the coffin
1139
+ I'm coughin', wonderin' if I'm goin' insane
1140
+ Nobody knowin' my pain
1141
+ But I be killin' 'cause I'm into the game
1142
+ Now lookin' back, it's like ain't nothin' the same
1143
+ All these Spanish women watchin' me like a novella
1144
+ Hit you with a Beretta, get you wetter than a umbrella
1145
+ Ain't nobody better do it like me
1146
+ I know a lot of mothafuckas don't like me, prolly wanna fight me
1147
+ But I just keep the peace, no need to keep a piece
1148
+ I keep my enemies on a leash, capiche?
1149
+ And keep it real for the people I reach
logic_tokenizer.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
merge.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"101_32": 256, "116_32": 257, "116_104": 258, "105_110": 259, "44_32": 260, "115_32": 261, "111_117": 262, "121_32": 263, "101_114": 264, "100_32": 265, "97_110": 266, "73_32": 267, "32_258": 268, "97_32": 269, "111_110": 270, "259_39": 271, "111_119": 272, "111_32": 273, "108_105": 274, "108_108": 275, "99_107": 276, "101_97": 277, "121_262": 278, "111_114": 279, "101_110": 280, "268_256": 281, "271_32": 282, "109_32": 283, "101_10": 284, "32_109": 285, "104_97": 286, "105_116": 287, "73_39": 288, "107_256": 289, "259_103": 290, "117_115": 291, "101_101": 292, "226_128": 293, "118_264": 294, "110_272": 295, "105_103": 296, "105_261": 297, "278_32": 298, "280_32": 299, "105_257": 300, "116_273": 301, "115_116": 302, "115_104": 303, "274_289": 304, "288_283": 305, "99_104": 306, "118_256": 307, "108_97": 308, "293_153": 309, "266_265": 310, "111_100": 311, "10_267": 312, "117_276": 313, "258_256": 314, "114_97": 315, "101_115": 316, "116_105": 317, "102_279": 318, "107_295": 319, "109_256": 320, "101_294": 321, "97_257": 322, "98_101": 323, "97_275": 324, "101_257": 325, "117_257": 326, "114_111": 327, "41_10": 328, "102_313": 329, "119_104": 330, "296_104": 331, "290_32": 332, "119_105": 333, "100_270": 334, "101_260": 335, "103_111": 336, "264_32": 337, "109_263": 338, "105_99": 339, "97_114": 340, "39_261": 341, "111_102": 342, "110_269": 343, "117_112": 344, "285_263": 345, "97_116": 346, "97_261": 347, "266_32": 348, "260_267": 349, "115_10": 350, "101_265": 351, "108_32": 352, "119_266": 353, "110_265": 354, "333_258": 355, "108_111": 356, "276_32": 357, "100_10": 358, "272_32": 359, "114_32": 360, "102_292": 361, "98_256": 362, "111_109": 363, "39_257": 364, "101_263": 365, "319_32": 366, "98_311": 367, "291_257": 368, "116_10": 369, "98_97": 370, "323_299": 371, "367_263": 372, "114_277": 373, "108_256": 374, "97_108": 375, "110_111": 376, "32_269": 377, "97_109": 378, "353_343": 379, "93_10": 380, "277_104": 381, "260_98": 382, "10_66": 383, "10_91": 384, "101_261": 385, "87_104": 386, "100_105": 387, "65_354": 388, "286_116": 389, "111_112": 390, "106_368": 391, "275_32": 392, "89_262": 393, "108_265": 394, "309_257": 395, "111_258": 396, "116_116": 397, "321_121": 398, "315_112": 399, "117_110": 400, "262_257": 401, "97_121": 402, "73_83": 403, "109_259": 404, "105_100": 405, "111_103": 406, "105_115": 407, "114_101": 408, "10_84": 409, "103_104": 410, "97_115": 411, "258_322": 412, "116_101": 413, "117_114": 414, "331_257": 415, "103_325": 416, "321_32": 417, "104_256": 418, "73_309": 419, "274_118": 420, "97_263": 421, "116_111": 422, "271_257": 423, "334_364": 424, "318_32": 425, "272_110": 426, "259_281": 427, "97_45": 428, "101_118": 429, "264_256": 430, "97_100": 431, "334_395": 432, "115_273": 433, "10_76": 434, "260_119": 435, "306_105": 436, "393_32": 437, "114_256": 438, "105_275": 439, "97_423": 440, "361_352": 441, "270_32": 442, "262_410": 443, "268_322": 444, "107_32": 445, "342_32": 446, "111_111": 447, "270_281": 448, "317_109": 449, "284_267": 450, "10_388": 451, "258_332": 452, "114_105": 453, "286_257": 454, "406_339": 455, "10_83": 456, "288_109": 457, "262_394": 458, "108_272": 459, "99_324": 460, "97_98": 461, "101_109": 462, "361_108": 463, "121_381": 464, "264_115": 465, "318_281": 466, "121_260": 467, "419_283": 468, "104_359": 469, "296_103": 470, "116_97": 471, "274_102": 472, "97_259": 473, "303_300": 474, "278_360": 475, "264_261": 476, "69_294": 477, "287_260": 478, "101_283": 479, "389_341": 480, "63_10": 481, "258_365": 482, "104_277": 483, "67_104": 484, "89_381": 485, "108_263": 486, "58_32": 487, "46_32": 488, "293_148": 489, "100_260": 490, "97_99": 491, "441_304": 492, "268_297": 493, "259_32": 494, "336_257": 495, "326_267": 496, "376_257": 497, "99_97": 498, "107_282": 499, "370_357": 500, "109_266": 501, "76_455": 502, "287_10": 503, "100_426": 504, "100_264": 505, "108_101": 506, "86_465": 507, "116_260": 508, "101_275": 509, "121_372": 510, "110_273": 511, "112_32": 512, "116_114": 513, "103_105": 514, "344_32": 515, "98_263": 516, "287_306": 517, "10_71": 518, "258_346": 519, "102_32": 520, "324_32": 521, "110_292": 522, "260_305": 523, "403_403": 524, "268_365": 525, "330_299": 526, "384_507": 527, "105_350": 528, "97_10": 529, "422_281": 530, "116_261": 531, "457_269": 532, "291_256": 533, "398_372": 534, "39_438": 535, "112_112": 536, "114_331": 537, "110_417": 538, "397_269": 539, "102_259": 540, "109_279": 541, "102_327": 542, "285_256": 543, "100_111": 544, "117_109": 545, "100_273": 546, "104_297": 547, "436_107": 548, "449_385": 549, "329_282": 550, "356_307": 551, "308_357": 552, "472_256": 553, "115_97": 554, "116_264": 555, "104_111": 556, "101_256": 557, "527_256": 558, "269_115": 559, "103_32": 560, "269_109": 561, "256_310": 562, "99_348": 563, "379_362": 564, "97_420": 565, "270_284": 566, "336_539": 567, "330_430": 568, "398_452": 569, "110_97": 570, "73_110": 571, "100_337": 572, "98_108": 573, "277_360": 574, "119_454": 575, "111_116": 576, "522_265": 577, "10_72": 578, "97_260": 579, "39_479": 580, "115_260": 581, "258_297": 582, "119_279": 583, "307_371": 584, "108_325": 585, "99_266": 586, "286_265": 587, "316_257": 588, "111_265": 589, "101_108": 590, "119_347": 591, "287_341": 592, "111_320": 593, "108_121": 594, "115_105": 595, "114_262": 596, "355_32": 597, "484_279": 598, "598_291": 599, "119_256": 600, "463_282": 601, "428_548": 602, "109_284": 603, "386_111": 604, "290_260": 605, "329_32": 606, "316_115": 607, "312_371": 608, "98_326": 609, "355_377": 610, "104_260": 611, "285_396": 612, "108_277": 613, "97_103": 614, "111_98": 615, "100_263": 616, "110_470": 617, "270_256": 618, "115_112": 619, "39_32": 620, "304_269": 621, "477_510": 622, "99_256": 623, "63_32": 624, "10_386": 625, "317_270": 626, "10_70": 627, "66_326": 628, "277_114": 629, "99_363": 630, "10_78": 631, "110_101": 632, "98_517": 633, "498_533": 634, "487_502": 635, "370_276": 636, "10_77": 637, "101_390": 638, "105_108": 639, "278_535": 640, "99_262": 641, "524_260": 642, "480_344": 643, "338_404": 644, "308_413": 645, "121_10": 646, "363_101": 647, "340_256": 648, "105_114": 649, "100_114": 650, "114_415": 651, "262_369": 652, "429_299": 653, "104_32": 654, "542_283": 655, "329_476": 656, "313_32": 657, "262_354": 658, "111_294": 659, "355_281": 660, "103_273": 661, "107_284": 662, "268_346": 663, "107_439": 664, "107_105": 665, "373_306": 666, "604_97": 667, "320_416": 668, "115_647": 669, "109_335": 670, "309_261": 671, "104_363": 672, "258_290": 673, "513_121": 674, "286_114": 675, "116_327": 676, "259_345": 677, "382_326": 678, "435_256": 679, "344_260": 680, "399_32": 681, "111_107": 682, "10_393": 683, "100_101": 684, "596_110": 685, "519_341": 686, "384_599": 687, "118_105": 688, "303_287": 689, "10_79": 690, "317_320": 691, "40_66": 692, "102_491": 693, "98_277": 694, "40_87": 695, "303_458": 696, "71_311": 697, "40_667": 698, "447_33": 699, "668_644": 700, "342_345": 701, "73_257": 702, "473_395": 703, "10_65": 704, "396_337": 705, "112_308": 706, "10_437": 707, "324_263": 708, "330_273": 709, "514_307": 710, "41_312": 711, "118_282": 712, "304_258": 713, "119_270": 714, "116_282": 715, "110_32": 716, "518_325": 717, "276_101": 718, "108_359": 719, "119_421": 720, "119_402": 721, "270_345": 722, "39_634": 723, "635_380": 724, "602_602": 725, "383_326": 726, "103_270": 727, "111_121": 728, "316_256": 729, "112_638": 730, "99_458": 731, "351_301": 732, "308_276": 733, "270_486": 734, "308_307": 735, "698_328": 736, "399_382": 737, "109_348": 738, "379_387": 739, "270_101": 740, "461_401": 741, "274_410": 742, "258_264": 743, "108_100": 744, "108_270": 745, "674_343": 746, "266_121": 747, "526_267": 748, "264_656": 749, "340_658": 750, "434_105": 751, "302_390": 752, "681_303": 753, "66_327": 754, "317_718": 755, "755_531": 756, "52_48": 757, "375_433": 758, "274_662": 759, "105_109": 760, "615_516": 761, "97_289": 762, "464_260": 763, "104_300": 764, "111_394": 765, "101_392": 766, "295_32": 767, "10_485": 768, "296_32": 769, "107_292": 770, "271_260": 771, "267_109": 772, "483_114": 773, "266_100": 774, "356_118": 775, "97_329": 776, "114_605": 777, "286_109": 778, "10_87": 779, "303_32": 780, "549_466": 781, "642_642": 782, "260_338": 783, "434_325": 784, "492_338": 785, "107_259": 786, "258_259": 787, "104_264": 788, "409_104": 789, "115_257": 790, "256_40": 791, "267_115": 792, "384_571": 793, "713_528": 794, "287_256": 795, "612_749": 796, "101_100": 797, "271_268": 798, "114_443": 799, "108_117": 800, "102_117": 801, "100_378": 802, "557_753": 803, "803_272": 804, "804_261": 805, "805_110": 806, "806_574": 807, "807_754": 808, "808_682": 809, "809_594": 810, "810_110": 811, "811_717": 812, "812_756": 813, "813_347": 814, "814_719": 815, "815_347": 816, "816_36": 817, "817_757": 818, "818_683": 819, "819_285": 820, "820_415": 821, "821_758": 822, "822_759": 823, "306_266": 824, "382_496": 825, "471_289": 826, "114_292": 827, "99_315": 828, "101_397": 829, "301_98": 830, "112_114": 831, "586_364": 832, "105_107": 833, "117_99": 834, "259_377": 835, "406_32": 836, "302_105": 837, "288_584": 838, "777_777": 839, "10_622": 840, "695_699": 841, "121_349": 842, "537_369": 843, "562_541": 844, "339_576": 845, "845_259": 846, "297_375": 847, "358_702": 848, "785_553": 849, "565_450": 850, "429_280": 851, "312_366": 852, "278_114": 853, "353_257": 854, "284_78": 855, "400_505": 856, "331_116": 857, "383_496": 858, "76_105": 859, "119_114": 860, "356_111": 861, "100_402": 862, "70_657": 863, "672_105": 864, "99_593": 865, "105_374": 866, "316_260": 867, "310_314": 868, "111_257": 869, "97_102": 870, "116_588": 871, "389_256": 872, "114_400": 873, "279_32": 874, "420_282": 875, "39_462": 876, "102_378": 877, "67_97": 878, "402_362": 879, "101_341": 880, "115_109": 881, "110_364": 882, "98_111": 883, "65_121": 884, "100_103": 885, "80_666": 886, "286_307": 887, "112_105": 888, "469_301": 889, "335_534": 890, "841_328": 891, "836_39": 892, "892_685": 893, "893_100": 894, "894_489": 895, "655_97": 896, "896_489": 897, "74_316": 898, "595_302": 899, "115_270": 900, "569_847": 901, "419_584": 902, "107_290": 903, "492_468": 904, "401_701": 905, "404_284": 906, "116_375": 907, "112_315": 908, "303_359": 909, "376_372": 910, "789_365": 911, "115_421": 912, "298_301": 913, "625_299": 914, "316_261": 915, "71_589": 916, "568_298": 917, "274_397": 918, "918_374": 919, "540_708": 920, "676_380": 921, "10_558": 922, "370_98": 923, "427_99": 924, "331_369": 925, "802_110": 926, "301_109": 927, "116_390": 928, "115_593": 929, "83_823": 930, "632_119": 931, "98_356": 932, "109_396": 933, "269_98": 934, "268_443": 935, "114_405": 936, "101_99": 937, "280_265": 938, "117_116": 939, "334_256": 940, "630_282": 941, "303_503": 942, "493_474": 943, "84_104": 944, "115_256": 945, "304_314": 946, "114_272": 947, "730_374": 948, "109_281": 949, "516_314": 950, "10_305": 951, "112_291": 952, "271_281": 953, "614_473": 954, "297_314": 955, "346_116": 956, "10_68": 957, "336_282": 958, "884_121": 959, "349_371": 960, "121_111": 961, "961_620": 962, "83_112": 963, "97_302": 964, "116_351": 965, "407_105": 966, "573_292": 967, "112_264": 968, "318_268": 969, "85_611": 970, "100_97": 971, "844_844": 972, "83_101": 973, "902_448": 974, "974_459": 975, "608_471": 976, "976_903": 977, "977_345": 978, "978_449": 979, "979_450": 980, "980_904": 981, "981_905": 982, "982_404": 983, "983_848": 984, "984_849": 985, "985_703": 986, "986_906": 987, "116_311": 988, "413_392": 989, "98_401": 990, "787_107": 991, "112_104": 992, "853_285": 993, "99_105": 994, "565_284": 995, "10_73": 996, "102_649": 997, "98_373": 998, "275_268": 999, "100_421": 1000, "651_295": 1001, "920_564": 1002, "409_418": 1003, "111_118": 1004, "103_261": 1005, "114_263": 1006, "336_589": 1007, "260_298": 1008, "112_327": 1009, "363_109": 1010, "413_275": 1011, "275_263": 1012, "98_105": 1013, "281_110": 1014, "99_340": 1015, "256_298": 1016, "613_307": 1017, "111_260": 1018, "376_260": 1019, "266_705": 1020, "121_629": 1021, "105_258": 1022, "66_761": 1023}
vocab.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "\u0000", "1": "\u0001", "2": "\u0002", "3": "\u0003", "4": "\u0004", "5": "\u0005", "6": "\u0006", "7": "\u0007", "8": "\b", "9": "\t", "10": "\n", "11": "\u000b", "12": "\f", "13": "\r", "14": "\u000e", "15": "\u000f", "16": "\u0010", "17": "\u0011", "18": "\u0012", "19": "\u0013", "20": "\u0014", "21": "\u0015", "22": "\u0016", "23": "\u0017", "24": "\u0018", "25": "\u0019", "26": "\u001a", "27": "\u001b", "28": "\u001c", "29": "\u001d", "30": "\u001e", "31": "\u001f", "32": " ", "33": "!", "34": "\"", "35": "#", "36": "$", "37": "%", "38": "&", "39": "'", "40": "(", "41": ")", "42": "*", "43": "+", "44": ",", "45": "-", "46": ".", "47": "/", "48": "0", "49": "1", "50": "2", "51": "3", "52": "4", "53": "5", "54": "6", "55": "7", "56": "8", "57": "9", "58": ":", "59": ";", "60": "<", "61": "=", "62": ">", "63": "?", "64": "@", "65": "A", "66": "B", "67": "C", "68": "D", "69": "E", "70": "F", "71": "G", "72": "H", "73": "I", "74": "J", "75": "K", "76": "L", "77": "M", "78": "N", "79": "O", "80": "P", "81": "Q", "82": "R", "83": "S", "84": "T", "85": "U", "86": "V", "87": "W", "88": "X", "89": "Y", "90": "Z", "91": "[", "92": "\\", "93": "]", "94": "^", "95": "_", "96": "`", "97": "a", "98": "b", "99": "c", "100": "d", "101": "e", "102": "f", "103": "g", "104": "h", "105": "i", "106": "j", "107": "k", "108": "l", "109": "m", "110": "n", "111": "o", "112": "p", "113": "q", "114": "r", "115": "s", "116": "t", "117": "u", "118": "v", "119": "w", "120": "x", "121": "y", "122": "z", "123": "{", "124": "|", "125": "}", "126": "~", "127": "\u007f", "128": "\ufffd", "129": "\ufffd", "130": "\ufffd", "131": "\ufffd", "132": "\ufffd", "133": "\ufffd", "134": "\ufffd", "135": "\ufffd", "136": "\ufffd", "137": "\ufffd", "138": "\ufffd", "139": "\ufffd", "140": "\ufffd", "141": "\ufffd", "142": "\ufffd", "143": "\ufffd", "144": "\ufffd", "145": "\ufffd", "146": "\ufffd", "147": "\ufffd", "148": "\ufffd", "149": "\ufffd", "150": "\ufffd", "151": "\ufffd", "152": "\ufffd", "153": "\ufffd", "154": "\ufffd", "155": "\ufffd", "156": "\ufffd", "157": "\ufffd", "158": "\ufffd", "159": "\ufffd", "160": "\ufffd", "161": "\ufffd", "162": "\ufffd", "163": "\ufffd", "164": "\ufffd", "165": "\ufffd", "166": "\ufffd", "167": "\ufffd", "168": "\ufffd", "169": "\ufffd", "170": "\ufffd", "171": "\ufffd", "172": "\ufffd", "173": "\ufffd", "174": "\ufffd", "175": "\ufffd", "176": "\ufffd", "177": "\ufffd", "178": "\ufffd", "179": "\ufffd", "180": "\ufffd", "181": "\ufffd", "182": "\ufffd", "183": "\ufffd", "184": "\ufffd", "185": "\ufffd", "186": "\ufffd", "187": "\ufffd", "188": "\ufffd", "189": "\ufffd", "190": "\ufffd", "191": "\ufffd", "192": "\ufffd", "193": "\ufffd", "194": "\ufffd", "195": "\ufffd", "196": "\ufffd", "197": "\ufffd", "198": "\ufffd", "199": "\ufffd", "200": "\ufffd", "201": "\ufffd", "202": "\ufffd", "203": "\ufffd", "204": "\ufffd", "205": "\ufffd", "206": "\ufffd", "207": "\ufffd", "208": "\ufffd", "209": "\ufffd", "210": "\ufffd", "211": "\ufffd", "212": "\ufffd", "213": "\ufffd", "214": "\ufffd", "215": "\ufffd", "216": "\ufffd", "217": "\ufffd", "218": "\ufffd", "219": "\ufffd", "220": "\ufffd", "221": "\ufffd", "222": "\ufffd", "223": "\ufffd", "224": "\ufffd", "225": "\ufffd", "226": "\ufffd", "227": "\ufffd", "228": "\ufffd", "229": "\ufffd", "230": "\ufffd", "231": "\ufffd", "232": "\ufffd", "233": "\ufffd", "234": "\ufffd", "235": "\ufffd", "236": "\ufffd", "237": "\ufffd", "238": "\ufffd", "239": "\ufffd", "240": "\ufffd", "241": "\ufffd", "242": "\ufffd", "243": "\ufffd", "244": "\ufffd", "245": "\ufffd", "246": "\ufffd", "247": "\ufffd", "248": "\ufffd", "249": "\ufffd", "250": "\ufffd", "251": "\ufffd", "252": "\ufffd", "253": "\ufffd", "254": "\ufffd", "255": "\ufffd", "256": "e ", "257": "t ", "258": "th", "259": "in", "260": ", ", "261": "s ", "262": "ou", "263": "y ", "264": "er", "265": "d ", "266": "an", "267": "I ", "268": " th", "269": "a ", "270": "on", "271": "in'", "272": "ow", "273": "o ", "274": "li", "275": "ll", "276": "ck", "277": "ea", "278": "you", "279": "or", "280": "en", "281": " the ", "282": "in' ", "283": "m ", "284": "e\n", "285": " m", "286": "ha", "287": "it", "288": "I'", "289": "ke ", "290": "ing", "291": "us", "292": "ee", "293": "\ufffd", "294": "ver", "295": "now", "296": "ig", "297": "is ", "298": "you ", "299": "en ", "300": "it ", "301": "to ", "302": "st", "303": "sh", "304": "like ", "305": "I'm ", "306": "ch", "307": "ve ", "308": "la", "309": "\u2019", "310": "and ", "311": "od", "312": "\nI ", "313": "uck", "314": "the ", "315": "ra", "316": "es", "317": "ti", "318": "for", "319": "know", "320": "me ", "321": "ever", "322": "at ", "323": "be", "324": "all", "325": "et ", "326": "ut ", "327": "ro", "328": ")\n", "329": "fuck", "330": "wh", "331": "igh", "332": "ing ", "333": "wi", "334": "don", "335": "e, ", "336": "go", "337": "er ", "338": "my ", "339": "ic", "340": "ar", "341": "'s ", "342": "of", "343": "na ", "344": "up", "345": " my ", "346": "at", "347": "as ", "348": "an ", "349": ", I ", "350": "s\n", "351": "ed ", "352": "l ", "353": "wan", "354": "nd ", "355": "with", "356": "lo", "357": "ck ", "358": "d\n", "359": "ow ", "360": "r ", "361": "fee", "362": "be ", "363": "om", "364": "'t ", "365": "ey ", "366": "know ", "367": "bod", "368": "ust ", "369": "t\n", "370": "ba", "371": "been ", "372": "body ", "373": "rea", "374": "le ", "375": "al", "376": "no", "377": " a ", "378": "am", "379": "wanna ", "380": "]\n", "381": "eah", "382": ", b", "383": "\nB", "384": "\n[", "385": "es ", "386": "Wh", "387": "di", "388": "And ", "389": "hat", "390": "op", "391": "just ", "392": "ll ", "393": "You", "394": "ld ", "395": "\u2019t ", "396": "oth", "397": "tt", "398": "every", "399": "rap", "400": "un", "401": "out ", "402": "ay", "403": "IS", "404": "min", "405": "id", "406": "og", "407": "is", "408": "re", "409": "\nT", "410": "gh", "411": "as", "412": "that ", "413": "te", "414": "ur", "415": "ight ", "416": "get ", "417": "ever ", "418": "he ", "419": "I\u2019", "420": "liv", "421": "ay ", "422": "to", "423": "in't ", "424": "don't ", "425": "for ", "426": "own", "427": "in the ", "428": "a-", "429": "ev", "430": "ere ", "431": "ad", "432": "don\u2019t ", "433": "so ", "434": "\nL", "435": ", w", "436": "chi", "437": "You ", "438": "re ", "439": "ill", "440": "ain't ", "441": "feel ", "442": "on ", "443": "ough", "444": " that ", "445": "k ", "446": "of ", "447": "oo", "448": "on the ", "449": "tim", "450": "e\nI ", "451": "\nAnd ", "452": "thing ", "453": "ri", "454": "hat ", "455": "ogic", "456": "\nS", "457": "I'm", "458": "ould ", "459": "low", "460": "call", "461": "ab", "462": "em", "463": "feel", "464": "yeah", "465": "ers", "466": "for the ", "467": "y, ", "468": "I\u2019m ", "469": "how ", "470": "igg", "471": "ta", "472": "lif", "473": "ain", "474": "shit ", "475": "your ", "476": "ers ", "477": "Ever", "478": "it, ", "479": "em ", "480": "hat's ", "481": "?\n", "482": "they ", "483": "hea", "484": "Ch", "485": "Yeah", "486": "ly ", "487": ": ", "488": ". ", "489": "\u2014", "490": "d, ", "491": "ac", "492": "feel like ", "493": " this ", "494": "in ", "495": "got ", "496": "ut I ", "497": "not ", "498": "ca", "499": "kin' ", "500": "back ", "501": "man", "502": "Logic", "503": "it\n", "504": "down", "505": "der", "506": "le", "507": "Vers", "508": "t, ", "509": "ell", "510": "ybody ", "511": "no ", "512": "p ", "513": "tr", "514": "gi", "515": "up ", "516": "by ", "517": "itch", "518": "\nG", "519": "that", "520": "f ", "521": "all ", "522": "nee", "523": ", I'm ", "524": "ISIS", "525": " they ", "526": "when ", "527": "\n[Vers", "528": "is\n", "529": "a\n", "530": "to the ", "531": "ts ", "532": "I'ma ", "533": "use ", "534": "everybody ", "535": "'re ", "536": "pp", "537": "righ", "538": "never ", "539": "tta ", "540": "fin", "541": "mor", "542": "fro", "543": " me ", "544": "do", "545": "um", "546": "do ", "547": "his ", "548": "chik", "549": "times ", "550": "fuckin' ", "551": "love ", "552": "lack ", "553": "life ", "554": "sa", "555": "ter", "556": "ho", "557": "ee ", "558": "\n[Verse ", "559": "a s", "560": "g ", "561": "a m", "562": "e and ", "563": "can ", "564": "wanna be ", "565": "aliv", "566": "one\n", "567": "gotta ", "568": "where ", "569": "everything ", "570": "na", "571": "In", "572": "der ", "573": "bl", "574": "ear ", "575": "what ", "576": "ot", "577": "need ", "578": "\nH", "579": "a, ", "580": "'em ", "581": "s, ", "582": "this ", "583": "wor", "584": "ve been ", "585": "let ", "586": "can", "587": "had ", "588": "est ", "589": "od ", "590": "el", "591": "was ", "592": "it's ", "593": "ome ", "594": "ly", "595": "si", "596": "rou", "597": "with ", "598": "Chor", "599": "Chorus", "600": "we ", "601": "feelin' ", "602": "a-chik", "603": "me\n", "604": "Who", "605": "ing, ", "606": "fuck ", "607": "ess", "608": "\nI been ", "609": "but ", "610": "with a ", "611": "h, ", "612": " moth", "613": "lea", "614": "ag", "615": "ob", "616": "dy ", "617": "nigg", "618": "one ", "619": "sp", "620": "' ", "621": "like a ", "622": "Everybody ", "623": "ce ", "624": "? ", "625": "\nWh", "626": "tion", "627": "\nF", "628": "But ", "629": "ear", "630": "com", "631": "\nN", "632": "ne", "633": "bitch", "634": "cause ", "635": ": Logic", "636": "back", "637": "\nM", "638": "eop", "639": "il", "640": "you're ", "641": "cou", "642": "ISIS, ", "643": "hat's up", "644": "my min", "645": "late", "646": "y\n", "647": "ome", "648": "are ", "649": "ir", "650": "dr", "651": "right ", "652": "out\n", "653": "even ", "654": "h ", "655": "from ", "656": "fuckers ", "657": "uck ", "658": "ound ", "659": "over", "660": "with the ", "661": "go ", "662": "ke\n", "663": " that", "664": "kill", "665": "ki", "666": "reach", "667": "Whoa", "668": "me get ", "669": "some", "670": "me, ", "671": "\u2019s ", "672": "hom", "673": "thing", "674": "try", "675": "har", "676": "tro", "677": "in my ", "678": ", but ", "679": ", we ", "680": "up, ", "681": "rap ", "682": "ok", "683": "\nYou", "684": "de", "685": "roun", "686": "that's ", "687": "\n[Chorus", "688": "vi", "689": "shit", "690": "\nO", "691": "time ", "692": "(B", "693": "fac", "694": "bea", "695": "(W", "696": "should ", "697": "God", "698": "(Whoa", "699": "oo!", "700": "me get my min", "701": "of my ", "702": "It ", "703": "ain\u2019t ", "704": "\nA", "705": "other ", "706": "pla", "707": "\nYou ", "708": "ally ", "709": "who ", "710": "give ", "711": ")\nI ", "712": "vin' ", "713": "like th", "714": "won", "715": "tin' ", "716": "n ", "717": "\nGet ", "718": "cke", "719": "low ", "720": "way ", "721": "way", "722": "on my ", "723": "'cause ", "724": ": Logic]\n", "725": "a-chika-chik", "726": "\nBut ", "727": "gon", "728": "oy", "729": "ese ", "730": "peop", "731": "could ", "732": "ed to ", "733": "lack", "734": "only ", "735": "lave ", "736": "(Whoa)\n", "737": "rap, b", "738": "man ", "739": "wanna di", "740": "one", "741": "about ", "742": "ligh", "743": "ther", "744": "ld", "745": "lon", "746": "tryna ", "747": "any", "748": "when I ", "749": "erfuckers ", "750": "around ", "751": "\nLi", "752": "stop", "753": "rap sh", "754": "Bro", "755": "ticke", "756": "tickets ", "757": "40", "758": "also ", "759": "like\n", "760": "im", "761": "obby ", "762": "ake ", "763": "yeah, ", "764": "hit ", "765": "old ", "766": "ell ", "767": "now ", "768": "\nYeah", "769": "ig ", "770": "kee", "771": "in', ", "772": "I m", "773": "hear", "774": "and", "775": "lov", "776": "afuck", "777": "ring, ", "778": "ham", "779": "\nW", "780": "sh ", "781": "times for the ", "782": "ISIS, ISIS, ", "783": ", my ", "784": "\nLet ", "785": "feel like my ", "786": "kin", "787": "thin", "788": "her", "789": "\nTh", "790": "st ", "791": "e (", "792": "I s", "793": "\n[In", "794": "like this\n", "795": "ite ", "796": " motherfuckers ", "797": "ed", "798": "in' th", "799": "rough", "800": "lu", "801": "fu", "802": "dam", "803": "ee rap sh", "804": "ee rap show", "805": "ee rap shows ", "806": "ee rap shows n", "807": "ee rap shows near ", "808": "ee rap shows near Bro", "809": "ee rap shows near Brook", "810": "ee rap shows near Brookly", "811": "ee rap shows near Brooklyn", "812": "ee rap shows near Brooklyn\nGet ", "813": "ee rap shows near Brooklyn\nGet tickets ", "814": "ee rap shows near Brooklyn\nGet tickets as ", "815": "ee rap shows near Brooklyn\nGet tickets as low ", "816": "ee rap shows near Brooklyn\nGet tickets as low as ", "817": "ee rap shows near Brooklyn\nGet tickets as low as $", "818": "ee rap shows near Brooklyn\nGet tickets as low as $40", "819": "ee rap shows near Brooklyn\nGet tickets as low as $40\nYou", "820": "ee rap shows near Brooklyn\nGet tickets as low as $40\nYou m", "821": "ee rap shows near Brooklyn\nGet tickets as low as $40\nYou might ", "822": "ee rap shows near Brooklyn\nGet tickets as low as $40\nYou might also ", "823": "ee rap shows near Brooklyn\nGet tickets as low as $40\nYou might also like\n", "824": "chan", "825": ", but I ", "826": "take ", "827": "ree", "828": "cra", "829": "ett", "830": "to b", "831": "pr", "832": "can't ", "833": "ik", "834": "uc", "835": "in a ", "836": "og ", "837": "sti", "838": "I've been ", "839": "ring, ring, ", "840": "\nEverybody ", "841": "(Woo!", "842": "y, I ", "843": "right\n", "844": "e and mor", "845": "icot", "846": "icotin", "847": "is al", "848": "d\nIt ", "849": "feel like my life ", "850": "alive\nI ", "851": "even", "852": "\nI know ", "853": "your", "854": "want ", "855": "e\nN", "856": "under", "857": "ight", "858": "\nBut I ", "859": "Li", "860": "wr", "861": "loo", "862": "day", "863": "Fuck ", "864": "homi", "865": "come ", "866": "ile ", "867": "es, ", "868": "and the ", "869": "ot ", "870": "af", "871": "test ", "872": "hate ", "873": "run", "874": "or ", "875": "livin' ", "876": "'em", "877": "fam", "878": "Ca", "879": "aybe ", "880": "e's ", "881": "sm", "882": "n't ", "883": "bo", "884": "Ay", "885": "dg", "886": "Preach", "887": "have ", "888": "pi", "889": "how to ", "890": "e, everybody ", "891": "(Woo!)\n", "892": "og '", "893": "og 'roun", "894": "og 'round", "895": "og 'round\u2014", "896": "from a", "897": "from a\u2014", "898": "Jes", "899": "sist", "900": "son", "901": "everything is al", "902": "I\u2019ve been ", "903": "king", "904": "feel like I\u2019m ", "905": "out of my ", "906": "mine\n", "907": "tal", "908": "pra", "909": "show ", "910": "nobody ", "911": "\nThey ", "912": "say ", "913": "you to ", "914": "\nWhen ", "915": "ess ", "916": "God ", "917": "where you ", "918": "litt", "919": "little ", "920": "finally ", "921": "tro]\n", "922": "\n\n[Verse ", "923": "bab", "924": "in the c", "925": "ight\n", "926": "damn", "927": "to m", "928": "top", "929": "some ", "930": "See rap shows near Brooklyn\nGet tickets as low as $40\nYou might also like\n", "931": "new", "932": "blo", "933": "moth", "934": "a b", "935": " though", "936": "rid", "937": "ec", "938": "end ", "939": "ut", "940": "done ", "941": "comin' ", "942": "shit\n", "943": " this shit ", "944": "Th", "945": "se ", "946": "like the ", "947": "row", "948": "people ", "949": "m the ", "950": "by the ", "951": "\nI'm ", "952": "pus", "953": "in' the ", "954": "again", "955": "is the ", "956": "att", "957": "\nD", "958": "goin' ", "959": "Ayy", "960": ", I been ", "961": "yo", "962": "yo' ", "963": "Sp", "964": "ast", "965": "ted ", "966": "isi", "967": "blee", "968": "per", "969": "for th", "970": "Uh, ", "971": "da", "972": "e and more and mor", "973": "Se", "974": "I\u2019ve been on the ", "975": "I\u2019ve been on the low", "976": "\nI been ta", "977": "\nI been taking", "978": "\nI been taking my ", "979": "\nI been taking my tim", "980": "\nI been taking my time\nI ", "981": "\nI been taking my time\nI feel like I\u2019m ", "982": "\nI been taking my time\nI feel like I\u2019m out of my ", "983": "\nI been taking my time\nI feel like I\u2019m out of my min", "984": "\nI been taking my time\nI feel like I\u2019m out of my mind\nIt ", "985": "\nI been taking my time\nI feel like I\u2019m out of my mind\nIt feel like my life ", "986": "\nI been taking my time\nI feel like I\u2019m out of my mind\nIt feel like my life ain\u2019t ", "987": "\nI been taking my time\nI feel like I\u2019m out of my mind\nIt feel like my life ain\u2019t mine\n", "988": "tod", "989": "tell ", "990": "bout ", "991": "think", "992": "ph", "993": "your m", "994": "ci", "995": "alive\n", "996": "\nI", "997": "fir", "998": "brea", "999": "ll th", "1000": "day ", "1001": "right now", "1002": "finally wanna be ", "1003": "\nThe ", "1004": "ov", "1005": "gs ", "1006": "ry ", "1007": "good ", "1008": ", you ", "1009": "pro", "1010": "omm", "1011": "tell", "1012": "lly ", "1013": "bi", "1014": " the n", "1015": "car", "1016": "e you ", "1017": "leave ", "1018": "o, ", "1019": "no, ", "1020": "another ", "1021": "year", "1022": "ith", "1023": "Bobby "}