-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.txt
3485 lines (3485 loc) · 129 KB
/
data.txt
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
10010150 be algorithm for people V
10010160 be algorithm for other V
10010200 write name in notation V
10010300 measure time in logic V
10010330 describe manner in characterization V
10010330 specify algorithm in manner V
10010330,10010840 see example for example V
10010420 require data for set V
10010420 store state in practice V
10010440 deal step by case V
10010460 describe idea by flow V
10010480 describe task in mean V
10010490 set value of variable N
10010500 derive intuition of memory N
10010510 be example of assignment N
10010610 call analysis for likelihood N
10010640 fix algorithm in example V
10010660 solve problem with proof V
10010690 express algorithm in kind V
10010700 use expression for algorithm V
10010700 use expression of algorithm N
10010720 express algorithm in form V
10010750 accept level of description N
10010750 class level of description N
10010810 give detail at level V
10010890 find number in list N
10010940 remain item in list N
10010990 see algorithm for example V
10011020 develop method for analysis V
10011030 remember value at time V
10011050 complete task with set V
10011070 be discipline of science N
10011080 resemble discipline in sense V
10011080 underlie property of algorithm N
10011190 view algorithm as deduction V
10011210 apply deduction in way V
10011220 be basis for paradigm N
10011240 be appeal of approach N
10011240 define change in algorithm N
10011240 have change in algorithm N
10011250 discuss algorithm with assumption V
10011250 execute instruction at time N
10011270 design algorithm for environment V
10011280 work problem at time V
10011300 be consumption in algorithm N
10011350 seek approximation close+to solution N
10011370 have value for problem V
10011520 use path to goal N
10011520,10031920 find path to goal N
10011570 reduce nature of problem N
10011570 reduce nature to complexity V
10011590 know solution at stage V
10011660 solve algorithm such+as algorithm N
10011660 solve problem such+as flow N
10011660 state problem in way V
10011660 state problem such+as flow N
10011740 model problem as problem V
10011780 fit definition of algorithm N
10011800 find solution to problem N
10011800 yield cycle of mutation N
10011820 extend approach to algorithm V
10011820 regard solution to problem N
10011830 find solution but solution N
10011850 vary solution by amount V
10011860 achieve freedom from defect N
10011870 find purpose of variance N
10011900 relate problem in field N
10011900 study problem in field N
10011920 improve advance in field N
10011930 solve range of problem N
10011950 classify algorithm by amount V
10011970 have algorithm of complexity N
10011990 classify problem instead+of algorithm V
10011990 classify problem into class V
10012020 consider collection of algorithm N
10012030 include algorithm for function N
10012040 use resource in computation V
10012080 determine output after number V
10012080 generalize definition of algorithm N
10012080 relax definition of algorithm N
10012080 use definition of algorithm N
10012090 compute function in algorithm V
10012290 colon manipulation of symbol N
10012310 specify rule for manner V
10012310 specify rule in manner V
10012440 observe importance of relay N
10012450 begin development of calculator N
10012590 work man as computer N
10012600 describe action of computer N
10012730 create machine as model V
10012740 write symbol on paper V
10012750 carry computation on paper V
10012750 divide paper into square V
10012750 divide paper like book V
10012750 divide tape into square V
10012770 determine behavior at moment N
10012770 determine behavior of computer N
10012900 do work of computer N
10012930 find value by process V
10012960 give description in form N
10012960 give description of structure N
10013000 define method in manner V
10013050 be argument for correctness N
10020050 refer choice between definition N
10020050 refer choice for word V
10020100 have definition in lexicon N
10020150 be goal of communication N
10020160 gain support from politics N
10020170 be tool of science N
10020330,10020340 represent choice between number N
10020430 interpret statement in way V
10020470 depend ambiguity for humor N
10020470 shoot elephant in pajamas V
10020510 introduce ambiguity in narrative V
10020510 introduce ambiguity in way V
10020520 use type in novel V
10020520 use type with effect V
10020540 employ concept of paradox N
10020540 employ concept with ambiguity V
10020590 consider mechanism of humor N
10020720 create language with intention V
10020750 criticize attempt at improvement N
10020750 provide precision over language N
10020760 compose language from source V
10020790 compare expression in language N
10020820 confuse ambiguity in style N
10020820 define function in way V
10020920 omit sign in expression V
10020960 avoid creator of language N
10020960 try creator of language N
10020970 require character as symbol V
10020980 indicate argument of function N
10021020 require insertion in case V
10021030 write argument of function N
10021050 mean product in style V
10021170 mean state with value N
10021170 use state in book V
10021170 use state with value N
10021240 double gain of system N
10021240 mean sentence without context N
10021250 double ratio to voltage N
10021260 double ratio to power N
10021270 assume population of level N
10021270 double gain of medium N
10021270 double population of level N
10021280 relate confusion with use V
10021280 resolve detail at background V
10021370 use ambiguity as trick V
10021380 give name to function V
10021380 give name to transform V
10021420 contain symbol in amount V
10030055 be goal of research N
10030080 propose name for field N
10030110 imagine implication in detail V
10030130 endow consciousness by craftsman V
10030130 endow statue by craftsman V
10030160 explore issue in fiction V
10030240 estimate capability of machine N
10030240 measure improvement in technology N
10030240 measure improvement with accuracy V
10030330 become leader for decade N
10030420 revive success of system N
10030460 adopt intelligence throughout industry V
10030500 answer philosophy of intelligence N
10030500 attempt philosophy of intelligence N
10030530 form basis of test N
10030550 print assertion in proposal V
10030550 represent position of researcher N
10030570 be essence of intelligence N
10030580 have feel for situation N
10030620 counter assertion with argument V
10030650 combine idea with idea V
10030720 require resource for problem V
10030730 be priority for research N
10030730 be search for algorithm N
10030810 require knowledge about world N
10030880 identify problem as problem V
10030930 inform context for knowledge N
10030930 provide context for knowledge N
10030930 support context for knowledge N
10030960 build base of knowledge N
10031030 determine plan for community N
10031080 generate output from input V
10031090 reward agent for response V
10031130 acquire knowledge on own V
10031130 exist text over internet N
10031130 read text over internet N
10031190 deduce aspect of world N
10031190 use input from sensor N
10031230 play role for agent V
10031240 predict action of other N
10031290 address creativity from perspective V
10031290 address creativity via implementation V
10031310 know machine with intelligence N
10031320 require feature for project V
10031460 become access to computer N
10031460 reduce intelligence to manipulation V
10031470 center research in institution V
10031470 develop style of research N
10031495 lay foundation of field N
10031510 center tradition at university V
10031540 lead work in logic N
10031575 become computer with memory N
10031575 build knowledge into application V
10031610 simulate thinking in program V
10031660 revive viewpoint of researcher N
10031690 emerge discipline of intelligence N
10031720 permit level of collaboration N
10031800 use concept of agent N
10031820 build system out+of agent V
10031820 interact agent in system N
10031830 be system with component N
10031850 be proposal for system N
10031870 develop number in course V
10031870 solve problem in science N
10031900 solve problem in theory V
10031930 use search in space V
10031940 have search at core V
10031970 expand size of space N
10031970 expand size to number V
10032050 introduce logic in proposal V
10032050 introduce logic into research V
10032130 use form in research V
10032140 be logic of statement N
10032170 use system for reasoning V
10032170 use system in system V
10032280 form part of system N
10032380,10810300 depend characteristic of data N
10032400,10810320 determine characteristic of data N
10032400,10810320 find characteristic of data N
10032520 use tool from computation N
10032520 use tool such+as algorithm N
10032560 develop language for research N
10032560 specialize language for research N
10032620 develop planner around time V
10032630 design language for mathematics V
10032660 test intelligence of agent N
10032690 evaluate intelligence on problem V
10032770 near performance at chess N
10032790 promote research in intelligence N
10032820 use intelligence in range V
10040050 expose aspect in conversation V
10050040,10600290 be system in case V
10050050 be tool in term V
10050060,10710040 find pattern in data V
10050110,10600360 alter strength of connection N
10050150,10600370 abandon approach for approach V
10050150,10600370 abandon approach in implementation V
10050230 arise word in term N
10050230 define composition of function N
10050240 depict dependency between variable N
10050270 indicate dependency between variable N
10050300,10050320 encounter view in context V
10050370 call network with cycle N
10050400 depend value at point N
10050410 illustrate model at bottom N
10050480 be function for application V
10050480 be function of observation N
10050510 have sample in situation V
10050660 contain knowledge about domain N
10050750 consider model as example V
10050780 relate information in compression V
10050850,10600660 minimize measure i+e cost N
10050850,10600660 minimize measure of cost N
10050940 determine distribution over set N
10050940 select model from set V
10050970 change parameter in direction V
10050970 take derivative of function N
10050970 take derivative with respect V
10051010 find correlation in environment V
10051010 monitor time of signal N
10051080 be trade-off between algorithm N
10051150,10600410 infer function from observation V
10051150,10600410 lie utility of model N
10051160 make design by hand V
10051340 use replacement for characteristic N
10051340,10712100 apply function in area V
10051350 map input in first V
10051370 be combination in problem V
10051390 be function in problem V
10051390 be function of combination N
10051390 represent function of combination N
10051400 correspond belief in framework V
10051400 improve performance in case N
10051400 know regression in statistics N
10051410 suffer minimum in way V
10051420 adjust parameter in process V
10051460 require coverage by function N
10051470 determine center with reference V
10051470 determine center without reference V
10051480 waste resource as result V
10051480 waste resource on area V
10051490 solve system in layer V
10051510 project data into space V
10051520 maximize probability of data N
10051520 minimize probability of data N
10051520 train network in framework V
10051520 train network like process V
10051580 map point in space N
10051610 be model with flow N
10051640 be variation on layer N
10051640 call network due+to invention V
10051640 call variation due+to invention V
10051640 call variation on layer N
10051650 use network with addition V
10051660 be connection from layer N
10051660 be connection to unit N
10051660 fix connection from layer N
10051660 fix connection to unit N
10051660 fix connection with weight V
10051680 propagate unit over connection V
10051690 perform task as prediction N
10051690 perform task beyond power N
10051700 receive input in network V
10051710 arrange network in layer V
10051720 receive input in+addition+to input V
10051730 perform function of layer N
10051790 be network with layer N
10051800 be part of network N
10051800 change part of network N
10051800 learn part of network N
10051860 introduce variation into network V
10051870 view variation as form V
10051870 view variation in view V
10051890 think machine as network V
10051940 give concept of network N
10051980 give network in fact V
10052030 use correlation as measure V
10052030 use correlation between response N
10052070 interpret result by analysis V
10052070 interpret result in space V
10052120 map information onto orientation V
10052160 require version for data N
10052200 process information in domain V
10052250 have textbook on model N
10052260 spike network with conduction V
10052340 become detector in network N
10052350 have advantage over algorithm N
10052350 require propagation of signal N
10052350 require propagation through connection V
10052380 be system in body N
10052400 find parameter of system N
10052480 be composition of function N
10052480 encode image at resolution V
10052530 have architecture with weight N
10052530 have power of machine N
10052540 result machine with power N
10052540 result use for weight N
10052640 be guide to application N
10052670 exceed capacity of network N
10052710 determine confidence of model N
10052760 give measure on classification N
10052790 apply technique i+e glass N
10052790 develop technique i+e glass N
10060020 be association for linguistics N
10060020 be society for people N
10060030 hold meeting in location V
10060070 be forum for research N
10060170 colon mathematics of language N
10070030 use animal for translation V
10070030 use animal in series V
10070050 provide technology for fish N
10070090 move site after existence V
10080020 solve problem on level V
10080030 solve problem on scale V
10080040 overlap research in biology N
10080050 include effort in field N
10080090 carry investigation of problem N
10080090 carry investigation with data V
10080090 carry investigation with goal V
10080090 drive investigation of problem N
10080090 refer biology on hand N
10080090 refer investigation of problem N
10080090 use investigation of problem N
10080130 be thread in project N
10080200 show comparison of gene N
10080230 compensate mutation in sequence V
10080240 use variant in process V
10080240 use variant of alignment N
10080280 assemble month of time N
10080290 sequence method for genome N
10080300 be aspect in analysis N
10080320 serve part of dna N
10080320 serve purpose within genome V
10080340 bridge gap between project N
10080370 be process in context V
10080380 analyze genome of organism N
10080380 sequence genome of organism N
10080430 assist biologist in way V
10080440 measure change in dna N
10080440 trace evolution of number N
10080460 predict outcome of system N
10080460 predict outcome over time V
10080470 share information on number N
10080470 track information on number N
10080490 confuse area within science N
10080490 use area within science N
10080510 define complement of environment N
10080540 endanger population in conservation N
10080540 model thing as dynamic V
10080630 explore step in process N
10080660 compare data from variety N
10080660 form hypothesis about gene N
10080670 compare stage along+with condition N
10080670 compare stage in organism V
10080690 search region of gene N
10080690 search region over element V
10080740 arrange genome in cancer V
10080740 arrange genome in way V
10080740 arrange genome of cell N
10080750 identify mutation in variety N
10080780 measure site throughout genome N
10080840 determine sequence from sequence V
10080850 determine structure in environment V
10080850 determine structure in majority V
10080860 be exception aka disease N
10080870 understand function of protein N
10080880 classify information for lack V
10080890 remain solution to prediction N
10080940 know structure of protein N
10080940 predict structure of protein N
10080940 use information in technique V
10080970 transport oxygen in organism V
10081020 be core of analysis N
10081120 understand process via simulation V
10081150 make measurement from set N
10081220 determine pattern in lung N
10081240 extend recording of animal N
10081240 make observation from recording N
10081290 work place in field V
10081320 determine similarity against sequence N
10081320 determine similarity of sequence N
10081320 know tool among biologist V
10090100 indicate quality as number V
10090100 indicate quality of translation N
10090100 measure quality of translation N
10090130 approximate judgment on level N
10090130 evaluate quality of sentence N
10090150 compare translation against translation V
10090210 present problem for metric N
10090230 take count for word V
10090230 take count in translation N
10090260 compare count against count V
10090260 compare count of word N
10090350 make modification to precision V
10090430 twin precision with recall V
10090440 have recall such+as translation N
10090440 inflate recall such+as translation N
10090450 combine score for corpus V
10090450 combine score for segment N
10090450 modify score for segment N
10090490 use sentence in version V
10090540 be increase in score N
10090550 take score at level V
10090580 produce score in evaluation V
10090600 compare system in study V
10090610 give score by judge V
10090630 compare result from system N
10090630 track change to system N
10100030 support purpose of intelligence N
10100100 gather information on company V
10100120 collect data from source N
10100130 make decision as result V
10100130 make decision on+the+basis+of intuition V
10100140 move inability between system V
10100140 move inability of information N
10100140 move inability within system V
10100180 refer facility as system V
10100180 serve conduct in sense V
10100180 serve conduct of business N
10100270 expand methodology with methodology V
10100290 offer analysis in case V
10110020 simulate conversation with user N
10110030 be program in word V
10110030 be program with intelligence N
10110030 talk program with intelligence N
10110150 make response from input V
10110170 require intelligence e+g system N
10110210 create expansion in purpose N
10110260 reveal information such+as number N
10110410 focus aspect of technology N
10110420 follow rule in way V
10110470 introduce assistant into classroom V
10110520 organize contest at link V
10120080 date linguistics as field N
10120090 translate text from language N
10120120 bear linguistics as name V
10120260 specialize logic like logic N
10120290 model complexity of language N
10120290 model complexity on theory V
10120300 define association for linguistics N
10130020 be instruction for computer N
10130040 derive program from code V
10130060 write code in language V
10130070 convert code into file V
10130080 execute program with aid V
10130090,10130980 categorize program along line V
10130160,10160440,10440370 write program in language V
10130200 refer process as development V
10130300 use value of variable N
10130315 be criticism of language N
10130315 be effect of statement N
10130315 be effect on class N
10130340 allow principle behind language N
10130340 make program like function N
10130340 reason program like function N
10130350 define principle behind language N
10130350 leave principle behind language N
10130390 create program in form V
10130420 call program in form N
10130430 convert code into image V
10130430 execute code with aid V
10130440 refer program as binary V
10130440 refer program as executable V
10130450 translate code from language N
10130490 compile program ahead+of time V
10130490 store program as code V
10130560 require property of language N
10130600 treat program in execution N
10130610 blur distinction in case V
10130660 load program by program V
10130660 load program into memory V
10130660 load program upon request V
10130680 call program in execution N
10130720 store program in memory V
10130730 identify aspect of system N
10130780 input program via switch V
10130860 generate code with tool V
10130870 replace pattern according+to rule V
10130870 replace pattern in code N
10130890 burn code as fuel V
10130910 assemble content from article V
10130950 switch cpu among process V
10130960 run program within hardware V
10131010 provide purpose of system N
10131020 include program in+addition+to system V
10131050 solve problem like need N
10140030 emphasize computation of result N
10140030 relate property of problem N
10140090 exist machine such+as abacus N
10140110 design engine in time V
10140160 establish discipline with creation V
10140160 establish science with creation V
10140170 become area in right N
10140240 see shift from computer N
10140250 be norm within life V
10140270 consume space within office N
10140270 need space within office N
10140290 make number despite history V
10140410 involve study despite name V
10140440 be department at university N
10140440 found department at university N
10140450 use term in country V
10140490 use term with frequency V
10140510 consider province of discipline N
10140570 be interchange between field N
10140570 be interchange of idea N
10140600 fund aspect of science N
10140600 have aspect of science N
10140620 consider department with emphasis N
10140620 consider department with orientation N
10140670 split science into topic V
10140720 find proof in domain N
10140770 understand property of program N
10140810 state problem in term V
10140980 use process for computation V
10141010 translate program from language V
10141030 take program as input V
10141100 use device over network N
10141150 design solution to task N
10141150 use idea from theory N
10141300 provide basis of system N
10141360 communicate data across media V
10141410 be extraction from source N
10141410 be extraction of data N
10141550 identify object from picture V
10141610 control behavior of robot N
10141640 sample algorithm from world V
10141660 determine information from image N
10141660 determine information through computation V
10141690 use computer through interface V
10141860 develop competency of science N
10141880 teach science as study V
10141930 refer aspect as engineering V
10150060 claim use for corpus N
10160120 be device such+as telephone N
10160120 think device such+as telephone N
10160130 depend feature of platform N
10160140 be platform for software N
10160210 know code in world V
10160210 use machine for code V
10160320 write code for language V
10160330 enable binary through machine V
10160420 write software for system V
10160430 implement standard for computer N
10160430 port suite of software N
10160460 describe application as platform V
10160480 complicate goal at odds N
10160480 complicate goal of capability N
10160510 consist interaction with application N
10160520 be norm in phase V
10160570 find feature in version V
10160590 lack support for feature N
10160640 diminish functionality for browser V
10160640 diminish functionality to denominator V
10160650 switch mode with functionality V
10160660 view strategy as form V
10160680 attempt separation of functionality N
10160680 omit separation of functionality N
10160680 see separation of concern N
10160700 depend client in use N
10160710 differ version within system N
10160720 complicate support for plug-in N
10160740 hide complexity behind api V
10160740 hide complexity of differentiation N
10160760 be aspect of design N
10160760 complicate aspect of design N
10160770 prohibit installation on restriction V
10160780 use technique as work-around V
10160860 build software for software V
10160860 distribute software as executable V
10160860 distribute software such+as software N
10160880 be platform in case N
10160890,10440400 write program in code V
10160930 compile application for generation V
10160930 run application as example V
10160970,10161020 write script for system V
10160990 use script on computer V
10160990 use script unlike executable V
10161000 store script in file V
10161000 store script in text V
10161010 be issue such+as type N
10161140 be platform as computer N
10161140 release game on range V
10161230 release game on platform V
10161250 become platform because+of agreement V
10161250 make game for console V
10161390 rely feature of platform N
10161400 implement algorithm on platform V
10161400 implement algorithm such+as algorithm N
10161450 create version in tree V
10161450 have set in word V
10161500 call difference between platform N
10161500 hide difference between platform N
10161520 build program in fashion V
10161630 have binding for language N
10161750 abstract call through object V
10161930,10161960 include system with machine N
10162050 provide development for developer V
10162170 discard change to file N
10162170 save change to file N
10162190 use technique like compilation N
10170070 use term in discussion V
10170080 be origin as concept N
10170100 generate data within context V
10170110 group data in way V
10170130 use word in sense V
10170200 show usage in publication N
10170200 treat noun in usage V
10170230 think data as plural V
10170240 think data as entity V
10170245 include usage in use N
10170245 treat data as singular V
10170260 treat singular in connection N
10170260 use data for use V
10170280 convert quantity in sense V
10170280 convert quantity into symbol V
10170290 input data into computer V
10170300 consider data from stage N
10170300 consider data of next N
10170300 process data from stage N
10170310 classify device according+to mean V
10170310 represent data by mean V
10170330 represent data as sequence V
10170340 use alphabet that+is alphabet V
10170350 construct representation from alphabet V
10170400 be term for metadata N
10170430 use term for concept V
10170470 bear diversity from usage N
10170470 bear diversity of meaning N
10170470 bear information as concept N
10170490 use concept of sign N
10180040 discover feature in data V
10180080 originate apparatus in physics V
10180080 originate apparatus via system V
10180100 be operation in experiment V
10180100 carry operation by software V
10180120 predict response of detector N
10180120 predict response to event N
10180170 be analysis in audit N
10190050 be model in use N
10190110 be difference between product N
10190170 be pioneer in field N
10190190 adopt system as cornerstone V
10190190,10791280 use model in system V
10190210 develop former as system V
10190310 take notice apart+from application V
10190340 integrate feature as result V
10190340 integrate product as result V
10190360 be area for innovation N
10190420 offer level of control N
10190460 arrange element in hierarchy V
10190460 establish relationship among element N
10190470 be unit in model N
10190480 relate record in model V
10190480 relate record on level N
10190550 store record with link V
10190560 have record in database N
10190560 have relationship among element N
10190570 track association via pointer V
10190600 translate database from model V
10190670 be structure of model N
10190680 enumerate attribute of entity N
10190690 represent instance e+g employee N
10190720 adhere table in database N
10190740 allow row in table V
10190760 imply relationship between record N
10190780 select row from table N
10190790 have value for row N
10190800 join data from table N
10190800,10190900 combine data from table N
10190810 match key of table N
10190820 facilitate retrieval from table N
10190830 use column as key V
10190880 return set in response V
10190940 have database in form N
10190960 meet requirement for form N
10190990 implement feature of model N
10191010 represent content in way V
10191010 represent content of database N
10191040 represent value in relation N
10191060 direct graph with tree N
10191060 identify graph with tree N
10191090 apply paradigm in year V
10191120 introduce idea into world N
10191140 approach problem from end V
10191150 require addition of kind N
10191160 attack problem from end V
10191160 define model for database N
10191160 orient model for database N
10191230 be choice for designer N
10191240 reduce time for query N
10191280 be list with pointer V
10191310 increase efficiency in case N
10191350 analyze time of algorithm N
10191380,10191440 speed access to data N
10191410 put data to use N
10191420 ensure reference to record N
10191430 use number for purpose V
10191440 play role in database N
10191500 declare rule of database N
10191570 execute transaction in manner V
10191580 lose action of transaction N
10191610 create duplicate in time V
10191610 create duplicate of data N
10191690 protect database from activity V
10191740 encode data into table V
10191760 authorize disclosure of information N
10191760 hold information on database V
10191760 protect public from disclosure V
10191770 hold data in format N
10191820 maintain integrity of data N
10191820 modify process at time N
10191910 read data during operation V
10191920 have impact on performance N
10191930 lead result to response V
10191950 set lock on data V
10191970 lead situation at point V
10191970 lead situation between lock N
10192020 lock database for maintenance V
10192020 make change during maintenance V
10192110 use database in application V
10192120 need coordination between user N
10200030 be technique for analysis N
10200030 use analysis in field V
10200040 classify set into cluster V
10200120 use algorithm as algorithm V
10200150 be property of space N
10200180 calculate similarity of element N
10200180 select step in clustering N
10200190 influence shape of cluster N
10200230 be measure in study N
10200230 publish study in area N
10200330 contain cluster at other N
10200350 indicate clustering in figure V
10200360 cut tree at height V
10200360 give clustering at precision V
10200420 build hierarchy by cluster V
10200420 build hierarchy from element V
10200440 merge element in cluster V
10200450 take element according+to distance V
10200460 be distance between element N
10200460 be number in column N
10200460 construct matrix at stage N
10200480 cache distance between cluster N
10200490 describe algorithm in page V
10200530,10200550,10200570 call distance between element N
10200690 be mean for dimension N
10200740 generate point as center V
10200780 be advantage of algorithm N
10200790 yield result with run V
10200840 have coefficient for point V
10200870 be mean of point N
10200870 weight mean of point N
10200890 relate inverse of distance N
10201010 compute coefficient for point V
10201030 be method colon membership V
10201090 choose diameter for cluster N
10201100 build cluster for point N
10201100 surpass diameter of cluster N
10201110 remove point in cluster N
10201110 save cluster as cluster V
10201110 save cluster with point N
10201260 choose number of cluster N
10201270 have bearing on performance N
10201330 indicate elbow on graph V
10201380 use algorithm for segmentation V
10201440 partition subset in fashion V
10201450 cluster point by component V
10201480 have application in biology V
10201490 take form in imaging V
10201550 be tool for annotation N
10201580 see evolution by duplication N
10201590 use algorithm in platform V
10201620 consider intensity with dimension V
10201620 take image over time V
10201650 use analysis in research V
10201660 partition population into segment V
10201660 partition population of consumer N
10201660 understand relationship between group N
10201720 recognize community within group N
10201730 divide image into region V
10201740 partition item into subset V
10201800 divide map for conversion V
10201800 divide map into region V
10201860 be suggestion for measure N
10201900 approximate distance across lattice N
10201900 approximate distance between clustering N
10201920 put effort in year V
10210080 be shift toward analysis N
10210110 include technique for discovery N
10210120 go trend within data N
10210120 identify trend within data N
10210130 have opportunity through use V
10210140 abdicate control from statistician V
10210160 produce report for year V
10210160 sift computer through volume V
10210230 gear system such+as network N
10210270 have data from world N
10210430 discontinue program due+to controversy V
10210460 be extraction from oracle N
10210460 be extraction of strategy N
10210560 see return on investment N
10210570 build model rather+than model V
10210610 identify characteristic of employee N
10210620 help information such+as university N
10210620 obtain information such+as university N
10210630 translate goal such+as target N
10210640 relate use in sale N
10210670 deal rule within data N
10210690 develop problem within month V
10210730 improve profit on product N
10210760 understand goal in area N
10210770 affect change in sequence N
10210770 develop disease such+as cancer N
10210800 use technique in area V
10210870 apply technique for analysis V
10220020 present collection in form V
10220070 comprise data for member N
10220070 correspond data for member N
10220100 represent column as list V
10220140 indicate value in way V
10220150 correspond observation on element N
10220160 generate set for purpose V
10220190 use set in literature V
10220260 use data in paper V
10230050 speak character in play N
10230050 teach character in play N
10230080 provide parody of response N
10230090 give base of knowledge N
10230120 continue illusion of writer N
10230120 depend entry by user N
10230120 dispel illusion of writer N
10230130 be anecdote about people N
10230260 base program in language N
10230260 be program in language N
10230370 use assembly on plus V
10240070 accelerate adoption as language N
10240070 accelerate influence of union N
10240070 grow influence of union N
10240090 reduce diversity in part V
10240090 reduce impact in common N
10240090 reduce impact of growth N
10240190 be language in sense N
10240190 develop speaker of language N
10240190 develop tongue for communication V
10240190 mix language in sense N
10240220 develop language of flexibility N
10240220 develop language with vocabulary N
10240240 belong branch of branch N
10240290 absorb vocabulary after conquest V
10240310 follow pattern of stress N
10240340,10781220 be language by number N
10240370 outnumber speaker by ratio V
10240460 be language in colony N
10240460,10290740 be language in territory N
10240520 teach language around world V
10240520 teach language as language V
10240520,10290070 be language in country V
10240530 absorb aspect of culture N
10240540 be language by treaty V
10240540 be language for communication N
10240570 report fraction of population N
10240610 be language in science N
10240610 use language in science N
10240650 develop host because+of spread V
10240710 have accent because+of use V
10240720 see accent for characteristic V
10240720 see list for characteristic V
10240730 borrow word from language N
10240730 borrow word over history V
10240750 contain proportion of word N
10240770 speak variant in region V
10240780 mix language by speaker V
10240840 use vocabulary of word N
10240890 design signal for use V
10240890 represent language with signal V
10241000 pronounce word with sound N
10241120 play role in majority V
10241200 see+also chart for chart V
10241220 use symbol from alphabet N
10241260 be homophone for speaker V
10241280 represent sound in variety V
10241380 have deal of trouble N
10241530 change pitch of voice N
10241530 convey pitch of voice N
10241530 use pitch of voice N
10241540 call group of word N
10241610 get syllable within phrase N
10241610 get syllable within word N
10241640 subdivide group in sentence V
10241640 subdivide group into syllable V
10241780 acquire money by mean V
10242010 have impact in relation V
10242010 have impact on meaning N
10242020 rise pitch of question N
10242020 underlie pitch of question N
10242160 develop feature as resource V
10242200 trace origin like language V
10242200 trace origin through branch V
10242200 trace origin to pie V
10242300 give control over register N
10242350 make point in argument N
10242350 make point in way V
10242350 use word in setting V
10242370 be word for concept N
10242370 use word in speech V
10242390 accept term into usage V
10242410 provide meaning in addition V
10242500 make way into usage N
10242500 use word in community V
10242530 estimate editor in preface N
10242530 estimate editor of dictionary N
10242570 demonstrate origin of vocabulary N
10242650 derive name colon percent V
10242670 give survey in origin N
10242670 give survey of word N
10242670 take word from letter V
10242760 describe word from origin N
10242880 be product of language N
10242920 pronounce letter in way V
10242950 leave mark in communication V
10242990 agree speaker around world N
10242990 educate speaker around world N
10243020 limit variation in version N
10243110 keep grammar for user V
10243120 gain publicity after war V
10243120 gain publicity as tool V
10243160 have lexicon of word N
10243160 use word in way V
10250020 construct language in world N
10250020 speak language in world N
10250020,10301170,10420980 be language in world N
10250040 mean one in language V
10250130 be language in university N
10250130,10420900 be language of instruction N
10250190 hold congress in country V
10250220 attract suspicion as vehicle V
10250220 attract suspicion of state N
10250260 single family for execution V
10250270 give measure in year V
10250270 give measure of support N
10250290 denounce language of spy N
10250320,10252720 be language of country N
10250340 be talk in circle N
10250340 bring country into century V
10250350 use language in communication V
10250370,10700220 be language of organization N
10250400 be language of academy N
10250430 relate language as language V