-
Notifications
You must be signed in to change notification settings - Fork 0
/
arxiv.json
7106 lines (7106 loc) · 288 KB
/
arxiv.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
[
{
"title": "context retrieval via normalized contextual latent interaction for\n conversational agent",
"url": "http://arxiv.org/abs/2312.00774v1"
},
{
"title": "rethinking detection based table structure recognition for visually rich\n documents",
"url": "http://arxiv.org/abs/2312.00699v1"
},
{
"title": "attack detection using item vector shift in matrix factorisation\n recommenders",
"url": "http://arxiv.org/abs/2312.00512v1"
},
{
"title": "virtual quantum markov chains",
"url": "http://arxiv.org/abs/2312.02031v1"
},
{
"title": "language-only efficient training of zero-shot composed image retrieval",
"url": "http://arxiv.org/abs/2312.01998v1"
},
{
"title": "peace: prototype learning augmented transferable framework for\n cross-domain recommendation",
"url": "http://arxiv.org/abs/2312.01916v1"
},
{
"title": "an ai-based solution for the cold start and data sparsity problems in\n the recommendation systems",
"url": "http://arxiv.org/abs/2312.01840v1"
},
{
"title": "on gradient boosted decision trees and neural rankers: a case-study on\n short-video recommendations at sharechat",
"url": "http://arxiv.org/abs/2312.01760v1"
},
{
"title": "virtual quantum markov chains",
"url": "http://arxiv.org/abs/2312.02031v1"
},
{
"title": "language-only efficient training of zero-shot composed image retrieval",
"url": "http://arxiv.org/abs/2312.01998v1"
},
{
"title": "peace: prototype learning augmented transferable framework for\n cross-domain recommendation",
"url": "http://arxiv.org/abs/2312.01916v1"
},
{
"title": "an ai-based solution for the cold start and data sparsity problems in\n the recommendation systems",
"url": "http://arxiv.org/abs/2312.01840v1"
},
{
"title": "on gradient boosted decision trees and neural rankers: a case-study on\n short-video recommendations at sharechat",
"url": "http://arxiv.org/abs/2312.01760v1"
},
{
"title": "virtual quantum markov chains",
"url": "http://arxiv.org/abs/2312.02031v1"
},
{
"title": "language-only efficient training of zero-shot composed image retrieval",
"url": "http://arxiv.org/abs/2312.01998v1"
},
{
"title": "peace: prototype learning augmented transferable framework for\n cross-domain recommendation",
"url": "http://arxiv.org/abs/2312.01916v1"
},
{
"title": "an ai-based solution for the cold start and data sparsity problems in\n the recommendation systems",
"url": "http://arxiv.org/abs/2312.01840v1"
},
{
"title": "on gradient boosted decision trees and neural rankers: a case-study on\n short-video recommendations at sharechat",
"url": "http://arxiv.org/abs/2312.01760v1"
},
{
"title": "rank-without-gpt: building gpt-independent listwise rerankers on\n open-source large language models",
"url": "http://arxiv.org/abs/2312.02969v1"
},
{
"title": "let the llms talk: simulating human-to-human conversational qa via\n zero-shot llm-to-llm interactions",
"url": "http://arxiv.org/abs/2312.02913v1"
},
{
"title": "concept drift adaptation in text stream mining settings: a comprehensive\n review",
"url": "http://arxiv.org/abs/2312.02901v1"
},
{
"title": "rankzephyr: effective and robust zero-shot listwise reranking is a\n breeze!",
"url": "http://arxiv.org/abs/2312.02724v1"
},
{
"title": "an empirical study of next-basket recommendations",
"url": "http://arxiv.org/abs/2312.02550v1"
},
{
"title": "rank-without-gpt: building gpt-independent listwise rerankers on\n open-source large language models",
"url": "http://arxiv.org/abs/2312.02969v1"
},
{
"title": "let the llms talk: simulating human-to-human conversational qa via\n zero-shot llm-to-llm interactions",
"url": "http://arxiv.org/abs/2312.02913v1"
},
{
"title": "concept drift adaptation in text stream mining settings: a comprehensive\n review",
"url": "http://arxiv.org/abs/2312.02901v1"
},
{
"title": "rankzephyr: effective and robust zero-shot listwise reranking is a\n breeze!",
"url": "http://arxiv.org/abs/2312.02724v1"
},
{
"title": "an empirical study of next-basket recommendations",
"url": "http://arxiv.org/abs/2312.02550v1"
},
{
"title": "rank-without-gpt: building gpt-independent listwise rerankers on\n open-source large language models",
"url": "http://arxiv.org/abs/2312.02969v1"
},
{
"title": "let the llms talk: simulating human-to-human conversational qa via\n zero-shot llm-to-llm interactions",
"url": "http://arxiv.org/abs/2312.02913v1"
},
{
"title": "concept drift adaptation in text stream mining settings: a comprehensive\n review",
"url": "http://arxiv.org/abs/2312.02901v1"
},
{
"title": "rankzephyr: effective and robust zero-shot listwise reranking is a\n breeze!",
"url": "http://arxiv.org/abs/2312.02724v1"
},
{
"title": "an empirical study of next-basket recommendations",
"url": "http://arxiv.org/abs/2312.02550v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "rethinking e-commerce search",
"url": "http://arxiv.org/abs/2312.03217v1"
},
{
"title": "combining counting processes and classification improves a stopping rule\n for technology assisted review",
"url": "http://arxiv.org/abs/2312.03171v1"
},
{
"title": "adaptive spectral graph wavelets for collaborative filtering",
"url": "http://arxiv.org/abs/2312.03167v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "rethinking e-commerce search",
"url": "http://arxiv.org/abs/2312.03217v1"
},
{
"title": "combining counting processes and classification improves a stopping rule\n for technology assisted review",
"url": "http://arxiv.org/abs/2312.03171v1"
},
{
"title": "adaptive spectral graph wavelets for collaborative filtering",
"url": "http://arxiv.org/abs/2312.03167v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "rethinking e-commerce search",
"url": "http://arxiv.org/abs/2312.03217v1"
},
{
"title": "combining counting processes and classification improves a stopping rule\n for technology assisted review",
"url": "http://arxiv.org/abs/2312.03171v1"
},
{
"title": "adaptive spectral graph wavelets for collaborative filtering",
"url": "http://arxiv.org/abs/2312.03167v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "multi-agricultural machinery collaborative task assignment based on\n improved genetic hybrid optimization algorithm",
"url": "http://arxiv.org/abs/2312.04264v1"
},
{
"title": "synergistic signals: exploiting co-engagement and semantic links via\n graph neural networks",
"url": "http://arxiv.org/abs/2312.04071v1"
},
{
"title": "boosting legal case retrieval by query content selection with large\n language models",
"url": "http://arxiv.org/abs/2312.03494v1"
},
{
"title": "dbcopilot: scaling natural language querying to massive databases",
"url": "http://arxiv.org/abs/2312.03463v1"
},
{
"title": "sports recommender systems: overview and research issues",
"url": "http://arxiv.org/abs/2312.03785v1"
},
{
"title": "soft frequency capping for improved ad click prediction in yahoo gemini\n native",
"url": "http://arxiv.org/abs/2312.05052v1"
},
{
"title": "unbiased filtering of accidental clicks in verizon media native\n advertising",
"url": "http://arxiv.org/abs/2312.05017v1"
},
{
"title": "illicit darkweb classification via natural-language processing:\n classifying illicit content of webpages based on textual information",
"url": "http://arxiv.org/abs/2312.04944v1"
},
{
"title": "predictive chemistry augmented with text retrieval",
"url": "http://arxiv.org/abs/2312.04881v1"
},
{
"title": "car: consolidation, augmentation and regulation for recipe retrieval",
"url": "http://arxiv.org/abs/2312.04763v1"
},
{
"title": "soft frequency capping for improved ad click prediction in yahoo gemini\n native",
"url": "http://arxiv.org/abs/2312.05052v1"
},
{
"title": "unbiased filtering of accidental clicks in verizon media native\n advertising",
"url": "http://arxiv.org/abs/2312.05017v1"
},
{
"title": "illicit darkweb classification via natural-language processing:\n classifying illicit content of webpages based on textual information",
"url": "http://arxiv.org/abs/2312.04944v1"
},
{
"title": "predictive chemistry augmented with text retrieval",
"url": "http://arxiv.org/abs/2312.04881v1"
},
{
"title": "car: consolidation, augmentation and regulation for recipe retrieval",
"url": "http://arxiv.org/abs/2312.04763v1"
},
{
"title": "soft frequency capping for improved ad click prediction in yahoo gemini\n native",
"url": "http://arxiv.org/abs/2312.05052v1"
},
{
"title": "unbiased filtering of accidental clicks in verizon media native\n advertising",
"url": "http://arxiv.org/abs/2312.05017v1"
},
{
"title": "illicit darkweb classification via natural-language processing:\n classifying illicit content of webpages based on textual information",
"url": "http://arxiv.org/abs/2312.04944v1"
},
{
"title": "predictive chemistry augmented with text retrieval",
"url": "http://arxiv.org/abs/2312.04881v1"
},
{
"title": "car: consolidation, augmentation and regulation for recipe retrieval",
"url": "http://arxiv.org/abs/2312.04763v1"
},
{
"title": "dense x retrieval: what retrieval granularity should we use?",
"url": "http://arxiv.org/abs/2312.06648v1"
},
{
"title": "large language models with retrieval-augmented generation for zero-shot\n disease phenotyping",
"url": "http://arxiv.org/abs/2312.06457v1"
},
{
"title": "visiontraj: a noise-robust trajectory recovery framework based on\n large-scale camera network",
"url": "http://arxiv.org/abs/2312.06428v1"
},
{
"title": "cross domain lifelong sequential modeling for online click-through rate\n prediction",
"url": "http://arxiv.org/abs/2312.06424v1"
},
{
"title": "must: an effective and scalable framework for multimodal search of\n target modality",
"url": "http://arxiv.org/abs/2312.06397v1"
},
{
"title": "dense x retrieval: what retrieval granularity should we use?",
"url": "http://arxiv.org/abs/2312.06648v1"
},
{
"title": "large language models with retrieval-augmented generation for zero-shot\n disease phenotyping",
"url": "http://arxiv.org/abs/2312.06457v1"
},
{
"title": "visiontraj: a noise-robust trajectory recovery framework based on\n large-scale camera network",
"url": "http://arxiv.org/abs/2312.06428v1"
},
{
"title": "cross domain lifelong sequential modeling for online click-through rate\n prediction",
"url": "http://arxiv.org/abs/2312.06424v1"
},
{
"title": "must: an effective and scalable framework for multimodal search of\n target modality",
"url": "http://arxiv.org/abs/2312.06397v1"
},
{
"title": "dense x retrieval: what retrieval granularity should we use?",
"url": "http://arxiv.org/abs/2312.06648v2"
},
{
"title": "large language models with retrieval-augmented generation for zero-shot\n disease phenotyping",
"url": "http://arxiv.org/abs/2312.06457v1"
},
{
"title": "visiontraj: a noise-robust trajectory recovery framework based on\n large-scale camera network",
"url": "http://arxiv.org/abs/2312.06428v1"
},
{
"title": "cross domain lifelong sequential modeling for online click-through rate\n prediction",
"url": "http://arxiv.org/abs/2312.06424v1"
},
{
"title": "must: an effective and scalable framework for multimodal search of\n target modality",
"url": "http://arxiv.org/abs/2312.06397v1"
},
{
"title": "search optimization with query likelihood boosting and two-level\n approximate search for edge devices",
"url": "http://arxiv.org/abs/2312.07517v1"
},
{
"title": "audience prospecting for dynamic-product-ads in native advertising",
"url": "http://arxiv.org/abs/2312.07160v1"
},
{
"title": "debiasing sequential recommenders through distributionally robust\n optimization over system exposure",
"url": "http://arxiv.org/abs/2312.07036v1"
},
{
"title": "memorais: an optical character recognition and rule-based medication\n intake reminder-generating solution",
"url": "http://arxiv.org/abs/2312.06841v1"
},
{
"title": "dense x retrieval: what retrieval granularity should we use?",
"url": "http://arxiv.org/abs/2312.06648v2"
},
{
"title": "search optimization with query likelihood boosting and two-level\n approximate search for edge devices",
"url": "http://arxiv.org/abs/2312.07517v1"
},
{
"title": "audience prospecting for dynamic-product-ads in native advertising",
"url": "http://arxiv.org/abs/2312.07160v1"
},
{
"title": "debiasing sequential recommenders through distributionally robust\n optimization over system exposure",
"url": "http://arxiv.org/abs/2312.07036v1"
},
{
"title": "memorais: an optical character recognition and rule-based medication\n intake reminder-generating solution",
"url": "http://arxiv.org/abs/2312.06841v1"
},
{
"title": "dense x retrieval: what retrieval granularity should we use?",
"url": "http://arxiv.org/abs/2312.06648v2"
},
{
"title": "search optimization with query likelihood boosting and two-level\n approximate search for edge devices",
"url": "http://arxiv.org/abs/2312.07517v1"
},
{
"title": "audience prospecting for dynamic-product-ads in native advertising",
"url": "http://arxiv.org/abs/2312.07160v1"
},
{
"title": "debiasing sequential recommenders through distributionally robust\n optimization over system exposure",
"url": "http://arxiv.org/abs/2312.07036v1"
},
{
"title": "memorais: an optical character recognition and rule-based medication\n intake reminder-generating solution",
"url": "http://arxiv.org/abs/2312.06841v1"
},
{
"title": "dense x retrieval: what retrieval granularity should we use?",
"url": "http://arxiv.org/abs/2312.06648v2"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "improving search relevance of azure cognitive search by bayesian\n optimization",
"url": "http://arxiv.org/abs/2312.08021v1"
},
{
"title": "rat: reinforcement-learning-driven and adaptive testing for\n vulnerability discovery in web application firewalls",
"url": "http://arxiv.org/abs/2312.07885v1"
},
{
"title": "exploring popularity bias in session-based recommendation",
"url": "http://arxiv.org/abs/2312.07855v1"
},
{
"title": "harnessing retrieval-augmented generation (rag) for uncovering knowledge\n gaps",
"url": "http://arxiv.org/abs/2312.07796v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "improving search relevance of azure cognitive search by bayesian\n optimization",
"url": "http://arxiv.org/abs/2312.08021v1"
},
{
"title": "rat: reinforcement-learning-driven and adaptive testing for\n vulnerability discovery in web application firewalls",
"url": "http://arxiv.org/abs/2312.07885v1"
},
{
"title": "exploring popularity bias in session-based recommendation",
"url": "http://arxiv.org/abs/2312.07855v1"
},
{
"title": "harnessing retrieval-augmented generation (rag) for uncovering knowledge\n gaps",
"url": "http://arxiv.org/abs/2312.07796v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "improving search relevance of azure cognitive search by bayesian\n optimization",
"url": "http://arxiv.org/abs/2312.08021v1"
},
{
"title": "rat: reinforcement-learning-driven and adaptive testing for\n vulnerability discovery in web application firewalls",
"url": "http://arxiv.org/abs/2312.07885v1"
},
{
"title": "exploring popularity bias in session-based recommendation",
"url": "http://arxiv.org/abs/2312.07855v1"
},
{
"title": "harnessing retrieval-augmented generation (rag) for uncovering knowledge\n gaps",
"url": "http://arxiv.org/abs/2312.07796v1"
},
{
"title": "wikimute: a web-sourced dataset of semantic descriptions for music audio",
"url": "http://arxiv.org/abs/2312.09207v1"
},
{
"title": "framefinder: explorative multi-perspective framing extraction from news\n headlines",
"url": "http://arxiv.org/abs/2312.08995v1"
},
{
"title": "calibration-compatible listwise distillation of privileged features for\n ctr prediction",
"url": "http://arxiv.org/abs/2312.08727v1"
},
{
"title": "hybrid content dynamic recommendation system based in adapted tags and\n applied to digital library",
"url": "http://arxiv.org/abs/2312.08584v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "improving search relevance of azure cognitive search by bayesian\n optimization",
"url": "http://arxiv.org/abs/2312.08021v1"
},
{
"title": "rat: reinforcement-learning-driven and adaptive testing for\n vulnerability discovery in web application firewalls",
"url": "http://arxiv.org/abs/2312.07885v1"
},
{
"title": "exploring popularity bias in session-based recommendation",
"url": "http://arxiv.org/abs/2312.07855v1"
},
{
"title": "harnessing retrieval-augmented generation (rag) for uncovering knowledge\n gaps",
"url": "http://arxiv.org/abs/2312.07796v1"
},
{
"title": "wikimute: a web-sourced dataset of semantic descriptions for music audio",
"url": "http://arxiv.org/abs/2312.09207v1"
},
{
"title": "framefinder: explorative multi-perspective framing extraction from news\n headlines",
"url": "http://arxiv.org/abs/2312.08995v1"
},
{
"title": "calibration-compatible listwise distillation of privileged features for\n ctr prediction",
"url": "http://arxiv.org/abs/2312.08727v1"
},
{
"title": "hybrid content dynamic recommendation system based in adapted tags and\n applied to digital library",
"url": "http://arxiv.org/abs/2312.08584v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "wikimute: a web-sourced dataset of semantic descriptions for music audio",
"url": "http://arxiv.org/abs/2312.09207v1"
},
{
"title": "framefinder: explorative multi-perspective framing extraction from news\n headlines",
"url": "http://arxiv.org/abs/2312.08995v1"
},
{
"title": "calibration-compatible listwise distillation of privileged features for\n ctr prediction",
"url": "http://arxiv.org/abs/2312.08727v1"
},
{
"title": "hybrid content dynamic recommendation system based in adapted tags and\n applied to digital library",
"url": "http://arxiv.org/abs/2312.08584v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "wikimute: a web-sourced dataset of semantic descriptions for music audio",
"url": "http://arxiv.org/abs/2312.09207v1"
},
{
"title": "framefinder: explorative multi-perspective framing extraction from news\n headlines",
"url": "http://arxiv.org/abs/2312.08995v1"
},
{
"title": "calibration-compatible listwise distillation of privileged features for\n ctr prediction",
"url": "http://arxiv.org/abs/2312.08727v1"
},
{
"title": "hybrid content dynamic recommendation system based in adapted tags and\n applied to digital library",
"url": "http://arxiv.org/abs/2312.08584v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "wikimute: a web-sourced dataset of semantic descriptions for music audio",
"url": "http://arxiv.org/abs/2312.09207v1"
},
{
"title": "framefinder: explorative multi-perspective framing extraction from news\n headlines",
"url": "http://arxiv.org/abs/2312.08995v1"
},
{
"title": "calibration-compatible listwise distillation of privileged features for\n ctr prediction",
"url": "http://arxiv.org/abs/2312.08727v1"
},
{
"title": "hybrid content dynamic recommendation system based in adapted tags and\n applied to digital library",
"url": "http://arxiv.org/abs/2312.08584v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "wikimute: a web-sourced dataset of semantic descriptions for music audio",
"url": "http://arxiv.org/abs/2312.09207v1"
},
{
"title": "framefinder: explorative multi-perspective framing extraction from news\n headlines",
"url": "http://arxiv.org/abs/2312.08995v1"
},
{
"title": "calibration-compatible listwise distillation of privileged features for\n ctr prediction",
"url": "http://arxiv.org/abs/2312.08727v1"
},
{
"title": "hybrid content dynamic recommendation system based in adapted tags and\n applied to digital library",
"url": "http://arxiv.org/abs/2312.08584v1"
},
{
"title": "leveraging user simulation to develop and evaluate conversational\n information access agents",
"url": "http://arxiv.org/abs/2312.08041v1"
},
{
"title": "distilling large language models for matching patients to clinical\n trials",
"url": "http://arxiv.org/abs/2312.09958v1"
},
{
"title": "gear-up: generative ai and external knowledge-based retrieval upgrading\n scholarly article searches for systematic reviews",
"url": "http://arxiv.org/abs/2312.09948v1"
},
{
"title": "temporally and distributionally robust optimization for cold-start\n recommendation",
"url": "http://arxiv.org/abs/2312.09901v1"
},
{
"title": "cetn: contrast-enhanced through network for ctr prediction",
"url": "http://arxiv.org/abs/2312.09715v1"
},
{
"title": "context-aware sequential model for multi-behaviour recommendation",
"url": "http://arxiv.org/abs/2312.09684v1"
},
{
"title": "distilling large language models for matching patients to clinical\n trials",
"url": "http://arxiv.org/abs/2312.09958v1"
},
{
"title": "gear-up: generative ai and external knowledge-based retrieval upgrading\n scholarly article searches for systematic reviews",
"url": "http://arxiv.org/abs/2312.09948v1"
},
{
"title": "temporally and distributionally robust optimization for cold-start\n recommendation",
"url": "http://arxiv.org/abs/2312.09901v1"
},
{
"title": "cetn: contrast-enhanced through network for ctr prediction",
"url": "http://arxiv.org/abs/2312.09715v1"
},
{
"title": "context-aware sequential model for multi-behaviour recommendation",
"url": "http://arxiv.org/abs/2312.09684v1"
},
{
"title": "a novel diffusion recommendation algorithm based on multi-scale cnn and\n residual lstm",
"url": "http://arxiv.org/abs/2312.10885v1"
},
{
"title": "on-device recommender systems: a tutorial on the new-generation\n recommendation paradigm",
"url": "http://arxiv.org/abs/2312.10864v1"
},
{
"title": "a unified framework for multi-domain ctr prediction via large language\n models",
"url": "http://arxiv.org/abs/2312.10743v1"
},
{
"title": "wikiformer: pre-training with structured information of wikipedia for\n ad-hoc retrieval",
"url": "http://arxiv.org/abs/2312.10661v1"
},
{
"title": "hyperpie: hyperparameter information extraction from scientific\n publications",
"url": "http://arxiv.org/abs/2312.10638v1"
},
{
"title": "efficient title reranker for fast and improved knowledge-intense nlp",
"url": "http://arxiv.org/abs/2312.12430v1"
},
{
"title": "pept: expert finding meets personalized pre-training",
"url": "http://arxiv.org/abs/2312.12162v1"
},
{
"title": "designing and evaluating general-purpose user representations based on\n behavioral logs from a measurement process perspective: a case study with\n snapchat",
"url": "http://arxiv.org/abs/2312.12111v1"
},
{
"title": "vita: 'carefully chosen and weighted less' is better in medication\n recommendation",
"url": "http://arxiv.org/abs/2312.12100v1"
},
{
"title": "shaping political discourse using multi-source news summarization",
"url": "http://arxiv.org/abs/2312.11703v1"
},
{
"title": "efficient title reranker for fast and improved knowledge-intense nlp",
"url": "http://arxiv.org/abs/2312.12430v1"
},
{
"title": "pept: expert finding meets personalized pre-training",
"url": "http://arxiv.org/abs/2312.12162v1"
},
{
"title": "designing and evaluating general-purpose user representations based on\n behavioral logs from a measurement process perspective: a case study with\n snapchat",
"url": "http://arxiv.org/abs/2312.12111v1"
},
{
"title": "vita: 'carefully chosen and weighted less' is better in medication\n recommendation",
"url": "http://arxiv.org/abs/2312.12100v1"
},
{
"title": "shaping political discourse using multi-source news summarization",
"url": "http://arxiv.org/abs/2312.11703v1"
},
{
"title": "efficient title reranker for fast and improved knowledge-intense nlp",
"url": "http://arxiv.org/abs/2312.12430v1"
},
{
"title": "pept: expert finding meets personalized pre-training",
"url": "http://arxiv.org/abs/2312.12162v1"
},
{
"title": "designing and evaluating general-purpose user representations based on\n behavioral logs from a measurement process perspective: a case study with\n snapchat",
"url": "http://arxiv.org/abs/2312.12111v1"
},
{
"title": "vita: 'carefully chosen and weighted less' is better in medication\n recommendation",
"url": "http://arxiv.org/abs/2312.12100v1"
},
{
"title": "shaping political discourse using multi-source news summarization",
"url": "http://arxiv.org/abs/2312.11703v1"
},
{
"title": "dir -- discrete information retrieval: conversational search over\n unstructured (and structured) data with large language models",
"url": "http://arxiv.org/abs/2312.13264v1"
},
{
"title": "bsl: understanding and improving softmax loss for recommendation",
"url": "http://arxiv.org/abs/2312.12882v1"
},
{
"title": "parallel ranking of ads and creatives in real-time advertising systems",
"url": "http://arxiv.org/abs/2312.12750v1"
},
{
"title": "fine-tuning large language models for adaptive machine translation",
"url": "http://arxiv.org/abs/2312.12740v1"
},
{
"title": "lookahead: an inference acceleration framework for large language model\n with lossless generation accuracy",
"url": "http://arxiv.org/abs/2312.12728v1"
},
{
"title": "dir -- discrete information retrieval: conversational search over\n unstructured (and structured) data with large language models",
"url": "http://arxiv.org/abs/2312.13264v1"
},
{
"title": "bsl: understanding and improving softmax loss for recommendation",
"url": "http://arxiv.org/abs/2312.12882v1"
},
{
"title": "parallel ranking of ads and creatives in real-time advertising systems",
"url": "http://arxiv.org/abs/2312.12750v1"
},
{
"title": "fine-tuning large language models for adaptive machine translation",
"url": "http://arxiv.org/abs/2312.12740v1"
},
{
"title": "lookahead: an inference acceleration framework for large language model\n with lossless generation accuracy",
"url": "http://arxiv.org/abs/2312.12728v1"
},
{
"title": "neural contextual bandits for personalized recommendation",
"url": "http://arxiv.org/abs/2312.14037v1"
},
{
"title": "a learning oriented dlp system based on classification model",
"url": "http://arxiv.org/abs/2312.13711v1"
},
{
"title": "unexplored frontiers: a review of empirical studies of exploratory\n search",
"url": "http://arxiv.org/abs/2312.13695v1"
},
{
"title": "empowering few-shot recommender systems with large language models --\n enhanced representations",
"url": "http://arxiv.org/abs/2312.13557v1"
},
{
"title": "accuracy vs memory advantage in the quantum simulation of stochastic\n processes",
"url": "http://arxiv.org/abs/2312.13473v1"
},
{
"title": "neural contextual bandits for personalized recommendation",
"url": "http://arxiv.org/abs/2312.14037v1"
},
{
"title": "a learning oriented dlp system based on classification model",
"url": "http://arxiv.org/abs/2312.13711v1"
},
{
"title": "unexplored frontiers: a review of empirical studies of exploratory\n search",
"url": "http://arxiv.org/abs/2312.13695v1"
},
{
"title": "empowering few-shot recommender systems with large language models --\n enhanced representations",
"url": "http://arxiv.org/abs/2312.13557v1"
},
{
"title": "accuracy vs memory advantage in the quantum simulation of stochastic\n processes",
"url": "http://arxiv.org/abs/2312.13473v1"
},
{
"title": "neural contextual bandits for personalized recommendation",
"url": "http://arxiv.org/abs/2312.14037v1"
},
{
"title": "a learning oriented dlp system based on classification model",
"url": "http://arxiv.org/abs/2312.13711v1"
},
{
"title": "unexplored frontiers: a review of empirical studies of exploratory\n search",
"url": "http://arxiv.org/abs/2312.13695v1"
},
{
"title": "empowering few-shot recommender systems with large language models --\n enhanced representations",
"url": "http://arxiv.org/abs/2312.13557v1"
},
{
"title": "accuracy vs memory advantage in the quantum simulation of stochastic\n processes",
"url": "http://arxiv.org/abs/2312.13473v1"
},
{
"title": "neural contextual bandits for personalized recommendation",
"url": "http://arxiv.org/abs/2312.14037v1"
},
{
"title": "a learning oriented dlp system based on classification model",
"url": "http://arxiv.org/abs/2312.13711v1"
},
{
"title": "unexplored frontiers: a review of empirical studies of exploratory\n search",
"url": "http://arxiv.org/abs/2312.13695v1"
},
{
"title": "empowering few-shot recommender systems with large language models --\n enhanced representations",
"url": "http://arxiv.org/abs/2312.13557v1"
},
{
"title": "accuracy vs memory advantage in the quantum simulation of stochastic\n processes",
"url": "http://arxiv.org/abs/2312.13473v1"
},
{
"title": "neural contextual bandits for personalized recommendation",
"url": "http://arxiv.org/abs/2312.14037v1"
},
{
"title": "a learning oriented dlp system based on classification model",
"url": "http://arxiv.org/abs/2312.13711v1"