-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDictionary.json
17321 lines (17321 loc) · 900 KB
/
Dictionary.json
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
{
"abide": {
"abide by": {
"sentences": [
"First, the tuning system should always abide by the ser\u0002vice level agreement (SLA) while optimizing the resource utilization,",
"Non-adversarial mining power abides by the protocol."
]
}
},
"ability": {
"ability to": {
"sentences": [
"reinforcement learning approaches have long appealed to the data management community due to their ability to learn to control dynamic behavior from raw system performance."
]
}
},
"able": {
"be able to": {
"sentences": [
"Our cost model is able to capture the hardware characteristics as well as query statistics to give an accurate estimation.",
"Results show that our scheme is able to closely match the system mining power and the mining difficulty for each individual chain, thus keeping the chain forking rate stable."
]
}
},
"abort": {
"abort a transaction": {
"sentences": [
"The coordinator decides to commit or abort a transaction based on decisions collected from workers in the prepare phase"
]
},
"abort sth": {
"sentences": [
"The coordinator decides to commit or abort a transaction based on decisions collected from workers in the prepare phase"
]
}
},
"abstract": {
"abstract from": {
"sentences": [
"Tencent-RB is a real benchmark abstracted from the Tencent billing service platform."
]
},
"abstract as": {
"sentences": [
"We abstract the hash function as a random oracle functionality."
]
}
},
"accelerate": {
"accelerate by": {
"sentences": [
"Linet al.[59] accelerated the inference process by constructing a lookup table for both input and function spaces learned by PointNet."
]
},
"accelerate even further": {
"sentences": [
"We expect the trendof using ML for DB will accelerate even further in the future, andhope that our work in initiating a formal study of the learnabilityof DB problems will complement the existing efforts at leveragingdeep learning for improving the performance of DB systems inpractice."
]
},
"accelerate sth.": {
"sentences": [
"GPUs also have significant potential to accelerate memory-bound applications such as database systems."
]
},
"accelerate the recovery process": {
"sentences": [
"Instead, it complements them because it accelerates the recovery process through simultaneous reduction of recovery communication costs and parallelization of the recovery computations"
]
},
"accelerate sth": {
"sentences": [
"Oracle DBIM accelerates HTAP workloads by maintaining an in-memory column store for active data.",
"To accelerate the tuning process by reducing the budget to tens of iterations"
]
}
},
"accept": {
"be accept in": {
"sentences": [
"The possibility of data loss can be accepted in exchange for possibly better throughput"
]
},
"accept as long": {
"sentences": [
"Applications that need the highest level of availability 4.8.1 Ring Membership can set W to 1, which ensures that a write is accepted as long as a single node in the system has durably written the key it to its local In Amazon\u2019s environment node outages (due to failures and store."
]
}
},
"access": {
"access to": {
"sentences": [
"Furthermore, the model can access to a background KG",
"In DA, a learner usually has access to the labelled source data and unlabelled target data, and it is typically trained to align the feature distribution between the source and target domain.",
"Jason et al. studied a set of database primitives on the integrated GPU of a coupled architecture and show that transparent access to CPU virtual addresses and very low overhead of computation offloading are important for query co-processing performance.",
"Since the ground truth for the test set is not available and the access to the test server is limited,",
"When designing a testing tool, access to source code and some knowledge about the PUT are often assumed.",
"Note that nr can only be determined by examining the view of all honest parties and is not a quantity that is accessible to any of the honest parties individually.",
"In other words, we only access to the effect, but not the causes"
]
},
"access via": {
"sentences": [
"the blocks are accessed via two index arrays, a vertex index and an edge index, storing pointers to appropriate blocks by vertex id."
]
},
"access from": {
"sentences": [
"Generally, servers can be accsessed from multiple clients at the same time"
]
},
"access the main memory": {
"sentences": [
"The RDMA feature allows a machine to directly access the main memory of another machine without the involvement of the operating systems of either side"
]
},
"be access in": {
"sentences": [
"A volume can be randomly accessed in 512B alignment"
]
},
"access as well": {
"sentences": [
"The speedup is a function of the fraction of the record accessed as well as Acknowledgements the selectivity."
]
},
"access in only": {
"sentences": [
"Sec. 4.2.1 showed that \u224850% of ETC\u2019s keys are accessed in only 1% of requests, and therefore bene\ufb01t We created functional models by \ufb01tting various distribu-"
]
}
},
"accesse": {
"accesse to": {
"sentences": [
"On multicore CPUs, this could present a scalability bottleneck as an SMO will block concurrent accesses to the node."
]
}
},
"accommodate": {
"accommodate the rapidly": {
"sentences": [
"Extending these frameworks to accommodate the rapidly diversifyinglandscape of DL models and hardware platforms presentschallenging tradeoffs between expressivity, composability, andportability."
]
},
"accommodate to": {
"sentences": [
"One one hand, LBE can accommodate to a wide range of popular classifiers such as LF and MLP presented in this paper."
]
}
},
"accompany": {
"accompany ..with..": {
"sentences": [
"We also accompany it with an online appendix with detailed proofs and numerous additional experiments"
]
},
"be accompany by": {
"sentences": [
"For all nine questions, each response option was accompanied by an explanation to support its understanding."
]
}
},
"accomplish": {
"accomplish by": {
"sentences": [
"although the ldbc workload driver provides a time compression ratio parameter to achieve certain throughputs, this is accomplished by coarsening the granularity of scheduled and dependency times."
]
},
"accomplish with": {
"sentences": [
"This task is usually accomplished with help from existing knowledge bases."
]
}
},
"accord": {
"accord to": {
"sentences": [
"For example, character \u201c\u8fd8\u201d has two 3Among 7000 common characters in Chinese, there are about 700 characters that have multiple pronunciations, according to the Contemporary Chinese Dictionary",
"according to [yao et al., 2019], above 40.7% of relations can only be identified at the document level.",
"According to the correlation between wavelength and fog concentration",
"Then, according to the correlation between wavelength and color, a transmission estimation algorithm based on maximum fuzzy correlation graph cut is designed.",
"According to the hypothesis that words with similar context have similar semantics",
"It should be noted that R\u03b3,b in Algorithm 1 can be applied in Randomize(\u00b7) as a basic randomizer, which accords to estimating with equation (1) for line (18)",
":The difficulty of the proposer blocks is adjusted according to the Bitcoin rule [13].",
"the features are then fed into self-attention computation and each token, according to the vanilla design, can exchange information with all the others at every single layer."
]
}
},
"account": {
"account for": {
"sentences": [
"Then we account for the central DP against the analyzer",
"Follow up works [23, 59] extended the open set framework to multi-class classifier setting with probabilistic models to account for the fading away classifier confidences in case of unknown classes.",
"does not account for the appearance at other locations of the reference image.",
"This flexibility allows users to account for changes in their interpretation of policy text as they read and understand the privacy policy to answer successive ques- tions.",
"To account for such hybrid schemes, we define a generic scheme that combines universe and Bernoulli sampling.",
"These are called here minimum temporal paths, and account for different measures.",
"They account for over 50% of total time on 17 of the 22 queries on the TPC.",
"average errors amount and quality of resources are accounted for jointly.",
"Further, in addition to traditional position embeddings, this work accounts for the hierarchical nature of tabular data using tree-based positional embeddings.",
"To account for class imbalances, we evaluate model performance using the average F1-score, weighted by the number of columns per class in the test set.",
"Each group accounts for a dedicated attention granularity.",
"Depth residual \u2013 which accounts for the fact that if one is an outlier",
"Each robot accounts for its own state."
]
}
},
"accurate": {
"be accurate by": {
"sentences": [
"Thus, model \u201cpredictions\u201d in inner nodes during traversal are accurate by construction."
]
}
},
"achieve": {
"achieve for": {
"sentences": [
"APEX also achieves crash consistency for all operations with low overhead."
]
},
"achieve by": {
"sentences": [
"The invariance to geometry transformation is achieved by learning from relative euclidean and direction distances.",
"achieving by up to 4x for a broader class of workloads with different index operations.",
"livegraph is the first system that guarantees these properties, achieved by co-designing a graph-aware data structure (section 3) and the concurrency control algorithm (sections 4 and 5) to ensure purely sequential scans even in the presence of concurrent transactions.",
"pre-trained models achieve performance improvement by training knowledge"
]
},
"have achieve": {
"sentences": [
"Calvin has already achieved over traditional nondeterministic execution schemes in the presence of distributed transactions."
]
},
"achieve target": {
"sentences": [
"To achieve such target, a common and reasonable idea is to train different embeddings with cause-specific data."
]
},
"achieve a more": {
"sentences": [
"however, all of these approaches are orthogonal to the idea of learned indexes as none of them learn from the data distribution to achieve a more compact index representation or performance gains."
]
},
"achieve tremendous success on": {
"sentences": [
"Recent pre-trained language models (LMs) such as BERT (Devlin et al., 2019) and RoBERTa (Liu et al., 2019) achieve tremendous success on a spectrum of natural language processing tasks, including semantic parsing (Zettlemoyer & Collins, 2005; Zhong et al., 2017; Yu et al., 2018b)."
]
},
"be achieve by": {
"sentences": [
"The best result on SPIDER is achieved by using GRAPPA pre-trained for only 5 epochs on our relatively small pre-training dataset."
]
},
"achieve much higher performance than": {
"sentences": [
"However, a critical difference is that we focus on the supervised learning setting, where the model parameters are fine-tuned to learn from given examples to achieve much higher performance than few-shot learning or non-parametric methods."
]
},
"achieve up": {
"sentences": [
"We show that it achieves up to 10x and 3.5x speed-up on the radix-join against CPU and GPU alternatives, respectively, and 1.6x-8x against state-of-the-art CPU- and GPU-based commercial DBMSs on the selected TPC-H queries."
]
},
"achieve sth.": {
"sentences": [
"The results on all metrics show that our proposed Though using only language-style discriminator achieves model greatly outperforms all the baselines."
]
},
"achieve in": {
"sentences": [
"Convolutional neural networks (CNNs) have achieved great successes in many computer vision problems."
]
},
"achieve fault tolerance\u3001": {
"sentences": [
"One key challenge in such design is to achieve fault tolerance when the CPUs on backup servers do not participate in the replication protocol"
]
},
"achieve sth": {
"sentences": [
"we achieve superior pelf-training"
]
},
"achieve via": {
"sentences": [
"communications between windows are achieved via the proposed msg tokens, which avoid frequent feature dimension transitions and maintain high concision and efficiency."
]
},
"achieve on": {
"sentences": [
"Transformer [24] has achieved surprising success on machine translation"
]
},
"achieve with": {
"sentences": [
"This section shows that the generated algorithms achieve similar optimization effects with their Paxos counterparts"
]
}
},
"acquire": {
"be acquire": {
"sentences": [
"For thread safety, the lock head generally stores a mutex object, which is acquired before lock requests and releases to ensure that adding or removing elements from the linked list always occurs within a critical section"
]
},
"acquire by": {
"sentences": [
"The information on which this decision is based is acquired by PREPROCESS and CONFUPDATE, which augment C with this knowledge.",
"3D data acquired by these sensors can provide rich geometric, shape and scale information [2], [3]."
]
},
"be acquire by": {
"sentences": [
"Further, the semantic space is acquired by jointly embedding each photo with its corresponding contextual sentence such that their correlations are discovered (Liu et al., 2017)."
]
},
"acquire with": {
"sentences": [
"We propose Generative Style Decoder to acquire long sequence output with only one forward step needed."
]
},
"acquire lock": {
"sentences": [
"In the read phase, transactions perform read operations from the database and write operations to local copies of objects without acquiring locks"
]
},
"acquire sth": {
"sentences": [
"In the read phase, transactions perform read operations from the database and write operations to local copies of objects without acquiring locks"
]
}
},
"acr": {
"act as": {
"sentences": [
"The second part acts as a solver for non-linear problem."
]
}
},
"act": {
"act as": {
"sentences": [
"The BPIIoT platform will act as a key-enabler for cloud-based manufacturing",
"hash-based sketches act as a key computational bottleneck depending on the workload.",
"This is achieved through a visibility matrix, which acts as an attention mask so that words in each cell can only aggregate information from other structurally related words during the \ud835\udc40\ud835\udc62\ud835\udc59\ud835\udc61\ud835\udc56\ud835\udc34\ud835\udc61\ud835\udc61 calculation.",
"Then, the worker adds the value (i.e. number of other workers marking this record) to its local contention counter, which acts as a proxy for record contention",
"Our approach establishes pointwise correspondences from off-the-shelf local features: it acts as a middle-end between handcrafted or learned front-end and back-end.",
"which acts as an overflow area."
]
},
"act like": {
"sentences": [
"It acts like a global average pooling but with different attention for different plane instances"
]
},
"act with": {
"sentences": [
"Gato can sense and act with different embodiments across a wide range of environments using a single neural network with the same set of weights."
]
},
"act as a direct replacement": {
"sentences": [
"We introduce GOCor, a differentiable neural network module that generates the correspondence volume between a pair of images, acting as a direct replacement to the feature correlation layer."
]
},
"act on": {
"sentences": [
"Therefore, the inherent negative feedback present in NEFDA is the only force acting on solve times."
]
}
},
"adapt": {
"adapt to": {
"sentences": [
"we observe that the replay time for each iteration takes at least 5 minutes to adapt to different types of transactions",
"A key requirement of practical PoW blockchains is to adapt to mining power variations over time.",
"we perform a thorough evaluation of the proposed flamingo models, exploring and measuring their ability to rapidly adapt to a variety of image and video understanding benchmarks.",
"since the resource that adapts to the workload to meet the time condition",
"building models that can be rapidly adapted to numerous tasks using only a handful of annotated examples is an open challenge for multimodal machine learning research.",
"they yield satisfactory results on specific datasets, they cannot adapt to the complex environments commonly encountered in autonomous driving.",
"as such, one may wonder how well these techniques are able to adapt to more distant tasks.",
"The methods in segmentation almost don\u2019t utilize the distribution matching scheme and can\u2019t adapt to our problem.",
"In addition, JIT allows the execution model to be adapted to each device providing enough flexibility for efficient inter-operator execution.",
"By this general learning objective, state-of-the-art PU methods based on optimizing a consistent risk estimator can be adapted to conquer the imbalance",
"Therefore, concurrency control in transactional databases, in addition to preserving ACID properties, should adapt to workload changes without manual intervention or disrupting performance.",
"The ability to adapt to new relations is limited for current models",
"However, if fine-tuning is used, the last layers of the encoder can be tuned to adapt to the recognition task",
"These procedures are based on the graph transformation approach introduced by Wu for DLTGs, which was adapted to address the temporal graph model of Definition 4.",
"Specifically, we propose three private dimension selection mechanisms and adapt the gradient accumulation technique to stabilize the learning process with noisy updates.",
"To avoid such a case, we adapt BERT to a feature-based approach. First we use the fine-tuning approach to train BERT without additional features like in Section 6.1.",
"In contrast, our proposed adaptive logging can adapt to the dynamic change of the workload properties",
"GNN models for network localization essentially aim to recognize the most distinctive feature that correspond mostly to the neighbor nodes."
]
},
"adapt for": {
"sentences": [
"APEX further adapts optimistic locking for learned indexes on PM",
"Recent work have also considered adapting Transformer based models for time series\nforecasting (Li et al., 2020; Zhou et al., 2021), specifically focusing on tackling the quadratic space\ncomplexity of Transformer models."
]
},
"adapt from only": {
"sentences": [
"to do so, they build upon their prior experience, reusing concepts and abstractions that they have built up over time to ef\ufb01- ciently adapt from only small amounts of new evidence."
]
},
"adapt from": {
"sentences": [
"We propose a new algorithm with the central DP guarantee, LFL-SGDMF, which is adapted from the FMF as shown in Figure 3(d)",
"A straightforward way to address Semi-Supervised Object Detection (SS-OD) is to adapt from existing advanced semi-supervised image classification methods"
]
},
"adapt sth for": {
"sentences": [
"We then make the case for adapting the logging protocol for NVM."
]
},
"adapt do": {
"sentences": [
"We adopt DQN as our modelfor the following reasons"
]
},
"be adapt to": {
"sentences": [
"The advances in Open Set and Open World image clas- sification cannot be trivially adapted to Open Set and Open World object detection"
]
}
},
"add": {
"add for": {
"sentences": [
"add support for updating the index"
]
},
"add to": {
"sentences": [
"Multiple text segments can be added to (and removed from) the selection field.",
"The first column of the CONFUPDATE section indicates if fuzzers evolve the seed pool during CONFUPDATE, such as adding new seeds to the pool.",
"The blocks are added to the Blockchain at regular intervals",
"\u2022 Glyce-BERT layer Position embeddings are first added to the glyph embeddings",
"The computed clustering loss is added to the standard detection loss and back-propagated to learn the network end-to-end.",
"Raft also adds another restriction to leader election",
"These two models are similar in mitigating the uncertainty by adding stochastic perturbation to\nthe encoders.",
"The remaining loop closures are added to the PCM graph one by one.",
"adding more context to the shape description.",
"In the case of our subset-sum sampling implementation, some of the functions that we added to the Gigascope runtime library are:",
"As we mentioned above, a small compression ratio results in a smaller sensitivity, and hence less Gaussian noise will be added to the model.",
"A transaction proposal zone is added to each block, containing txpids \u2014 the first several bytes of transaction hashes\u2014of some possibly fresh transactions.",
"Further more, a refinement module is added to optimize the pose after the decoupled initialization.",
"Additional steps for privacy will be considered in future versions of the algorithm, adding noise to the gradients that are shared and also sharing random gradients for items"
]
},
"add by": {
"sentences": [
"Additional dimensions may be added by computing normals and other local or global features."
]
},
"add into": {
"sentences": [
"if so, a new triplet is extracted and added into the resulting set t. 3.2 token pair representation given a sentence of length n, we first map each token wi into a low-dimensional contextual vector hi by a basic encoder.",
"To make features of adjacent vertices more similar, a graph-signal smoothness prior is added into the loss function."
]
},
"add sth. to sth.": {
"sentences": [
"In every round, for the set of keys that have found their matches, we calculate their sum, add it to a local sum, and reload those SIMD lanes with new keys."
]
}
},
"addition": {
"in addition to": {
"sentences": [
"In addition to the above, we also introduce a novel angle loss regression approach to solve the problem of the large loss generated"
]
},
"in addition to": {
"sentences": [
"In the data set used for training, there will be corresponding RGB images in addition to the point cloud data.",
"In addition to improving image quality, camera calibration is often used to determine the position of an image in 3D space."
]
}
},
"address": {
"address sth": {
"sentences": [
"To address these reasoning challenges, we design two different models: Table-BERT and Latent Program Algorithm (LPA)."
]
},
"address question": {
"sentences": [
"In this paper, we address these questions, show how to integrate the radix join in Umbra, a code-generating DBMS, and make it competitive for selective queries by introducing a Bloom-filter based semi-join reducer."
]
},
"address the challenge": {
"sentences": [
"To address the challenge, previous work [54, 55] of using AR models propose to use the progressive sampling algorithm to estimate selectivities for range queries."
]
},
"address before": {
"sentences": [
"as such, there are a multitude of data challenges that must be addressed before text-to-image models like imagen can be safely integrated into user-facing applications."
]
},
"address by": {
"sentences": [
"This problem has been addressed by using bagging techniques or using least square SVMs."
]
},
"be address in": {
"sentences": [
"The problem of analyzing the difficulty adjustment mechanism in Bitcoin was first addressed in [12] in the lock-step synchronous communication model."
]
},
"address on": {
"sentences": [
"nodes negotiate about the destination memory address on the remote node using Send/Recv verbs"
]
},
"address as": {
"sentences": [
"For instance, collection of financial (Q3) and health information (Q4) practices are often not as explicitly and concisely addressed as col- lection of contact (Q1) or location (Q2) information."
]
},
"addressed, however": {
"sentences": [
"This issue is addressed, however, by the refined partitioning scheme described in Section 6.2."
]
},
"address such ifthevaluesofthatcolumnarestoredcontiguously": {
"sentences": [
"To address such ifthevaluesofthatcolumnarestoredcontiguously."
]
}
},
"adjust": {
"adjust for": {
"sentences": [
"Popular entity experts allow rankings to be adjusted for particular entities that are especially important"
]
},
"adjust to": {
"sentences": [
"Instead, we propose audio-adaptive learning that exploits the supervisory signals from sound to adjust to the distribution shift and handle both audible and silent activities.",
"It has an autonomic controller to automatically reconfigure itself to adjust to the changes in the resource demand."
]
},
"adjust to widely": {
"sentences": [
"Subsequent methods do notrequire any prior knowledge of the cardinality, and adjust to widely varying cardinalities."
]
}
},
"adopt": {
"adopt in": {
"sentences": [
"Blockchain is a nascent technology and is mostly adopted in the financial sector",
"Additive models are widely adopted in causal inference.",
"graphbased approaches are now widely adopted in re because of e1e2e3e4e5e6e7e8 e1 e2 e3 e4 e5 e6 e7 e8 na rel2 rel1 figure 2: illustration of the entity-level relation matrix applied in our formulation."
]
},
"adopt to": {
"sentences": [
"researchers adopt the term ontology to describe what can be computationally represented of the world in a program",
"Specifically, convolution is usually implemented through MLP over spatial neighbors, and pooling is adopted to produce a new coarsened graph by aggregating information from each point\u2019s neighbors."
]
},
"be adopt to": {
"sentences": [
"a MMD metric is adopted by as a cross-domain regularizer and KL divergence is adopted to measure the domain shift by for domain generalization problem.",
"This technique is adopted to further improve the model with sequence-level ."
]
},
"adopt in almost": {
"sentences": [
"Cost-basedoptimizer studied in this paper is adopted in almost all currentdatabase systems."
]
},
"adopt sth. to do": {
"sentences": [
"In this paper, we adopt a model-based approach to understand when and why the performance gains of running queries on GPUs vs on CPUs vary from the bandwidth ratio (which is roughly 16\u00d7 on modern hardware)"
]
},
"adopt with": {
"sentences": [
"we adopt a more lightweight and directly interpretable approach"
]
},
"adopt as": {
"sentences": [
"Here we adopt Euclidean Distance as the metric due to its simplicity and prevalence.",
"OpenAI proposes GPT [9] that adopts the modified Transformer\u2019s decoder as a language model"
]
},
"adopt sth": {
"sentences": [
"Almost every DBMS adopts the steal and no-force policies."
]
},
"adopt by": {
"sentences": [
"Open-source kernels have been adopted by massive downstream vendors on billions of devices."
]
}
},
"advance": {
"advance to": {
"sentences": [
"WSI technology has advanced to the point where digital slide scanners can make high-resolution digital images in a relatively short time.",
"The graph optimization technology has advanced to the point where VSLAM can make high-resolution digital images in a relatively short time."
]
},
"advance for": {
"sentences": [
"Active learning has advanced for more than a couple of decades."
]
}
},
"advantage": {
"take advantage of": {
"sentences": [
"so current cloud platforms have trouble taking full advantage of the emerging hardware standards such as RDMA and NVMe SSD."
]
}
},
"advertise": {
"advertise a slowly": {
"sentences": [
"Between synchronizations, a daemon advertises a slowly increasing time uncer- tainty.",
"Between synchro- nizations, Armageddon masters advertise a slowly increasing time uncertainty that is derived from conservatively applied worst-case clock drift."
]
}
},
"advise": {
"have advise": {
"sentences": [
"Recent comprehensive studies have advised that the partitioned radix join performs better than the non-partitioned hash join."
]
}
},
"affect": {
"affect by": {
"sentences": [
"Moreover, the experimental analysis in [12] shows that the classification performance could be badly affected by an inaccurate estimate.",
"representations of rare words affected by heavytailed distribution",
"Only states affected by the block\u2019s transactions are recorded in the root hash",
"In both scenarios, ARIES logging shows the best recovery performance and is not affected by the percentage of distributed transaction",
"third they cannot estimate the index maintenance costs which are affected by multiple index utilization factors and can significantly affect the index benefits"
]
},
"be affect by": {
"sentences": [
"Facial landmark detection may be inaccurate or even fail for faces which are affected by various challenging factors, such as strong illumination changes, large pose variations, and heavy occlusions.",
"The build phase runtimes are less affected by caches as writes to hash table end up going to memory."
]
}
},
"afford": {
"afford to": {
"sentences": [
"we can't afford to go abroad.",
"Practical deployments of detection systems in robotics, self-driving cars, plant phenotyping, healthcare and surveillance cannot afford to have complete knowledge on what classes to expect at inference time, while being trained in-house"
]
}
},
"agent": {
"agent on": {
"sentences": [
"which includes a set of masters implemented in micro-service, and agents deployed on all compute and storage nodes."
]
}
},
"aggragate": {
"aggregate into": {
"sentences": [
"The global-local graph aggregation module [40] is proposed to model interactions across graphs and aggregate heterogeneous graphs into a holistic graph representation in the video titling task."
]
}
},
"aggravate": {
"aggravate with": {
"sentences": [
"This is because the error brought by local noises can be aggravated with a dimensional factor"
]
}
},
"aggre": {
"aggre with": {
"sentences": [
"The play does not aggre with the book."
]
}
},
"aggregate": {
"aggregate... into...": {
"sentences": [
"The final fully connected layers of the network aggregate these learnt optimal values into the global descriptor for the entire shape as mentioned above (shape classification) or are used to predict per point labels (shape segmentation)"
]
},
"aggreagate into": {
"sentences": [
"Aggregating the computation of all static string data into one function, however, may be un-stealthy."
]
},
"aggregate with": {
"sentences": [
"By aggregating their data with others in the same cluster (same learning task), they can leverage the strength in numbers in order to perform more efficient Federated Learning."
]
},
"aggregate use": {
"sentences": [
"as one of the most popular models in deep learning, cnns construct a hierarchical structure to learn visual features, and in each layer, local features are aggregated using convolutions to produce features of the next layer."
]
},
"aggregate by": {
"sentences": [
"We uncover the potential of aggregating highlighting by multiple, independent annotators (or algorithms) showing that aggregation is practical and useful, somewhat analo- gously to what happens in a crowdsourced classification where we aggregate multiple votes on items."
]
}
},
"agree": {
"agree with": {
"sentences": [
"The results of experiment do not agree with the book.",
"The calculated results agree with experimental results in terms of stress amplitude impacted by machine stiffness."
]
},
"agree on": {
"sentences": [
"However, computing the difficulty of a block must be deterministic and based on data from previous blocks s.t. individual nodes can perform the computation independently and agree on the same results.",
"All nodes in a blockchain network agree on an ordered set of blocks",
"We find that it is exceedingly rare for crowdworkers to agree on an inter- pretation that differs from skilled annotators."
]
},
"agree well with": {
"sentences": [
"The calculated mobilities agree well with the experimental analysis."
]
}
},
"aim": {
"aim at": {
"sentences": [
"Unlike all these above pre-trained models that aim at natural understanding or generation tasks",
"In particular, most prior works aim at reducing communication overhead among operators",
"This paper aims at developing effieient aggregation algorithms for compressed data warehouses.",
"Deep learning for sets such as point clouds aims at designing permutation equi- or invariant functions by aggregating information across elements.",
"In this paper, we propose VPFedMF, a new design aimed at privacy-preserving and verifiable federated MF",
"These works also aim at establishing reliable point to point correspondences between images.",
"SigGraph aims at deriving unique signatures for individual data structures for brute force kernel memory scanning.",
"Our Teacher-Student Mutual Learning stage aims at evolving both Teacher and Student models via a mutual learning mechanism",
"we aim at complementing local information by specifying the details in the feedforward layer.",
"We first discuss policies that aim at minimizing the number of conflicts",
"Some recent studies aim at supporting updates.",
"In this work, we aim at predicting new facts under a challenging setting where only one training instance is available",
"We aim at formulating an objective based on the PW-bipath constraint",
"The recent SemTab 2019 challenge also aims at benchmarking systems that match tabular data to KBs."
]
},
"aim to": {
"sentences": [
"We aim to reduce the persistence operations for NVM space management as much as possible.",
"The task aims to answer questions over KBs in a conversational manner.",
"While this has a direct impact on an IPs profits, some of the proposals aim to maximise revenue by increasing capacity to service workloads.",
"AFQMC is the Ant Financial Question Matching Corpus for the question matching task that aims to predict whether two sentences are semantically similar CSL is the Chinese Scientific Literature dataset extracted from academic papers",
"Several recent efforts aim to crowdsource the interpretation of privacy policies and use the resulting annotations to build more effective user interfaces that provide users with salient policy summaries.",
"One-shot relational learning for KG, which aims to uncover facts of a new relation given only one training instance, has been proposed recently by Xiong",
"Aiming to solve this, we adopt Optimal Transport (OT) with Wasserstein distance to align the feature distribution for domain generalization.",
"We now aim to verify whether the model trained on 100% supervised data can be further improved by using additional unlabeled data",
"Image captioning aims to automatically generate textual descriptions of an image.",
"DNN have been applied in the task of sequential recommendation, which aims to capture the dynamic preference characteristics.",
"We also adopt the Masked Language Model (MLM) objective from BERT, which aims to model the complex characteristics of word use in table metadata.",
"Through this work, we aim to raise awareness of the importance of the network layer in designing protocols.",
"In this paper, we propose an efficient algorithm that aims to address one of the major challenges in FL\u2014dealing with heterogeneity in the data distribution.",
"This paper aims to enhance the performance of modeling stock\nprice movement by mitigating both data and modeling uncertainty.",
"Saber is designed aiming to hide PCI-e overhead. It adopts a bulk-synchronous parallel model",
"MIL models for WSI classification essentially aim to recognize the most distinctive patches that correspond mostly to the slide label.",
"General code obfuscation techniques aim to con- fuse the understanding of the way in which a program functions.",
"Instead, we aim to estimate the index update costs",
"This paper specifically aims to study the fact verification given semi-structured data as evidence.",
"Interleaving aims to improve the overall throughput of reads and writes by spreading sequential data accesses over multiple DIMMs in parallel, similar to RAID 0.",
"Contrastive learning aims to discriminate instances by attracting the positive pairs and repelling the negative pairs",
"End-to-end deep learning approaches aim to learn feature correspondences in depth maps",
"These systems target and aim to disrupt applications which have so far been implemented on top of database systems",
"we aim to reduce the sparsity of the stores but the fanout is restricted by the memory available for consolidating the stores.",
"They aim to estimate the size of t = |A ??B|.",
"This research aims to carry out the experiment on the zero power reactor and obtain import critical parameters."
]
},
"aim to independently": {
"sentences": [
"to show universality, we will aim to independently control information \ufb02ow from x, from y, and from x?"
]
},
"aim to empirically": {
"sentences": [
"then, in section 4.6.4, we will consider the latter two questions, aiming to empirically study the inductive bias of gradient-based and recurrent meta-learners."
]
},
"aim for": {
"sentences": [
"Based on multi-modal fundus imaging comprised of OCT and color fundus photography, we aim for automated categorization of the fundus condition of a specific eye",
"We aim for as controlled of a comparison with TaBERT as possible, as its performance on table QA tasks indicate the strength of its table encoder."
]
},
"aim to do": {
"sentences": [
"Commercial systems like Omnisci, Kinetica, and BlazingDB aim to provide real-time analytical capabilities by using GPUs to store large parts (or all) of the working set."
]
},
"be aim for": {
"sentences": [
"Some of them belong to PolarFS itself, and others are aimed for database features."
]
}
},
"aleviate": {
"alleviate this issue": {
"sentences": [
"To alleviate this issue,we proposed conditional BERT"
]
}
},
"align": {
"align to": {
"sentences": [
"Using basic principles, we analyze how visual classification is extended to handle UDA by aligning a source domain distribution to a target domain distribution to make the classifier domain invariant.",
"entity mentions in the text are firstly recognized and then aligned to corresponding entities in KGs",
"For secondary indices, if they align to the partitioning of the primary indices, they are partitioned in the same way.",
"The algorithm aligns spans in statement to the columns by extracting the longest character n-gram that matches a cell."
]
},
"align with": {
"sentences": [
"Structural lines are aligned with the axes of the dominant MF",
"The key open questions will revolve around making sure the assumptions and settings considered within PU learning align with real-world PU tasks.",
"both fid and clip scores have limitations, for example fid is not fully aligned with perceptual quality [42], and clip is ineffective at counting [49].",
"However, an 8 corner encoding does not take into account the physical constraints of a 3D bounding box, as the top corners of the bounding box are forced to align with those at the bottom",
"A line segment may be aligned with two possible vanishing points"
]
},
"align\u2026to\u2026": {
"sentences": [
"A natural solution is to align all input set to a canonical space before feature extraction."
]
}
},
"alleviate": {
"alleviate on": {
"sentences": [
"That is to alleviate domain discrepancy on class level."
]
},
"alleviate the severity": {
"sentences": [
"which also alleviates the severity of the above problem."
]
},
"alleviate a heavily": {
"sentences": [
"InCassandrafailuredetectionisalsousedtoavoidat- Whenanewnodeisaddedintothesystem,itgetsassigned temptstocommunicatewithunreachablenodesduringvar- a token such that it can alleviate a heavily loaded node."
]
}
},
"allocate": {
"be allocate to": {
"sentences": [
"we first assume the node will reach the upper density limit du and all free slots are allocated to PA"
]
},
"allocate memory transparently": {
"sentences": [
"\"A unique aspect of such a service is that it not only needs to allocate memory transparently"
]
},
"allocate...to": {
"sentences": [
"We also compared the performance for the case when the memory allocated to each stream can vary while the total amount of memory is kept constant."
]
},
"allocate to": {
"sentences": [
"We also allocate dedicated CPU cores to each cluster for transaction execution",
"a block reward is allocated to the miner of every blockchain block via a special coinbase transaction in the block.",
"In the first experiment, we fixed the memory allocated to the approximate join to be 10% of the dataset.",
"The amount of GPU resources allocated to each kernel is determined by the configuration to minimize the estimated execution time of individual segments."
]
},
"allocate sth. to do": {
"sentences": [
"As we typically allocate memory specifically to build the hash table, we can allocate pinned memory or Unified Memory for use with the Zero-Copy or Unified Memory Migration methods."
]
},
"allocate time finally": {
"sentences": [
"Ansors task scheduler allocates time Finally in f4, we define a function ES(gi,t) that returns an resources to tasks in an iterative manner."
]
},
"allocate memory accordingly": {
"sentences": [
"In the case of operators with dynamic shaped inputs, weneed to insert shape functions before the kernel invocation tocompute the output shapes and allocate memory accordinglyas detailed in Section 3.2."
]
},
"allocate memory back": {
"sentences": [
"Free allocated memory back to memory manager."
]
},
"be allocate for": {
"sentences": [
"A volume is allocated for each database instance, and consists of a list of chunks"
]
}
},
"allow": {
"allow to": {
"sentences": [
"it allows us to articulate what design decisions have made Raft more understandable or more efficient than Paxos.",
"In this work, we design a pretraining methodology specifically for tables that resembles several core tasks in table extraction and decomposition pipelines and allows easy access to representations for different tabular substructures.",
"The proposed scale-aware formulation allows to accurately estimate both fine details and large-scale geometry",
"they will no longer allow to tell whether a feature is coming from the source or the target domain.",
"Our design allows combining hardware-conscious device-specific algorithms to achieve efficient execution across all the compute units of a multi-CPU, multi-GPU server.",
"Relative metrics allow to an application or application component",
"A frame is associated with a time interval and allows to retrieve the status of the social network during such interval.",
"Relative metrics allow to an application or application component.",
"In order to improve concurrency in single-threaded VLL implementations, we allow transactions to enter a third state.",
"It allows to restrict the amount of values scanned even further",
"Crucially, selecting only relevant columns would allow longer examples to fit without discarding potentially relevant tokens.",
"We uncover a meta-design principle that allow us to design variable mining difficulty protocols for three popular PoW blockchain proposals.",
"We fo- cused on data practices most frequently mentioned in federal pri- vacy litigation and FTC enforcement actions [26], namely collec- tion of personal information, sharing of personal information with third parties, and whether websites allow users to delete data col- lected about them.",
"metrics allows to properly control the application response",
"Building this map allows us to estimate drift-free rotation",
"This result implies that a good encoding selector allows us to benefit from both good compression ratios and high query performance.",
"Thus, low utilization allows us to see better the dynamic behavior of the autoscalers by minimizing the number of extreme cases."
]
},
"allow sb to do": {
"sentences": [
"This ease of experimentation allowed us to find the simple upgrade of subset-sum sampling which so improved its accuracy."
]
},
"allow for": {
"sentences": [
"This allows for extremely fast response times, since theapproximate query execution engine can do the bulk of its processingover compact wavelet synopses, essentially postponing the (expensive)expansion rendering step into relational tuples until the end-result ofthe query.",
"a single cache-miss costs 50-100 additional cycles and would thus allow for even more complex models.",
"That allows for the models to learn sufficient meaningful information before being distilled.",
"This allows for the forecast to be reviewed by a domain expert who\nmay make adjustments when appropriate, a procedure known as human-in-the-loop.",
"The Transformer allows for significantly more parallelization and can reach a new state of the art in translation quality after being trained for as little as twelve hours on eight P100 GPUs.",
"Differential privacy may allow for training on data from the true distribution (actual mobile usage) rather than on proxy data from some other source that would produce inferior models",
"Foremost is that it can potentially allow for greater concurrency than a single-version system."
]
},
"allow ... to": {
"sentences": [
"Our input form of point clouds allows us to achieve this goal in a much simpler way compared with [9]."
]
},
"allow for extremely": {
"sentences": [
"in contrast, our method explicitly trains the parameters for sensitivity on a given task distribution, allowing for extremely ef\ufb01cient adaptation for problems such as k-shot learning and rapid reinforce- ment learning in only one or a few gradient steps."
]
},
"be allow to": {
"sentences": [
"More specifically, our framework is allowed to contrast features across modalities within a domain or across domains using one modality."
]
},
"allow ab to do": {
"sentences": [
"A joint use of Fig. 5(a) and 5(b) allows us to interpret the behavior of a specific head"
]
},
"allow sb. to do": {
"sentences": [
"The programming model allows users to explicitly allocate global memory and shared memory in each thread block."
]
},
"allow a more": {
"sentences": [
"This not only avoids unnecessary runtimeoverheads, but also allows a more costly scheduling policy tofully exploit the inter- and intra- operator parallelism together."
]
},
"allow for//take into account": {
"sentences": [
"Existing learned indexes do not allow for an efficient build."
]
},
"allow sb to do sth": {
"sentences": [
"Initialising the FL approach in this way allows us to pick a fair sample that reflects the different user communities in the domain."
]
},
"allow us to": {
"sentences": [
"This allows us to avoid ambiguous areas and leads to reliable keypoint detections and descriptions"
]
},
"allow to do": {
"sentences": [
"The former policy allows a DBMS to flush the changes of uncommitted transactions at any time."
]
},