-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat_spm.vocab
More file actions
2500 lines (2500 loc) · 32.3 KB
/
chat_spm.vocab
File metadata and controls
2500 lines (2500 loc) · 32.3 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<unk> 0
<s> 0
</s> 0
<user> 0
<bot> 0
<eos> 0
▁a -0
in -1
re -2
▁c -3
▁t -4
at -5
▁i -6
on -7
▁s -8
▁w -9
es -10
er -11
an -12
▁p -13
en -14
or -15
▁m -16
▁d -17
al -18
ing -19
ou -20
▁b -21
▁h -22
▁wh -23
▁f -24
▁in -25
ow -26
ar -27
it -28
▁is -29
▁e -30
▁th -31
▁an -32
et -33
▁what -34
▁y -35
▁l -36
ic -37
oc -38
om -39
▁to -40
st -41
▁you -42
ent -43
▁re -44
▁and -45
▁o -46
ion -47
ur -48
▁g -49
▁the -50
▁how -51
ed -52
toc -53
▁pr -54
▁do -55
ry -56
ren -57
ll -58
ryp -59
▁cryp -60
ec -61
ment -62
renc -63
ly -64
▁for -65
▁n -66
urrenc -67
▁of -68
urrency -69
▁cryptoc -70
▁u -71
ch -72
ol -73
▁r -74
▁cryptocurrency -75
ve -76
ke -77
ain -78
ver -79
▁ex -80
▁mon -81
as -82
est -83
th -84
▁st -85
pl -86
ate -87
ay -88
id -89
ere -90
▁it -91
▁on -92
▁bu -93
is -94
ce -95
▁co -96
▁or -97
ation -98
▁go -99
im -100
▁int -101
▁inv -102
ss -103
▁ch -104
▁pro -105
oun -106
▁com -107
▁li -108
▁sa -109
ey -110
ra -111
se -112
▁ac -113
ig -114
▁your -115
▁invest -116
▁de -117
ut -118
ith -119
ul -120
▁con -121
erest -122
▁with -123
ge -124
ell -125
▁are -126
▁money -127
▁can -128
▁interest -129
ity -130
od -131
▁comp -132
il -133
ount -134
un -135
▁v -136
ess -137
▁pay -138
ket -139
ac -140
▁me -141
if -142
▁( -143
ers -144
ds -145
pen -146
▁mar -147
▁acc -148
ro -149
ti -150
ies -151
le -152
ork -153
▁market -154
▁pric -155
ial -156
▁ne -157
▁cre -158
▁lo -159
▁pl -160
ding -161
tock -162
▁stock -163
el -164
out -165
ions -166
ving -167
▁like -168
pp -169
▁fr -170
▁sh -171
▁ass -172
ort -173
own -174
all -175
con -176
ance -177
▁investment -178
ax -179
ant -180
dit -181
ear -182
ine -183
▁buy -184
conom -185
▁econom -186
qu -187
▁that -188
ot -189
art -190
▁account -191
ab -192
▁tim -193
▁expl -194
iz -195
anc -196
ome -197
▁from -198
ore -199
▁plan -200
ets -201
▁ear -202
▁fin -203
▁cost -204
▁explain -205
ad -206
any -207
age -208
ock -209
▁inf -210
chain -211
▁save -212
du -213
▁ad -214
▁bl -215
▁us -216
▁time -217
ank -218
▁by -219
▁ma -220
▁un -221
▁tax -222
▁tra -223
ans -224
igh -225
▁inc -226
▁good -227
▁block -228
iv -229
to -230
ive -231
row -232
▁ris -233
▁work -234
▁credit -235
and -236
ect -237
ist -238
▁fun -239
▁saving -240
▁blockchain -241
are -242
ken -243
tire -244
▁all -245
▁when -246
▁financ -247
▁retire -248
ual -249
▁tr -250
▁cons -251
ir -252
▁su -253
▁infl -254
▁prices -255
▁savings -256
▁retirement -257
ct -258
em -259
ip -260
act -261
ple -262
▁as -263
ital -264
king -265
▁bon -266
▁def -267
▁val -268
▁cont -269
▁earn -270
bt -271
cul -272
▁am -273
▁ke -274
ates -275
ific -276
▁min -277
▁use -278
▁token -279
▁crypto -280
▁financial -281
ue -282
um -283
ard -284
ure -285
ust -286
pens -287
▁low -288
▁bank -289
▁need -290
▁over -291
▁tell -292
▁month -293
ap -294
ee -295
ary -296
▁cal -297
▁dec -298
▁net -299
▁payment -300
de -301
ib -302
▁j -303
ter -304
▁ab -305
▁sm -306
▁per -307
▁coin -308
▁debt -309
▁high -310
▁calcul -311
fit -312
▁up -313
▁risk -314
ep -315
of -316
eck -317
elp -318
ill -319
olic -320
ross -321
very -322
ities -323
▁fund -324
▁help -325
▁polic -326
▁price -327
▁trans -328
▁expens -329
▁income -330
fe -331
eth -332
▁be -333
entr -334
▁rec -335
▁reg -336
▁year -337
▁start -338
▁where -339
▁stocks -340
▁economic -341
▁inflation -342
), -343
am -344
old -345
ally -346
work -347
▁down -348
▁spen -349
entral -350
▁assets -351
▁consid -352
▁policy -353
▁economy -354
▁investments -355
ag -356
pt -357
ize -358
per -359
ten -360
▁em -361
▁en -362
▁jo -363
▁sp -364
pply -365
vers -366
▁dig -367
▁does -368
▁sell -369
▁check -370
▁regul -371
▁value -372
▁digital -373
▁consider -374
als -375
get -376
▁own -377
▁grow -378
▁loan -379
▁about -380
▁company -381
▁expenses -382
oy -383
ice -384
oth -385
▁at -386
vern -387
▁new -388
▁sec -389
▁set -390
▁make -391
▁every -392
▁govern -393
▁supply -394
▁network -395
▁calculate -396
us -397
ach -398
▁di -399
ning -400
ploy -401
ility -402
▁keep -403
▁many -404
▁rate -405
end -406
orm -407
urn -408
▁qu -409
▁bas -410
▁dif -411
▁rep -412
▁sim -413
▁more -414
▁redu -415
▁than -416
▁define -417
▁transact -418
eo -419
io -420
oo -421
▁= -422
ide -423
ors -424
uch -425
▁ha -426
▁le -427
turn -428
▁but -429
▁one -430
▁see -431
▁who -432
▁wor -433
▁much -434
▁bonds -435
▁contr -436
▁often -437
▁rates -438
▁share -439
▁taxes -440
▁regular -441
▁spending -442
co -443
ld -444
ash -445
ath -446
▁my -447
able -448
ange -449
▁cap -450
▁wall -451
ession -452
▁asset -453
▁small -454
▁compoun -455
▁2 -456
enc -457
erm -458
hip -459
ong -460
▁if -461
dget -462
ibut -463
▁adv -464
▁get -465
▁not -466
▁off -467
▁out -468
▁peo -469
▁pre -470
▁ser -471
ating -472
▁main -473
▁real -474
▁they -475
ically -476
▁coins -477
▁lower -478
▁budget -479
▁divers -480
▁growth -481
▁people -482
▁return -483
▁central -484
▁without -485
ff -486
gh -487
iod -488
isc -489
kes -490
▁av -491
▁fe -492
▁we -493
ated -494
ello -495
▁bet -496
ative -497
▁exch -498
▁lear -499
▁costs -500
▁diffe -501
▁goals -502
▁hello -503
▁proof -504
▁mining -505
▁period -506
▁compound -507
▁transactions -508
). -509
op -510
yp -511
▁4 -512
der -513
erg -514
inc -515
▁im -516
ards -517
ater -518
ings -519
just -520
line -521
▁bal -522
▁rew -523
▁cash -524
▁chat -525
▁have -526
▁less -527
▁serv -528
▁want -529
ations -530
▁produ -531
▁adjust -532
▁amount -533
▁regularly -534
▁government -535
ack -536
now -537
our -538
ivid -539
mand -540
ough -541
rent -542
▁don -543
▁opp -544
▁oth -545
etary -546
▁bond -547
▁card -548
▁part -549
▁there -550
▁across -551
▁demand -552
▁reduce -553
▁accounts -554
▁monetary -555
au -556
▁k -557
ang -558
pro -559
ree -560
▁al -561
▁hi -562
▁sc -563
fits -564
▁bor -565
▁loo -566
▁opt -567
▁sta -568
▁typ -569
ortun -570
▁choo -571
▁coll -572
▁each -573
▁port -574
▁show -575
▁spec -576
▁comput -577
▁tokens -578
▁opportun -579
▁payments -580
me -581
ts -582
ty -583
vi -584
▁1 -585
▁3 -586
ast -587
ces -588
ene -589
fol -590
ied -591
ign -592
ite -593
ory -594
sur -595
▁ro -596
ence -597
form -598
ices -599
ient -600
olat -601
tain -602
tect -603
▁aut -604
▁dat -605
▁equ -606
▁est -607
▁its -608
▁pur -609
▁str -610
ather -611
folio -612
thing -613
▁bene -614
▁used -615
▁will -616
▁based -617
▁early -618
▁secur -619
▁trade -620
▁borrow -621
▁choose -622
▁employ -623
▁monthly -624
▁portfolio -625
▁recession -626
0% -627
bl -628
sw -629
tf -630
▁× -631
ase -632
ber -633
its -634
one -635
tal -636
yst -637
▁ar -638
▁no -639
▁po -640
abil -641
alth -642
ency -643
ener -644
fter -645
ortg -646
ract -647
▁etf -648
▁fir -649
▁gre -650
▁job -651
▁man -652
▁som -653
▁was -654
anges -655
other -656
ystem -657
▁back -658
▁bill -659
▁buil -660
▁comm -661
▁give -662
▁into -663
▁look -664
▁mean -665
▁priv -666
▁read -667
▁them -668
ential -669
ething -670
▁alloc -671
▁allow -672
▁autom -673
▁count -674
▁gener -675
▁invol -676
▁learn -677
▁mortg -678
▁princ -679
▁total -680
▁volat -681
▁higher -682
▁proper -683
▁wallet -684
▁another -685
▁rewards -686
▁something -687
▁everything -688
▁opportunity -689
day -690
oid -691
ols -692
ply -693
uct -694
vel -695
ven -696
ves -697
▁ag -698
▁he -699
▁pu -700
▁bec -701
▁day -702
▁ind -703
▁ira -704
▁key -705
▁mut -706
iscal -707
▁data -708
▁long -709
▁trac -710
▁uses -711
ership -712
▁after -713
▁avoid -714
▁doing -715
▁emerg -716
▁first -717
▁insur -718
▁later -719
▁purch -720
▁quest -721
▁shows -722
▁under -723
▁using -724
▁years -725
▁advant -726
▁compar -727
▁fiscal -728
▁months -729
▁mutual -730
▁simple -731
▁system -732
▁balance -733
▁protect -734
▁weather -735
▁contract -736
▁exchange -737
▁maintain -738
▁services -739
▁contribut -740
▁emergency -741
▁insurance -742
▁questions -743
dp -744
lf -745
li -746
po -747
ail -748
bot -749
eld -750
gra -751
ich -752
ile -753
les -754
tax -755
tra -756
▁cl -757
▁fi -758
▁ta -759
ages -760
ause -761
ible -762
ipal -763
▁ded -764
▁has -765
▁mat -766
▁put -767
▁run -768
▁why -769
ances -770
asing -771
ering -772
imize -773
ocess -774
▁fees -775
▁item -776
▁list -777
▁nice -778
▁this -779
▁unem -780
▁cover -781
▁decis -782
▁going -783
▁incre -784
▁minus -785
▁needs -786
▁other -787
▁smart -788
▁thank -789
▁today -790
▁track -791
▁which -792
▁worth -793
ization -794
▁access -795
▁create -796
▁health -797
▁things -798
ployment -799
▁automat -800
▁because -801
▁capital -802
▁country -803
▁process -804
▁trading -805
ification -806
▁diversif -807
▁specific -808
▁different -809
▁ownership -810
▁blockchains -811
▁unemployment -812
gy -813
ph -814
▁5 -815
aid -816
aly -817
ame -818
ass -819
ble -820
ler -821
ous -822
▁ai -823
▁te -824
▁wr -825
aged -826
arch -827
blic -828
coin -829
ends -830
hold -831
ical -832
ield -833
iend -834
ould -835
ouse -836
ower -837
swer -838
ures -839
▁app -840
▁bit -841
▁cut -842
▁det -843
▁gdp -844
▁hey -845
▁mor -846
▁num -847
▁res -848
▁sol -849
ments -850
stand -851
ually -852
▁acti -853
▁char -854
▁fast -855
▁hold -856
▁know -857
▁lend -858
▁meas -859
▁plat -860
▁rese -861
▁sign -862
▁stor -863
▁term -864
dition -865
▁divid -866
▁extra -867
▁house -868
▁influ -869
▁power -870
ificant -871
▁answer -872
▁better -873
▁estate -874
▁inform -875
▁public -876
▁secure -877
▁bitcoin -878
▁morning -879
▁private -880
▁product -881
abilities -882
urrencies -883
▁currency -884
▁platform -885
▁property -886
▁research -887
▁advantage -888
▁principal -889
▁typically -890
▁allocation -891
▁understand -892
▁volatility -893
▁information -894
▁significant -895
▁diversification -896
01 -897
we -898
▁7 -899
01( -900
adv -901
ege -902
ens -903
ick -904
ise -905
ord -906
red -907
val -908
▁10 -909
▁52 -910
▁mo -911
▁so -912
ases -913
atio -914
dent -915
ffic -916
isor -917
istr -918
ized -919
ject -920
quid -921
self -922
tern -923
ween -924
▁any -925
▁big -926
▁fut -927
▁hal -928
▁met -929
▁mod -930
▁rel -931
▁spl -932
▁var -933
▁vot -934
ality -935
ethod -936
▁401( -937
▁bear -938
▁bull -939
▁goal -940
▁hard -941
▁joke -942
▁some -943
▁stab -944
▁well -945
▁activ -946
▁again -947
▁bills -948
▁cross -949
▁distr -950
▁exist -951
▁goods -952
▁great -953
▁makes -954
▁ratio -955
▁score -956
▁state -957
▁their -958
▁toler -959
▁valid -960
▁buying -961
▁future -962
▁method -963
▁online -964
▁partic -965
▁shares -966
▁simply -967
▁yearly -968
ditional -969
▁between -970
▁college -971
▁profits -972
▁project -973
▁returns -974
▁selling -975
▁staking -976
▁wallets -977
▁employer -978
▁involves -979
▁mortgage -980
▁decentral -981
▁differenc -982
▁distribut -983
▁tolerance -984
▁processing -985
▁securities -986
▁comparative -987
▁liabilities -988
by -989
ft -990
gg -991
ms -992
uc -993