-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprecalculated_spacy_english_lemmas.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
2881 lines (2881 loc) · 57.8 KB
/
precalculated_spacy_english_lemmas.csv
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
;lemma
use;use
case;case
name;name
modify;modify
password;password
description;description
the;the
agency;agency
operator;operator
chooses;choose
to;to
change;change
associated;associate
with;with
your;your
account;account
participating;participate
actor;actor
initialization;initialization
entry;entry
conditions;condition
has;have
logged;log
flow;flow
of;of
events;event
user;user
system;system
choose;choose
by;by
pressing;press
appropriate;appropriate
button;button
upload;upload
form;form
that;that
work;work
entering;enter
new;new
choice;choice
and;and
confirming;confirm
save;save
changes;change
exit;exit
confirms;confirm
success;success
operation;operation
interruption;interruption
connection;connection
server;server
quality;quality
requirements;requirement
refreshment;refreshment
point;point
data;datum
restaurants;restaurant
restaurant;restaurant
successfully;successfully
authenticated;authenticate
enable;enable
functionality;functionality
information;information
required;require
rest;rest
refreshments;refreshment
displays;display
them;they
in;in
a;a
submit;submit
verify;verify
entered;enter
asks;ask
for;for
confirmation;confirmation
where;where
is;be
invalid;invalid
or;or
insufficient;insufficient
activates;activate
errored;errore
confirm;confirm
stores;store
modified;modify
notification;notification
been;be
changing;change
selected;select
cancels;cancel
etour;etour
search;search
research;research
cultural;cultural
heritage;heritage
all;all
initialized;initialize
guest;guest
logs;log
on;on
activate;activate
corresponding;correspond
fill;fill
out;out
gets;get
position;position
citing;cite
location;location
process;process
list;list
sites;site
meet;meet
criteria;criterion
insert;insert
preference;preference
site;site
inserts;insert
bookmarks;bookmark
tourist;tourist
card;card
particular;particular
feature;feature
insertion;insertion
from;from
prompt;prompt
inclusion;inclusion
input;input
about;about
favorites;favorite
delete;delete
object;object
view;view
as;as
result;result
it;it
selects;select
function;function
elimination;elimination
shall;shall
notify;notify
successful;successful
blocks;block
controls;control
receipt;receipt
cancellation;cancellation
avoid;avoid
multiple;multiple
submissions;submission
before;before
end;end
tourists;tourist
obtained;obtain
activating;activate
loads;load
allowing;allow
edit;edit
fields;field
reporting;report
returns;return
objects;object
according;accord
certain;certain
parameters;parameter
show;show
processing;process
request;request
goods;good
should;should
return;return
results;result
within;within
set;set
time;time
report;report
statistic;statistic
statistical;statistical
relating;relate
places;place
select;select
midsize;midsize
feedback;feedback
prepare;prepare
menu;menu
daily;daily
editing;edit
seven;seven
days;day
week;week
day;day
into;into
are;be
active;active
saves;save
modification;modification
advanced;advanced
searching;search
using;use
potential;potential
offered;offer
personal;personal
area;area
relying;rely
event;event
transaction;transaction
more;more
than;than
seconds;second
good;good
memorize;memorize
proper;proper
will;will
not;not
accept;accept
duplicates;duplicate
access;access
accounts;account
pertaining;pertain
designated;designate
points;point
an;an
functional;functional
once;once
we;we
receive;receive
banner;banner
inserting;insert
receives;receive
turning;turn
one;one
banners;banner
selection;selection
image;image
sends;send
check;check
characteristics;characteristic
inserted;insert
number;number
did;do
exceed;exceed
maximum;maximum
valid;valid
remember;remember
eating;eat
already;already
allowed;allow
login;login
ensures;ensure
registered;register
privileges;privilege
fall;fall
correctness;correctness
if;if
corrected;correct
error;error
ad;ad
bar;bar
computer;computer
accessing;access
removal;removal
enter;enter
message;message
deletion;deletion
removes;remove
released;release
he;he
issued;issue
cancel;cancel
reading;read
recovers;recover
previous;previous
state;state
control;control
interaction;interaction
registration;registration
requires;require
creation;creation
have;have
logging;log
create;create
recording;record
viewing;view
statistics;statistic
display;display
shows;show
screen;screen
comment;comment
changed;change
convention;convention
require;require
conclude;conclude
between;between
involved;involve
agreement;agreement
send;send
call;call
deleting;delete
containing;contain
calls;call
localization;localization
current;current
began;begin
gps;gps
calculates;calculate
hold;hold
until;until
detectable;detectable
picture;picture
bookmark;bookmark
this;this
load;load
history;history
conventions;convention
derived;derive
features;feature
historical;historical
concerning;concern
regarding;regard
details;detail
preferences;preference
tourism;tourism
remove;remove
specific;specific
removed;remove
tag;tag
present;present
latter;latter
existing;exist
instead;instead
activation;activation
decide;decide
displaying;display
's;be
disposal;disposal
issue;issue
visitor;visitor
selecting;select
vote;vote
then;then
cheide;cheide
visited;visit
combination;combination
logout;logout
ends;end
session;session
previously;previously
made;make
disconnection;disconnection
disconnects;disconnect
inactive;inactive
disable;disable
deactivation;deactivation
given;give
sheet;sheet
you;you
outcome;outcome
which;which
included;include
wants;want
put;put
less;less
specified;specify
checked;check
performs;perform
found;find
limit;limit
supplied;supply
incorrect;incorrect
notice;notice
news;news
amendment;amendment
placement;placement
commentary;commentary
alterations;alteration
tags;tag
generic;generic
general;general
preferred;prefer
deletes;delete
located;locate
following;follow
areas;area
chosen;choose
database;database
was;be
asked;ask
its;its
but;but
confirmed;confirm
correct;correct
way;way
pressed;press
back;back
BeanCulturalHeritage;beanculturalheritage
Serializable;serializable
BeanBanner;BeanBanner
ISearch;isearch
Remote;remote
DBLocationStatistic;dblocationstatistic
IDBLocationStatistic;idblocationstatistic
DBRefreshmentPointOperator;dbrefreshmentpointoperator
IDBRefreshmentPointOperator;idbrefreshmentpointoperator
Point3D;point3d
ICulturalHeritageAgencyManager;ICulturalHeritageAgencyManager
ICulturalHeritageCommonManager;iculturalheritagecommonmanager
CulturalHeritageChecker;culturalheritagechecker
Fuzzy;fuzzy
Tag;tag
JInternalFrame;JInternalFrame
IDBSearchPreference;idbsearchpreference
TestoNewsRendererTest;testonewsrenderert
AdvertisementManager;AdvertisementManager
UnicastRemoteObject;unicastremoteobject
IAdvertisementManager;iadvertisementmanag
CulturalHeritage;CulturalHeritage
AdvancedSearch;AdvancedSearch
Search;search
CulturalHeritageCommonManager;culturalheritagecommonmanager
TouristCommonManager;touristcommonmanager
ITouristCommonManager;itouristcommonmanager
IDBNews;idbnews
BeanVisitBC;BeanVisitBC
CulturalHeritageAgencyManager;culturalheritageagencymanager
DBMenu;DBMenu
IDBMenu;idbmenu
AdvertisementRefreshmentPointManager;advertisementrefreshmentpointmanager
IAdvertisementRefreshmentPointManager;iadvertisementrefreshmentpointmanager
DBNews;dbnew
ScrollableTable;ScrollableTable
JTable;jtable
Scrollable;scrollable
BannerDialog;BannerDialog
JPanel;JPanel
IDBCulturalHeritage;idbculturalheritage
DBConvention;dbconvention
IDBConvention;idbconvention
DBCulturalHeritage;dbculturalheritage
CardBC;cardbc
ICard;icard
BeanRefreshmentPoint;beanrefreshmentpoint
SiteTableModel;sitetablemodel
AbstractTableModel;abstracttablemodel
TouristClientManager;TouristClientManager
ITouristClientManager;ITouristClientManager
ControlServerLauncher;controlserverlauncher
ControlData;ControlData
TagTableModel;tagtablemodel
PriorityRenderer;PriorityRenderer
JSlider;jslider
TableCellRenderer;TableCellRenderer
IDBRefreshmentPoint;idbrefreshmentpoint
BeanGenericPreference;beangenericpreference
BeanMenu;BeanMenu
IDBGenericPreference;idbgenericpreference
BeanOperatorAgency;beanoperatoragency
ITouristAgencyManager;itouristagencymanager
DBTag;dbtag
IDBTag;IDBTag
DBAgencyOperator;dbagencyoperator
IDBAgencyOperator;idbagencyoperator
Banner;Banner
ListCategory;ListCategory
BeanTag;BeanTag
ControllDataAdvertisement;ControllDataAdvertisement
BannerNode;BannerNode
DefaultMutableTreeNode;DefaultMutableTreeNode
IDBTourist;IDBTourist
AverageRatingRenderer;AverageRatingRenderer
DefaultTableCellRenderer;defaulttablecellrenderer
TagAgencyOperatorManager;tagagencyoperatormanager
TagCommonManager;tagcommonmanager
ITagAgencyOperatorManager;ITagAgencyOperatorManager
GlobalConstants;GlobalConstants
ReportTableModel;ReportTableModel
DBDish;DBDish
IDBDish;idbdish
DBConnectionPool;dbconnectionpool
LimitedDocument;limiteddocument
PlainDocument;PlainDocument
Category;category
BeanConvention;BeanConvention
IDBBanner;idbbann
DBGenericPreference;dbgenericpreference
PRNode;prnode
TouristAgencyManager;touristagencymanager
IAdvertisementAgencyManager;iadvertisementagencymanager
News;news
IDBVisitPR;IDBVisitPR
ReportStatistic;ReportStatistic
ErrorMessage;ErrorMessage
BeanOperatorRefreshmentPoint;BeanOperatorRefreshmentPoint
CulturalHeritageVisitChecker;CulturalHeritageVisitChecker
IAuthentication;iauthentication
TouristTableModel;touristtablemodel
ITagCommonManager;itagcommonmanager
DBBanner;DBBanner
IRefreshmentPointAgencyManager;irefreshmentpointagencymanager
IRefreshmentPointCommonManager;irefreshmentpointcommonmanager
AdvertisementAgencyManager;advertisementagencymanager
BeanTourist;BeanTourist
CardPR;cardpr
DocumentoNumerico;DocumentoNumerico
DBSearchPreference;dbsearchpreference
Point3DRenderer;Point3DRenderer
RefreshmentPointCommonManager;refreshmentpointcommonmanager
FeedBackTableModel;FeedBackTableModel
BeanSearchPreference;beansearchpreference
OperatorAgency;OperatorAgency
BeanVisitPR;BeanVisitPR
DBVisitPR;dbvisitpr
TouristCard;TouristCard
BannerRenderer;BannerRenderer
DefaultTreeCellRenderer;defaulttreecellrenderer
IDBVisitBC;IDBVisitBC
BeanDish;BeanDish
Authentication;authentication
RefreshmentPointAgencyManager;refreshmentpointagencymanager
Tourist;tourist
DBVisitBC;dbvisitbc
DBRefreshmentPoint;dbrefreshmentpoint
HelpManager;HelpManager
MouseAdapter;MouseAdapter
RefreshmentPoint;RefreshmentPoint
DeskManager;DeskManager
DefaultDesktopManager;DefaultDesktopManager
DBTourist;dbtourist
StandardSearch;StandardSearch
BeanNews;beannew
lhcp;lhcp
schedule;schedule
appointment;appointment
patient;patient
assumed;assume
worked;work
person;person
via;via
telephone;telephone
outside;outside
enters;enter
mid;mid
type;type
pull-down;pull-down
types;type
date;date
start;start
only;only
equal;equal
after;after
interface;interface
provide;provide
both;both
option;option
typing;type
format;format
calendar;calendar
month;month
optional;optional
up;up
characters;character
such;such
reason;reason
e;e
hcp;hcp
medical;medical
identification;identification
prompted;prompt
try;try
again;again
sending;send
views;view
sent;send
referrals;referral
may;may
sort;sort
receiving;receive
generated;generate
priority;priority
referral;referral
complete;complete
specialty;specialty
office;office
visit;visit
notes;note
enterer;enterer
editor;editor
presented;present
determines;determine
right;right
can;can
either;either
height;height
weight;weight
graph;graph
line;line
chart;chart
giving;give
measurements;measurement
spanning;span
last;last
years;year
averaged;average
quarters;quarter
january-;january-
march;march
april-;april-
june;june
july-;july-
september;september
october-;october-
december;december
titled;title
includes;include
i;I
first;first
phone;phone
contact;contact
email;email
address;address
so;so
emails;email
be;be
trust;trust
sorted;sort
based;base
ascending;ascend
alphabetical;alphabetical
order;order
patients;patient
';'
names;name
when;when
chronic;chronic
special-diagnosis-history;special-diagnosis-history
satisfies;satisfy
three;three
prescriptions;prescription
satisfying;satisfy
third;third
condition;condition
listed;list
static;static
no;no
link;link
administer;administer
two;two
lists;list
ndc;ndc
codes;code
administrator;administrator
drug;drug
each;each
record;record
drugs;drug
textual;textual
possible;possible
effects;effect
stored;store
desired;desire
does;do
alive;alive
over;over
old;old
who;who
had;have
flu;flu
shot;shoot
cpt;cpt
per;per
http;http
www;www
influenza;influenza
com;com
index;index
cfm;cfm
fa;fa
additional;additional
res;res
hc;hc
during;during
months;month
sept;sept
-;-
dec;dec
year;year
retrieval;retrieval
health;health
representative;representative
see;see
abbreviated;abbreviate
their;their
siblings;sibling
parents;parent
sets;set
grandparents;grandparent
mi;mi
ds;ds
available;available
they;they
diagnoses;diagnosis
related;relate
table;table
x;x
family;family
member;member
suffered;suffer
diagnosis;diagnosis
high;high
blood;blood
pressure;pressure
systolic;systolic
mm;mm
hg;hg
diastolic;diastolic
cholesterol;cholesterol
hdl;hdl
levels;level
under;under
mg;mg
d;d
l;l
milligrams;milligram
deciliter;deciliter
triglyceride;triglyceride
level;level
diabetes;diabete
diagnosed;diagnose
icd-;icd-
cm;cm
code;code
beginning;begin
cancer;cancer
heart;heart
disease;disease
icdcm;icdcm
smoking;smoking
cause;cause
death;death
deceased;deceased
public;public
agent;agent
listing;list
immunization-related;immunization-relate
adverse;adverse
period;period
do;do
status;status
detail;detail
upon;upon
fake;fake
reporter;reporter
gain;gain
also;also
communication;communication
because;because
appears;appear
bogus;bogus
s;s
refer;refer
another;another
through;through
page;page
uc;uc
must;must
text;text
box;box
include;include
most;most
important;important
least;least
summarizing;summarize
newly;newly
created;create
timestamp;timestamp
additionally;additionally
messages;message
his;his
her;she
appointments;appointment
together;together
dates;date
prescription;prescription
lab;lab
procedure;procedure
displayed;display
read;read
label;label
medication;medication
prescribed;prescribe
medications;medication
laboratory;laboratory
update;update
loinc;loinc
intended;intend
different;different
physician;physician
satisfaction;satisfaction
survey;survey
provides;provide
zip;zip
hospital;hospital
surgeon;surgeon
specialist;specialist
pediatrician;pediatrician
ob;ob
gyn;gyn
provided;provide
practices;practice
zipcode;zipcode
match;match
digits;digit
average;average
minutes;minute
wait;wait
waiting;wait
room;room
examination;examination
prior;prior
seeing;see
treatment;treatment
percentage;percentage
visits;visit
own;own
demographic;demographic
comprehensive;comprehensive
including;include
below;below
etc;etc
entire;entire
records;record
those;those
normally;normally
viewable;viewable
requesting;request
ps;ps
allergies;allergy
procedures;procedure
known;know
relatives;relative
people;people
representing;represent
represented;represent
documents;document
any;any
default;default
home;home
numbers;number
blankspace;blankspace
carriage;carriage
values;value
maintained;maintain
document;document
none;none
ordered;order
performed;perform
immunizations;immunization
add;add
she;she
administered;administer
immunization;immunization
able;able
write;write
describes;describe
symptoms;symptom
indicating;indicate
wishes;wish
reply;reply
inbox;inbox
opens;open
clicks;click
above;above
response;response
row;row
showing;show
subject;subject
now;now
preceded;precede
re;re
recipient;recipient
visible;visible
outbox;outbox
bolded;bolde
sender;sender
alerting;alert
arrived;arrive
expired;expire
linked;link
there;there
empty;empty
street;street
city;city
missing;miss
whole;whole
simply;simply
shown;show
blank;blank
partial;partial
providing;provide
optionally;optionally
addition;addition
informing;inform
prompts;prompt
field;field
at;at
mellitus;mellitus
icd;icd
asthma;asthma
circulatory-system;circulatory-system
inclusive;inclusive
maintain;maintain
allowable;allowable
store;store
international;international
classification;classification
diseases;disease
problems;problem
commonly;commonly
abbreviation;abbreviation
classify;classify
wide;wide
variety;variety
signs;sign
abnormal;abnormal
findings;finding
complaints;complaint
social;social
circumstances;circumstance
external;external
causes;cause
injury;injury
nhcs;nhc
functioning;function
disability;disability
long-term;long-term
short;short
term;term
alphanumeric;alphanumeric
uap;uap
monitoring;monitor
added;add
cases;case
remote;remote
glucose;glucose
pedometer;pedometer
readings;reading
submitted;submit
physical;physical
services;service
logical;logical
observation;observation
identifiers;identifier
universal;universal
standard;standard
identifying;identify
observations;observation
c;c
o;o
informatics;informatic
creating;create
modifying;modify
recorded;record
secondary;secondary
whose;whose
being;be
accessed;access
action;action
range;range
applicable;applicable
well;well
whom;whom
reported;report
notified;notify
interactions;interaction
other;other
currently;currently
taken;take
long;long
transit;transit
received;receive
attending;attend
b;b
yet;yet
take;take
ability;ability
technician;technician
pending;pende
queue;queue
grouped;group
marked;mark
electronic;electronic
sessions;session
terminate;terminate
pre-determined;pre-determined
inactivity;inactivity
allow;allow
length;length
ensure;ensure
authorization;authorization
disabled;disabled
exceeds;exceed