Update paper "RED-PSM: Regularization by Denoising of Partially Separable Models"

#32
.pre-commit-config.yaml CHANGED
@@ -1,6 +1,6 @@
1
  repos:
2
  - repo: https://github.com/pre-commit/pre-commit-hooks
3
- rev: v5.0.0
4
  hooks:
5
  - id: check-executables-have-shebangs
6
  - id: check-json
@@ -18,27 +18,26 @@ repos:
18
  hooks:
19
  - id: docformatter
20
  args: ["--in-place"]
21
- - repo: https://github.com/astral-sh/ruff-pre-commit
22
- rev: v0.8.4
23
  hooks:
24
- - id: ruff
25
- args: ["--fix"]
26
- - id: ruff-format
27
- args: ["--line-length", "119"]
28
  - repo: https://github.com/pre-commit/mirrors-mypy
29
- rev: v1.14.0
30
  hooks:
31
  - id: mypy
32
  args: ["--ignore-missing-imports"]
33
  additional_dependencies:
34
- [
35
- "types-python-slugify",
36
- "types-requests",
37
- "types-PyYAML",
38
- "types-pytz",
39
- ]
 
40
  - repo: https://github.com/kynan/nbstripout
41
- rev: 0.8.1
42
  hooks:
43
  - id: nbstripout
44
  args:
@@ -47,7 +46,7 @@ repos:
47
  "metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
48
  ]
49
  - repo: https://github.com/nbQA-dev/nbQA
50
- rev: 1.9.1
51
  hooks:
52
  - id: nbqa-black
53
  - id: nbqa-pyupgrade
 
1
  repos:
2
  - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v4.5.0
4
  hooks:
5
  - id: check-executables-have-shebangs
6
  - id: check-json
 
18
  hooks:
19
  - id: docformatter
20
  args: ["--in-place"]
21
+ - repo: https://github.com/pycqa/isort
22
+ rev: 5.12.0
23
  hooks:
24
+ - id: isort
25
+ args: ["--profile", "black"]
 
 
26
  - repo: https://github.com/pre-commit/mirrors-mypy
27
+ rev: v1.6.0
28
  hooks:
29
  - id: mypy
30
  args: ["--ignore-missing-imports"]
31
  additional_dependencies:
32
+ ["types-python-slugify", "types-requests", "types-PyYAML"]
33
+ - repo: https://github.com/psf/black
34
+ rev: 23.9.1
35
+ hooks:
36
+ - id: black
37
+ language_version: python3.10
38
+ args: ["--line-length", "119"]
39
  - repo: https://github.com/kynan/nbstripout
40
+ rev: 0.6.1
41
  hooks:
42
  - id: nbstripout
43
  args:
 
46
  "metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
47
  ]
48
  - repo: https://github.com/nbQA-dev/nbQA
49
+ rev: 1.7.0
50
  hooks:
51
  - id: nbqa-black
52
  - id: nbqa-pyupgrade
.python-version DELETED
@@ -1 +0,0 @@
1
- 3.10
 
 
.vscode/extensions.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "recommendations": [
3
- "ms-python.python",
4
- "charliermarsh.ruff",
5
- "streetsidesoftware.code-spell-checker",
6
- "tamasfe.even-better-toml"
7
- ]
8
- }
 
 
 
 
 
 
 
 
 
.vscode/settings.json CHANGED
@@ -1,21 +1,21 @@
1
  {
2
- "editor.formatOnSave": true,
3
- "files.insertFinalNewline": false,
4
  "[python]": {
5
- "editor.defaultFormatter": "charliermarsh.ruff",
6
  "editor.formatOnType": true,
7
  "editor.codeActionsOnSave": {
8
- "source.fixAll.ruff": "explicit",
9
- "source.organizeImports": "explicit"
10
  }
11
  },
12
- "[jupyter]": {
13
- "files.insertFinalNewline": false
14
- },
15
- "notebook.output.scrolling": true,
16
- "notebook.formatOnCellExecution": true,
17
- "notebook.formatOnSave.enabled": true,
18
- "notebook.codeActionsOnSave": {
19
- "source.organizeImports": "explicit"
20
- }
 
 
 
21
  }
 
1
  {
 
 
2
  "[python]": {
3
+ "editor.defaultFormatter": "ms-python.black-formatter",
4
  "editor.formatOnType": true,
5
  "editor.codeActionsOnSave": {
6
+ "source.organizeImports": true
 
7
  }
8
  },
9
+ "black-formatter.args": [
10
+ "--line-length=119"
11
+ ],
12
+ "isort.args": ["--profile", "black"],
13
+ "flake8.args": [
14
+ "--max-line-length=119"
15
+ ],
16
+ "ruff.args": [
17
+ "--line-length=119"
18
+ ],
19
+ "editor.formatOnSave": true,
20
+ "files.insertFinalNewline": true
21
  }
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🦀
4
  colorFrom: gray
5
  colorTo: red
6
  sdk: gradio
7
- sdk_version: 5.9.1
8
  app_file: app.py
9
  pinned: false
10
  license: mit
 
4
  colorFrom: gray
5
  colorTo: red
6
  sdk: gradio
7
+ sdk_version: 3.47.1
8
  app_file: app.py
9
  pinned: false
10
  license: mit
app.py CHANGED
@@ -1,5 +1,7 @@
1
  #!/usr/bin/env python
2
 
 
 
3
  import gradio as gr
4
 
5
  from paper_list import PaperList
@@ -36,7 +38,7 @@ If your paper is not yet indexed on huggingface, you can index it by following t
36
 
37
  paper_list = PaperList()
38
 
39
- with gr.Blocks(css_paths="style.css") as demo:
40
  gr.Markdown(DESCRIPTION)
41
  with gr.Accordion(label="Tutorial", open=True):
42
  gr.Markdown(TUTORIAL)
 
1
  #!/usr/bin/env python
2
 
3
+ from __future__ import annotations
4
+
5
  import gradio as gr
6
 
7
  from paper_list import PaperList
 
38
 
39
  paper_list = PaperList()
40
 
41
+ with gr.Blocks(css="style.css") as demo:
42
  gr.Markdown(DESCRIPTION)
43
  with gr.Accordion(label="Tutorial", open=True):
44
  gr.Markdown(TUTORIAL)
claim_info.csv CHANGED
@@ -1,12 +1,12 @@
1
  arxiv_id,n_authors,n_linked_authors
2
  2308.09318,7,0
3
  2303.08888,6,1
4
- 2211.11629,7,1
5
  2308.05681,5,0
6
  2303.05760,3,0
7
  2304.10539,6,0
8
  2309.07403,5,0
9
- 2308.10490,6,1
10
  2307.15353,6,0
11
  2307.07494,6,0
12
  2307.08357,3,1
@@ -16,9 +16,9 @@ arxiv_id,n_authors,n_linked_authors
16
  2307.10797,5,1
17
  2309.13258,4,0
18
  2308.12035,3,0
19
- 2303.08998,8,2
20
  2308.16160,4,0
21
- 2211.02408,3,2
22
  2303.12343,5,0
23
  2307.12280,7,0
24
  2308.13862,3,0
@@ -30,7 +30,7 @@ arxiv_id,n_authors,n_linked_authors
30
  2305.19862,6,0
31
  2308.12595,4,0
32
  2308.05605,3,0
33
- 2306.09224,9,3
34
  2308.01469,4,0
35
  2307.13929,9,0
36
  2303.14407,4,0
@@ -51,12 +51,12 @@ arxiv_id,n_authors,n_linked_authors
51
  2307.09829,4,0
52
  2304.06419,5,0
53
  2305.02103,6,0
54
- 2303.15343,4,1
55
  2307.08695,8,1
56
  2308.11513,6,0
57
  2309.01246,4,0
58
  2304.06977,4,1
59
- 2303.04991,5,2
60
  2308.14374,4,0
61
  2303.12745,6,0
62
  2307.15254,6,0
@@ -64,9 +64,9 @@ arxiv_id,n_authors,n_linked_authors
64
  2307.12101,6,0
65
  2303.12074,7,0
66
  2307.16867,3,0
67
- 2307.10554,6,1
68
  2305.11080,3,0
69
- 2304.02051,6,3
70
  2308.14153,6,1
71
  2308.03262,5,0
72
  2307.12067,9,0
@@ -109,7 +109,7 @@ arxiv_id,n_authors,n_linked_authors
109
  2305.12411,5,0
110
  2308.09949,4,0
111
  2307.11342,6,0
112
- 2309.01131,9,1
113
  2206.03753,3,0
114
  2305.00976,3,0
115
  2302.03744,8,0
@@ -118,14 +118,14 @@ arxiv_id,n_authors,n_linked_authors
118
  2212.08059,8,1
119
  2307.09906,2,0
120
  2307.07742,6,0
121
- 2305.11870,7,4
122
  2308.08182,4,0
123
  2303.09152,7,1
124
  2308.08871,5,0
125
  2303.17590,11,0
126
  2308.12366,5,0
127
  2308.08544,5,0
128
- 2210.05557,5,1
129
  2308.10279,8,0
130
  2303.08622,3,0
131
  2307.09323,5,0
@@ -138,7 +138,7 @@ arxiv_id,n_authors,n_linked_authors
138
  2309.10388,5,0
139
  2309.03903,5,2
140
  2306.00450,9,0
141
- 2304.14291,5,1
142
  2302.08207,5,0
143
  2303.15965,3,0
144
  2304.07313,3,0
@@ -148,12 +148,12 @@ arxiv_id,n_authors,n_linked_authors
148
  2301.01805,6,0
149
  2308.04269,5,0
150
  2308.16154,4,0
151
- 2303.14420,5,1
152
  2309.08942,5,0
153
  2309.10592,5,0
154
  2303.11681,5,0
155
  2308.14847,7,0
156
- 2308.14152,7,1
157
  2212.10229,4,0
158
  2308.11990,4,0
159
  2308.00799,4,0
@@ -164,7 +164,7 @@ arxiv_id,n_authors,n_linked_authors
164
  2307.09065,4,0
165
  2303.14465,8,0
166
  2308.13229,4,1
167
- 2305.20087,5,1
168
  2307.14786,9,1
169
  2307.14709,6,0
170
  2303.14863,5,1
@@ -175,12 +175,12 @@ arxiv_id,n_authors,n_linked_authors
175
  2302.00988,5,1
176
  2308.15367,3,0
177
  2308.03364,6,0
178
- 2306.13754,5,2
179
  2304.03284,6,1
180
  2308.07415,3,0
181
  2308.03867,5,0
182
  2302.13334,5,0
183
- 2212.11613,6,1
184
  2305.07774,7,0
185
  2309.00844,4,0
186
  2307.16377,6,0
@@ -221,46 +221,46 @@ arxiv_id,n_authors,n_linked_authors
221
  2210.06551,6,0
222
  2212.00979,4,1
223
  2309.02423,7,1
224
- 2307.10984,8,2
225
- 2212.03237,6,1
226
- 2308.07893,5,1
227
  2302.12986,5,0
228
  2307.10008,5,0
229
  2308.08855,5,1
230
  2309.08113,6,0
231
  2307.10664,4,0
232
- 2303.06911,7,2
233
  2303.09295,7,0
234
  2307.09004,6,0
235
  2308.10305,6,0
236
  2305.03051,3,0
237
- 2309.06891,4,1
238
  2303.17368,15,0
239
  2309.01155,2,0
240
  2308.03594,4,0
241
  2309.01265,8,0
242
  2306.17723,3,1
243
- 2307.12058,5,1
244
  2303.09650,5,0
245
  2307.14277,6,0
246
  2303.06937,4,0
247
  2308.10170,8,1
248
  2308.12234,8,0
249
  2309.06323,6,0
250
- 2308.07787,3,1
251
  2307.15055,5,0
252
- 2303.13496,12,1
253
  2307.12291,5,0
254
  2307.16825,5,0
255
  2306.07282,6,0
256
- 2309.12314,13,1
257
  2305.02312,6,0
258
  2307.07942,6,0
259
  2308.16083,4,0
260
  2308.10308,6,0
261
- 2305.14345,3,2
262
  2308.09804,4,1
263
- 2011.11233,7,1
264
  2303.17905,4,0
265
  2302.08058,6,0
266
  2308.11568,5,0
@@ -272,9 +272,9 @@ arxiv_id,n_authors,n_linked_authors
272
  2308.05925,7,0
273
  2304.09691,6,0
274
  2307.04129,3,0
275
- 2303.11324,5,2
276
  2304.07221,6,0
277
- 2210.10090,5,1
278
  2303.11396,5,0
279
  2212.14306,4,2
280
  2303.13022,6,0
@@ -282,14 +282,14 @@ arxiv_id,n_authors,n_linked_authors
282
  2303.11114,5,1
283
  2308.08428,8,0
284
  2211.16762,5,0
285
- 2210.01055,7,1
286
  2211.11727,3,1
287
  2307.15700,2,0
288
  2309.02020,3,0
289
  2303.09769,4,0
290
  2308.05140,4,0
291
  2309.03473,3,0
292
- 2303.09181,11,1
293
  2303.10658,2,0
294
  2303.08914,9,1
295
  2307.09755,5,1
@@ -313,7 +313,7 @@ arxiv_id,n_authors,n_linked_authors
313
  2303.09556,8,0
314
  2307.11545,6,0
315
  2306.17253,5,0
316
- 2306.07349,10,5
317
  2301.02009,5,0
318
  2301.01283,7,0
319
  2210.09996,6,1
@@ -340,14 +340,14 @@ arxiv_id,n_authors,n_linked_authors
340
  2309.11081,3,0
341
  2309.06810,5,0
342
  2307.09520,3,1
343
- 2309.09724,8,1
344
  2307.06948,6,0
345
  2304.09423,7,0
346
  2304.13207,4,0
347
  2304.09913,3,0
348
  2206.00205,6,0
349
  2308.10658,5,0
350
- 2302.12948,18,3
351
  2308.16460,6,0
352
  2309.00035,8,4
353
  2308.10898,4,0
@@ -364,9 +364,9 @@ arxiv_id,n_authors,n_linked_authors
364
  2307.11386,6,0
365
  2308.13168,4,0
366
  2308.11166,5,1
367
- 2309.02420,6,1
368
  2308.12587,6,0
369
- 2308.09311,4,1
370
  2309.05911,2,0
371
  2309.00233,16,0
372
  2302.14581,5,0
@@ -374,22 +374,22 @@ arxiv_id,n_authors,n_linked_authors
374
  2306.13643,3,0
375
  2308.12510,5,0
376
  2308.08872,6,0
377
- 2306.06023,12,1
378
  2308.07815,4,0
379
- 2203.13310,9,2
380
- 2307.08996,5,1
381
  2309.09294,7,0
382
  2309.00775,3,0
383
  2207.13085,10,0
384
  2303.06628,6,0
385
- 2304.02012,6,2
386
- 2304.05316,3,1
387
  2309.04756,3,0
388
  2305.06292,4,0
389
  2211.10705,8,1
390
  2307.14735,4,0
391
  2308.10205,2,1
392
- 2308.04197,8,1
393
  2309.09975,4,0
394
  2211.12860,3,0
395
  2308.11737,20,0
@@ -397,7 +397,7 @@ arxiv_id,n_authors,n_linked_authors
397
  2308.09421,8,0
398
  2304.01289,6,0
399
  2304.04278,4,0
400
- 2306.05888,8,2
401
  2307.10782,6,0
402
  2303.10735,5,0
403
  2303.05071,4,0
@@ -418,7 +418,7 @@ arxiv_id,n_authors,n_linked_authors
418
  2308.11489,5,0
419
  2305.01643,8,0
420
  2212.05370,8,0
421
- 2210.06455,5,1
422
  2305.09664,2,1
423
  2308.05396,5,0
424
  2308.09946,8,1
@@ -431,18 +431,18 @@ arxiv_id,n_authors,n_linked_authors
431
  2308.11184,2,0
432
  2308.06051,6,0
433
  2308.03163,4,1
434
- 2307.15139,2,1
435
  2308.01948,3,1
436
  2212.01448,4,0
437
  2304.06708,5,0
438
  2308.06202,5,0
439
- 2303.17597,9,2
440
  2307.09696,3,0
441
  2308.06038,5,0
442
  2308.05382,3,0
443
  2303.05118,5,0
444
  2304.10465,6,0
445
- 2309.10438,10,2
446
  2304.05170,6,0
447
  2302.13372,5,0
448
  2309.01858,10,0
@@ -468,13 +468,13 @@ arxiv_id,n_authors,n_linked_authors
468
  2304.01752,4,0
469
  2304.00961,3,0
470
  2302.04308,6,0
471
- 2303.11328,6,2
472
  2208.10741,4,0
473
  2307.12194,2,1
474
  2301.01146,10,0
475
  2212.05680,4,1
476
- 2304.09801,8,1
477
- 2212.01602,5,1
478
  2211.01146,4,0
479
  2308.10603,4,0
480
  2303.09051,2,1
@@ -487,7 +487,7 @@ arxiv_id,n_authors,n_linked_authors
487
  2303.11086,5,0
488
  2309.11013,5,0
489
  2306.15667,3,1
490
- 2303.11897,7,2
491
  2308.08393,7,0
492
  2307.11514,5,0
493
  2304.06020,7,0
@@ -495,7 +495,7 @@ arxiv_id,n_authors,n_linked_authors
495
  2303.16196,4,1
496
  2301.07389,6,0
497
  2309.03897,4,1
498
- 2308.10089,4,1
499
  2212.07378,4,0
500
  2308.14480,5,0
501
  2308.14023,6,0
@@ -509,11 +509,11 @@ arxiv_id,n_authors,n_linked_authors
509
  2303.15994,3,1
510
  2309.14339,7,1
511
  2309.14207,5,0
512
- 2301.06782,6,1
513
  2303.15651,6,0
514
  2204.02964,6,0
515
  2211.17042,3,1
516
- 2304.13445,9,1
517
  2305.10732,4,0
518
  2303.13396,4,0
519
  2302.13562,6,0
@@ -525,20 +525,20 @@ arxiv_id,n_authors,n_linked_authors
525
  2308.08359,8,0
526
  2309.03598,6,0
527
  2301.00023,6,0
528
- 2309.10091,5,1
529
  2303.06571,10,0
530
- 2303.15247,4,3
531
  2211.14308,3,1
532
  2211.07157,5,0
533
  2306.14161,3,1
534
  2211.10946,2,1
535
- 2308.15844,4,1
536
  2308.16477,4,0
537
  2304.11862,6,0
538
  2303.12789,5,0
539
- 2308.01779,7,2
540
  2209.03320,4,1
541
- 2306.02851,11,2
542
  2307.07653,5,0
543
  2307.09066,7,0
544
  2308.09775,5,0
@@ -564,30 +564,30 @@ arxiv_id,n_authors,n_linked_authors
564
  2305.06716,3,0
565
  2212.13185,5,0
566
  2306.11316,2,0
567
- 2308.09511,4,1
568
  2303.13703,4,2
569
  2304.01480,7,0
570
  2304.01192,10,1
571
  2308.04583,7,0
572
- 2210.08457,6,1
573
- 2212.11565,9,2
574
  2308.03282,3,1
575
- 2305.02008,10,1
576
  2308.09391,4,0
577
- 2307.16361,6,1
578
  2303.14027,3,0
579
  2208.13930,5,0
580
  2308.09040,6,0
581
  2306.15925,4,1
582
  2308.13783,7,0
583
- 2308.10306,5,1
584
- 2309.04581,6,5
585
  2301.04011,8,0
586
  2308.04699,5,0
587
  2308.09228,3,0
588
- 2307.11077,9,2
589
- 2309.03900,7,1
590
- 2302.14416,6,1
591
  2303.09083,5,0
592
  2305.12961,2,0
593
  2308.12964,5,1
@@ -596,7 +596,7 @@ arxiv_id,n_authors,n_linked_authors
596
  2308.07648,5,0
597
  2303.09756,5,0
598
  2309.11593,2,0
599
- 2303.08345,7,1
600
  2211.08217,4,0
601
  2308.14616,5,2
602
  2308.09717,3,0
@@ -619,7 +619,7 @@ arxiv_id,n_authors,n_linked_authors
619
  2303.08131,8,0
620
  2301.06309,9,0
621
  2307.11411,7,0
622
- 2308.00301,5,1
623
  2309.08596,2,1
624
  2304.14401,4,0
625
  2303.12236,4,1
@@ -629,22 +629,22 @@ arxiv_id,n_authors,n_linked_authors
629
  2303.16874,2,0
630
  2303.16201,7,2
631
  2211.14512,7,0
632
- 2308.04016,4,1
633
  2301.01928,3,0
634
- 2304.06813,2,1
635
  2212.02469,9,0
636
  2308.04829,8,0
637
  2308.04163,4,0
638
  2206.08464,7,1
639
  2303.07811,4,1
640
  2304.03763,3,0
641
- 2211.11682,8,1
642
- 2303.08340,10,2
643
  2303.05072,5,2
644
  2307.09856,4,0
645
  2304.11342,7,0
646
  2307.16634,5,0
647
- 2303.16203,5,2
648
  2308.07625,6,0
649
  2308.10599,5,0
650
  2308.12213,4,1
@@ -661,8 +661,8 @@ arxiv_id,n_authors,n_linked_authors
661
  2308.08137,7,1
662
  2211.11432,11,1
663
  2309.01151,2,0
664
- 2001.05887,4,1
665
- 2308.11793,8,2
666
  2304.11335,3,0
667
  2307.07944,5,0
668
  2303.17169,8,1
@@ -671,7 +671,7 @@ arxiv_id,n_authors,n_linked_authors
671
  2212.08653,11,0
672
  2211.12340,7,0
673
  2309.12042,7,0
674
- 2304.08465,6,2
675
  2308.11778,4,0
676
  2305.10474,10,4
677
  2308.04808,8,0
@@ -682,7 +682,7 @@ arxiv_id,n_authors,n_linked_authors
682
  2303.17859,3,0
683
  2303.14389,4,0
684
  2308.10525,7,0
685
- 2307.10776,6,2
686
  2307.14008,6,1
687
  2308.14575,8,0
688
  2303.13796,9,0
@@ -692,15 +692,15 @@ arxiv_id,n_authors,n_linked_authors
692
  2303.09472,8,0
693
  2302.05294,2,0
694
  2309.05281,3,0
695
- 2306.05872,6,3
696
- 2210.00939,4,3
697
  2306.09345,4,0
698
  2304.07090,3,0
699
  2303.09758,4,0
700
  2304.01172,8,0
701
  2308.10402,2,0
702
  2303.15435,5,1
703
- 2308.12894,5,1
704
  2305.11173,7,3
705
  2308.07795,7,1
706
  2303.08084,3,1
@@ -710,7 +710,7 @@ arxiv_id,n_authors,n_linked_authors
710
  2304.02602,10,0
711
  2308.09922,5,0
712
  2211.10181,7,0
713
- 2308.10916,2,1
714
  2304.10532,5,0
715
  2305.08455,13,2
716
  2309.07914,5,0
@@ -721,31 +721,31 @@ arxiv_id,n_authors,n_linked_authors
721
  2307.14611,5,0
722
  2307.16686,4,2
723
  2303.07274,7,1
724
- 2308.05733,6,1
725
  2212.03741,8,0
726
  2303.13953,6,2
727
  2307.10947,4,0
728
  2211.13775,3,1
729
  2301.02229,7,0
730
  2307.12335,7,2
731
- 2308.13989,4,1
732
  2306.05085,6,0
733
- 2308.12288,2,2
734
- 2308.11194,5,1
735
  2302.08958,5,0
736
  2303.13505,3,0
737
- 2211.11248,10,1
738
  2308.14244,4,0
739
  2308.10809,2,0
740
  2308.00356,7,0
741
  2303.12384,6,0
742
  2308.04549,6,0
743
- 2302.06833,8,1
744
  2307.08093,5,0
745
  2211.09809,5,0
746
  2210.01887,3,0
747
  2303.12077,10,0
748
- 2303.11329,3,2
749
  2211.06897,7,0
750
  2303.11225,10,2
751
  2308.05986,2,0
@@ -768,9 +768,9 @@ arxiv_id,n_authors,n_linked_authors
768
  2212.00648,5,1
769
  2307.12463,7,0
770
  2309.12867,6,0
771
- 2308.03906,8,2
772
  2308.10315,8,0
773
- 2309.06703,3,2
774
  2306.03802,3,0
775
  2307.07929,9,0
776
  2309.03899,3,0
@@ -814,10 +814,10 @@ arxiv_id,n_authors,n_linked_authors
814
  2308.09694,6,0
815
  2308.10832,4,0
816
  2307.07245,4,0
817
- 2303.08682,6,1
818
  2305.12833,4,0
819
  2212.04248,6,0
820
- 2309.02041,5,2
821
  2308.09305,3,0
822
  2308.11025,3,0
823
  2303.10276,3,0
@@ -831,7 +831,7 @@ arxiv_id,n_authors,n_linked_authors
831
  2303.09410,6,0
832
  2308.09472,4,0
833
  2307.15644,9,1
834
- 2212.08649,3,2
835
  2309.05098,12,0
836
  2303.07820,9,0
837
  2303.13233,6,0
@@ -855,7 +855,7 @@ arxiv_id,n_authors,n_linked_authors
855
  2307.08209,11,0
856
  2308.14713,5,0
857
  2308.09247,6,0
858
- 2308.13077,5,1
859
  2307.14710,6,0
860
  2309.10431,7,0
861
  2303.12326,5,0
@@ -866,7 +866,7 @@ arxiv_id,n_authors,n_linked_authors
866
  2211.12542,7,0
867
  2303.06840,10,0
868
  2303.10070,7,0
869
- 2303.09826,5,2
870
  2308.06712,6,0
871
  2304.01198,5,0
872
  2309.00216,4,0
@@ -881,7 +881,7 @@ arxiv_id,n_authors,n_linked_authors
881
  2211.07198,3,0
882
  2212.04761,6,0
883
  2308.11901,6,0
884
- 2308.15226,6,3
885
  2304.14880,5,1
886
  2212.03434,5,0
887
  2306.11046,6,0
@@ -897,16 +897,16 @@ arxiv_id,n_authors,n_linked_authors
897
  2308.10694,5,1
898
  2211.10593,4,0
899
  2303.15256,4,1
900
- 2303.08566,5,1
901
  2308.09383,4,0
902
  2307.14768,8,1
903
  2307.13459,3,0
904
- 2304.01195,7,2
905
- 2307.05463,8,3
906
  2307.12027,4,0
907
  2308.06777,6,0
908
  2308.09564,3,0
909
- 2303.11579,8,2
910
  2211.11446,5,0
911
  2306.08330,2,0
912
  2308.03413,5,0
@@ -924,7 +924,7 @@ arxiv_id,n_authors,n_linked_authors
924
  2212.12712,8,0
925
  2308.13175,3,0
926
  2308.11073,4,0
927
- 2303.11325,6,1
928
  2307.10235,6,0
929
  2308.07918,3,0
930
  2309.09301,8,0
@@ -939,18 +939,18 @@ arxiv_id,n_authors,n_linked_authors
939
  2309.13556,3,0
940
  2304.11409,5,0
941
  2303.11546,3,0
942
- 2308.03685,9,2
943
  2308.02840,3,0
944
  2208.09833,5,0
945
  2211.11296,5,0
946
  2308.11874,5,0
947
  2308.00728,5,0
948
- 2210.11006,4,1
949
  2309.05438,6,0
950
  2303.05367,9,1
951
  2207.11209,6,0
952
  2309.08690,2,0
953
- 2308.14960,6,2
954
  2303.16975,5,1
955
  2304.11263,4,1
956
  2303.10594,5,0
@@ -959,10 +959,10 @@ arxiv_id,n_authors,n_linked_authors
959
  2303.12688,3,0
960
  2307.12972,7,0
961
  2309.09622,4,0
962
- 2303.09535,7,2
963
  2303.04970,5,0
964
  2201.09636,6,3
965
- 2308.13369,4,1
966
  2306.09346,4,0
967
  2304.02643,12,0
968
  2303.11003,3,0
@@ -980,12 +980,12 @@ arxiv_id,n_authors,n_linked_authors
980
  2309.08816,9,0
981
  2307.08908,6,0
982
  2308.10820,4,0
983
- 2211.07091,6,1
984
  2307.15333,4,1
985
  2303.04557,4,0
986
  2309.07122,5,4
987
  2211.09703,7,0
988
- 2204.11335,5,2
989
  2308.05410,2,0
990
  2210.00647,7,0
991
  2209.05407,6,1
@@ -996,7 +996,7 @@ arxiv_id,n_authors,n_linked_authors
996
  2308.16905,4,1
997
  2304.09479,3,0
998
  2307.08027,2,0
999
- 2303.11306,5,2
1000
  2305.08552,5,0
1001
  2307.09362,6,0
1002
  2308.12866,8,0
@@ -1045,7 +1045,7 @@ arxiv_id,n_authors,n_linked_authors
1045
  2309.03809,4,0
1046
  2308.11911,5,0
1047
  2212.05946,7,0
1048
- 2307.07250,3,2
1049
  2308.01045,5,0
1050
  2309.11133,5,0
1051
  2211.13579,5,0
@@ -1085,7 +1085,7 @@ arxiv_id,n_authors,n_linked_authors
1085
  2302.01392,4,0
1086
  2308.00376,4,0
1087
  2308.04383,8,0
1088
- 2307.13770,7,1
1089
  2308.14221,4,0
1090
  2212.09748,2,0
1091
  2303.13005,6,1
@@ -1093,13 +1093,13 @@ arxiv_id,n_authors,n_linked_authors
1093
  2201.00785,8,0
1094
  2308.01236,6,0
1095
  2307.10816,7,0
1096
- 2304.10528,5,1
1097
  2303.13593,3,0
1098
  2303.09941,2,0
1099
  2308.01194,11,0
1100
  2212.04085,6,0
1101
  2301.09637,7,0
1102
- 2303.03991,10,2
1103
  2304.00058,5,0
1104
  2307.12577,6,0
1105
  2303.07543,4,0
@@ -1152,10 +1152,10 @@ arxiv_id,n_authors,n_linked_authors
1152
  2212.04105,5,0
1153
  2308.08463,5,0
1154
  2308.04556,7,1
1155
- 2302.12066,7,2
1156
  2309.07910,3,0
1157
  2307.16687,5,0
1158
- 2302.13848,6,2
1159
  2304.08483,6,0
1160
  2308.14083,3,0
1161
  2308.09711,5,1
@@ -1182,9 +1182,9 @@ arxiv_id,n_authors,n_linked_authors
1182
  2308.13236,4,0
1183
  2309.07911,7,0
1184
  2309.02527,9,0
1185
- 2304.03752,9,1
1186
  2308.05438,5,0
1187
- 2211.03989,7,2
1188
  2303.17559,9,0
1189
  2212.06486,6,0
1190
  2307.12907,5,0
@@ -1195,7 +1195,7 @@ arxiv_id,n_authors,n_linked_authors
1195
  2304.02626,5,0
1196
  2308.06112,5,0
1197
  2307.08249,4,1
1198
- 2211.12131,7,1
1199
  2308.11015,11,0
1200
  2212.12977,6,0
1201
  2308.04061,3,0
@@ -1219,12 +1219,12 @@ arxiv_id,n_authors,n_linked_authors
1219
  2306.08637,8,0
1220
  2308.09891,4,0
1221
  2308.16825,7,1
1222
- 2308.02752,4,1
1223
- 2308.12370,6,2
1224
  2307.12964,6,0
1225
  2301.05221,6,0
1226
  2307.14392,9,0
1227
- 2308.12383,5,1
1228
  2308.06692,7,0
1229
  2307.07928,5,0
1230
  2309.03173,7,0
@@ -1278,22 +1278,22 @@ arxiv_id,n_authors,n_linked_authors
1278
  2304.02639,3,0
1279
  2305.11676,8,0
1280
  2308.10147,8,0
1281
- 2309.09310,9,1
1282
  2308.11130,6,0
1283
  2303.05309,10,0
1284
  2303.13501,2,0
1285
  2307.09763,3,1
1286
- 2308.09244,5,1
1287
  2308.10445,3,0
1288
  2308.09618,3,0
1289
- 2308.04206,6,1
1290
  2308.11662,3,0
1291
  2212.04385,7,0
1292
  2308.05911,3,1
1293
  2307.08114,2,0
1294
  2303.08135,5,0
1295
  2304.14104,2,0
1296
- 2205.14865,5,1
1297
  2303.17959,6,1
1298
  2308.11357,6,0
1299
  2308.09903,4,0
@@ -1303,8 +1303,8 @@ arxiv_id,n_authors,n_linked_authors
1303
  2208.09418,4,0
1304
  2307.16508,7,0
1305
  2307.15860,8,0
1306
- 2211.10955,5,1
1307
- 2303.08983,7,2
1308
  2308.02897,5,0
1309
  2304.14310,2,1
1310
  2308.13133,9,0
@@ -1337,7 +1337,7 @@ arxiv_id,n_authors,n_linked_authors
1337
  2308.09303,4,0
1338
  2303.13439,7,1
1339
  2210.01208,6,0
1340
- 2211.04894,9,2
1341
  2307.08383,8,0
1342
  2308.10174,6,0
1343
  2308.11186,6,0
@@ -1345,8 +1345,8 @@ arxiv_id,n_authors,n_linked_authors
1345
  2302.05361,7,0
1346
  2309.01590,2,1
1347
  2308.07209,5,0
1348
- 2303.09551,6,1
1349
- 2304.00967,7,1
1350
  2308.07391,3,0
1351
  2307.09356,5,0
1352
  2303.11722,5,0
@@ -1363,13 +1363,13 @@ arxiv_id,n_authors,n_linked_authors
1363
  2302.14325,7,0
1364
  2308.05985,6,0
1365
  2308.01483,6,0
1366
- 2305.09275,6,2
1367
  2206.00309,5,1
1368
  2304.11705,4,1
1369
  2308.09281,6,0
1370
  2303.08942,8,0
1371
  2309.14291,3,0
1372
- 2303.16058,7,1
1373
  2308.10447,4,1
1374
  2303.14189,5,0
1375
  2304.08965,2,0
@@ -1379,17 +1379,17 @@ arxiv_id,n_authors,n_linked_authors
1379
  2305.11167,5,0
1380
  2211.05776,8,0
1381
  2309.01093,4,0
1382
- 2304.11762,6,1
1383
  2303.17209,6,0
1384
- 2305.04966,4,3
1385
  2308.13504,3,1
1386
  2304.04321,12,0
1387
- 2212.10621,9,1
1388
- 2303.12786,3,1
1389
  2303.09735,6,1
1390
  2308.09322,4,0
1391
  2308.14816,2,1
1392
- 2308.04622,5,2
1393
  2308.06072,3,0
1394
  2301.00794,4,0
1395
  2309.08644,4,0
@@ -1405,4 +1405,4 @@ arxiv_id,n_authors,n_linked_authors
1405
  2308.15074,5,0
1406
  2309.04422,4,0
1407
  2306.06362,9,0
1408
- 2209.05534,7,1
 
1
  arxiv_id,n_authors,n_linked_authors
2
  2308.09318,7,0
3
  2303.08888,6,1
4
+ 2211.11629,7,0
5
  2308.05681,5,0
6
  2303.05760,3,0
7
  2304.10539,6,0
8
  2309.07403,5,0
9
+ 2308.10490,6,0
10
  2307.15353,6,0
11
  2307.07494,6,0
12
  2307.08357,3,1
 
16
  2307.10797,5,1
17
  2309.13258,4,0
18
  2308.12035,3,0
19
+ 2303.08998,8,1
20
  2308.16160,4,0
21
+ 2211.02408,3,1
22
  2303.12343,5,0
23
  2307.12280,7,0
24
  2308.13862,3,0
 
30
  2305.19862,6,0
31
  2308.12595,4,0
32
  2308.05605,3,0
33
+ 2306.09224,9,2
34
  2308.01469,4,0
35
  2307.13929,9,0
36
  2303.14407,4,0
 
51
  2307.09829,4,0
52
  2304.06419,5,0
53
  2305.02103,6,0
54
+ 2303.15343,4,0
55
  2307.08695,8,1
56
  2308.11513,6,0
57
  2309.01246,4,0
58
  2304.06977,4,1
59
+ 2303.04991,5,1
60
  2308.14374,4,0
61
  2303.12745,6,0
62
  2307.15254,6,0
 
64
  2307.12101,6,0
65
  2303.12074,7,0
66
  2307.16867,3,0
67
+ 2307.10554,6,0
68
  2305.11080,3,0
69
+ 2304.02051,6,1
70
  2308.14153,6,1
71
  2308.03262,5,0
72
  2307.12067,9,0
 
109
  2305.12411,5,0
110
  2308.09949,4,0
111
  2307.11342,6,0
112
+ 2309.01131,9,0
113
  2206.03753,3,0
114
  2305.00976,3,0
115
  2302.03744,8,0
 
118
  2212.08059,8,1
119
  2307.09906,2,0
120
  2307.07742,6,0
121
+ 2305.11870,7,3
122
  2308.08182,4,0
123
  2303.09152,7,1
124
  2308.08871,5,0
125
  2303.17590,11,0
126
  2308.12366,5,0
127
  2308.08544,5,0
128
+ 2210.05557,5,0
129
  2308.10279,8,0
130
  2303.08622,3,0
131
  2307.09323,5,0
 
138
  2309.10388,5,0
139
  2309.03903,5,2
140
  2306.00450,9,0
141
+ 2304.14291,5,0
142
  2302.08207,5,0
143
  2303.15965,3,0
144
  2304.07313,3,0
 
148
  2301.01805,6,0
149
  2308.04269,5,0
150
  2308.16154,4,0
151
+ 2303.14420,5,0
152
  2309.08942,5,0
153
  2309.10592,5,0
154
  2303.11681,5,0
155
  2308.14847,7,0
156
+ 2308.14152,7,0
157
  2212.10229,4,0
158
  2308.11990,4,0
159
  2308.00799,4,0
 
164
  2307.09065,4,0
165
  2303.14465,8,0
166
  2308.13229,4,1
167
+ 2305.20087,5,0
168
  2307.14786,9,1
169
  2307.14709,6,0
170
  2303.14863,5,1
 
175
  2302.00988,5,1
176
  2308.15367,3,0
177
  2308.03364,6,0
178
+ 2306.13754,5,1
179
  2304.03284,6,1
180
  2308.07415,3,0
181
  2308.03867,5,0
182
  2302.13334,5,0
183
+ 2212.11613,6,0
184
  2305.07774,7,0
185
  2309.00844,4,0
186
  2307.16377,6,0
 
221
  2210.06551,6,0
222
  2212.00979,4,1
223
  2309.02423,7,1
224
+ 2307.10984,8,0
225
+ 2212.03237,6,0
226
+ 2308.07893,5,0
227
  2302.12986,5,0
228
  2307.10008,5,0
229
  2308.08855,5,1
230
  2309.08113,6,0
231
  2307.10664,4,0
232
+ 2303.06911,7,0
233
  2303.09295,7,0
234
  2307.09004,6,0
235
  2308.10305,6,0
236
  2305.03051,3,0
237
+ 2309.06891,4,0
238
  2303.17368,15,0
239
  2309.01155,2,0
240
  2308.03594,4,0
241
  2309.01265,8,0
242
  2306.17723,3,1
243
+ 2307.12058,5,0
244
  2303.09650,5,0
245
  2307.14277,6,0
246
  2303.06937,4,0
247
  2308.10170,8,1
248
  2308.12234,8,0
249
  2309.06323,6,0
250
+ 2308.07787,3,0
251
  2307.15055,5,0
252
+ 2303.13496,12,0
253
  2307.12291,5,0
254
  2307.16825,5,0
255
  2306.07282,6,0
256
+ 2309.12314,13,0
257
  2305.02312,6,0
258
  2307.07942,6,0
259
  2308.16083,4,0
260
  2308.10308,6,0
261
+ 2305.14345,3,0
262
  2308.09804,4,1
263
+ 2011.11233,7,0
264
  2303.17905,4,0
265
  2302.08058,6,0
266
  2308.11568,5,0
 
272
  2308.05925,7,0
273
  2304.09691,6,0
274
  2307.04129,3,0
275
+ 2303.11324,5,0
276
  2304.07221,6,0
277
+ 2210.10090,5,0
278
  2303.11396,5,0
279
  2212.14306,4,2
280
  2303.13022,6,0
 
282
  2303.11114,5,1
283
  2308.08428,8,0
284
  2211.16762,5,0
285
+ 2210.01055,7,0
286
  2211.11727,3,1
287
  2307.15700,2,0
288
  2309.02020,3,0
289
  2303.09769,4,0
290
  2308.05140,4,0
291
  2309.03473,3,0
292
+ 2303.09181,11,0
293
  2303.10658,2,0
294
  2303.08914,9,1
295
  2307.09755,5,1
 
313
  2303.09556,8,0
314
  2307.11545,6,0
315
  2306.17253,5,0
316
+ 2306.07349,10,4
317
  2301.02009,5,0
318
  2301.01283,7,0
319
  2210.09996,6,1
 
340
  2309.11081,3,0
341
  2309.06810,5,0
342
  2307.09520,3,1
343
+ 2309.09724,8,0
344
  2307.06948,6,0
345
  2304.09423,7,0
346
  2304.13207,4,0
347
  2304.09913,3,0
348
  2206.00205,6,0
349
  2308.10658,5,0
350
+ 2302.12948,18,0
351
  2308.16460,6,0
352
  2309.00035,8,4
353
  2308.10898,4,0
 
364
  2307.11386,6,0
365
  2308.13168,4,0
366
  2308.11166,5,1
367
+ 2309.02420,6,0
368
  2308.12587,6,0
369
+ 2308.09311,4,0
370
  2309.05911,2,0
371
  2309.00233,16,0
372
  2302.14581,5,0
 
374
  2306.13643,3,0
375
  2308.12510,5,0
376
  2308.08872,6,0
377
+ 2306.06023,12,0
378
  2308.07815,4,0
379
+ 2203.13310,9,0
380
+ 2307.08996,5,0
381
  2309.09294,7,0
382
  2309.00775,3,0
383
  2207.13085,10,0
384
  2303.06628,6,0
385
+ 2304.02012,6,0
386
+ 2304.05316,3,0
387
  2309.04756,3,0
388
  2305.06292,4,0
389
  2211.10705,8,1
390
  2307.14735,4,0
391
  2308.10205,2,1
392
+ 2308.04197,8,0
393
  2309.09975,4,0
394
  2211.12860,3,0
395
  2308.11737,20,0
 
397
  2308.09421,8,0
398
  2304.01289,6,0
399
  2304.04278,4,0
400
+ 2306.05888,8,1
401
  2307.10782,6,0
402
  2303.10735,5,0
403
  2303.05071,4,0
 
418
  2308.11489,5,0
419
  2305.01643,8,0
420
  2212.05370,8,0
421
+ 2210.06455,5,0
422
  2305.09664,2,1
423
  2308.05396,5,0
424
  2308.09946,8,1
 
431
  2308.11184,2,0
432
  2308.06051,6,0
433
  2308.03163,4,1
434
+ 2307.15139,2,0
435
  2308.01948,3,1
436
  2212.01448,4,0
437
  2304.06708,5,0
438
  2308.06202,5,0
439
+ 2303.17597,9,1
440
  2307.09696,3,0
441
  2308.06038,5,0
442
  2308.05382,3,0
443
  2303.05118,5,0
444
  2304.10465,6,0
445
+ 2309.10438,10,0
446
  2304.05170,6,0
447
  2302.13372,5,0
448
  2309.01858,10,0
 
468
  2304.01752,4,0
469
  2304.00961,3,0
470
  2302.04308,6,0
471
+ 2303.11328,6,1
472
  2208.10741,4,0
473
  2307.12194,2,1
474
  2301.01146,10,0
475
  2212.05680,4,1
476
+ 2304.09801,8,0
477
+ 2212.01602,5,0
478
  2211.01146,4,0
479
  2308.10603,4,0
480
  2303.09051,2,1
 
487
  2303.11086,5,0
488
  2309.11013,5,0
489
  2306.15667,3,1
490
+ 2303.11897,7,0
491
  2308.08393,7,0
492
  2307.11514,5,0
493
  2304.06020,7,0
 
495
  2303.16196,4,1
496
  2301.07389,6,0
497
  2309.03897,4,1
498
+ 2308.10089,4,0
499
  2212.07378,4,0
500
  2308.14480,5,0
501
  2308.14023,6,0
 
509
  2303.15994,3,1
510
  2309.14339,7,1
511
  2309.14207,5,0
512
+ 2301.06782,6,0
513
  2303.15651,6,0
514
  2204.02964,6,0
515
  2211.17042,3,1
516
+ 2304.13445,9,0
517
  2305.10732,4,0
518
  2303.13396,4,0
519
  2302.13562,6,0
 
525
  2308.08359,8,0
526
  2309.03598,6,0
527
  2301.00023,6,0
528
+ 2309.10091,5,0
529
  2303.06571,10,0
530
+ 2303.15247,4,2
531
  2211.14308,3,1
532
  2211.07157,5,0
533
  2306.14161,3,1
534
  2211.10946,2,1
535
+ 2308.15844,4,0
536
  2308.16477,4,0
537
  2304.11862,6,0
538
  2303.12789,5,0
539
+ 2308.01779,7,0
540
  2209.03320,4,1
541
+ 2306.02851,11,1
542
  2307.07653,5,0
543
  2307.09066,7,0
544
  2308.09775,5,0
 
564
  2305.06716,3,0
565
  2212.13185,5,0
566
  2306.11316,2,0
567
+ 2308.09511,4,0
568
  2303.13703,4,2
569
  2304.01480,7,0
570
  2304.01192,10,1
571
  2308.04583,7,0
572
+ 2210.08457,6,0
573
+ 2212.11565,9,1
574
  2308.03282,3,1
575
+ 2305.02008,10,0
576
  2308.09391,4,0
577
+ 2307.16361,6,0
578
  2303.14027,3,0
579
  2208.13930,5,0
580
  2308.09040,6,0
581
  2306.15925,4,1
582
  2308.13783,7,0
583
+ 2308.10306,5,0
584
+ 2309.04581,6,4
585
  2301.04011,8,0
586
  2308.04699,5,0
587
  2308.09228,3,0
588
+ 2307.11077,9,1
589
+ 2309.03900,7,0
590
+ 2302.14416,6,0
591
  2303.09083,5,0
592
  2305.12961,2,0
593
  2308.12964,5,1
 
596
  2308.07648,5,0
597
  2303.09756,5,0
598
  2309.11593,2,0
599
+ 2303.08345,7,0
600
  2211.08217,4,0
601
  2308.14616,5,2
602
  2308.09717,3,0
 
619
  2303.08131,8,0
620
  2301.06309,9,0
621
  2307.11411,7,0
622
+ 2308.00301,5,0
623
  2309.08596,2,1
624
  2304.14401,4,0
625
  2303.12236,4,1
 
629
  2303.16874,2,0
630
  2303.16201,7,2
631
  2211.14512,7,0
632
+ 2308.04016,4,0
633
  2301.01928,3,0
634
+ 2304.06813,2,0
635
  2212.02469,9,0
636
  2308.04829,8,0
637
  2308.04163,4,0
638
  2206.08464,7,1
639
  2303.07811,4,1
640
  2304.03763,3,0
641
+ 2211.11682,8,0
642
+ 2303.08340,10,0
643
  2303.05072,5,2
644
  2307.09856,4,0
645
  2304.11342,7,0
646
  2307.16634,5,0
647
+ 2303.16203,5,1
648
  2308.07625,6,0
649
  2308.10599,5,0
650
  2308.12213,4,1
 
661
  2308.08137,7,1
662
  2211.11432,11,1
663
  2309.01151,2,0
664
+ 2001.05887,4,0
665
+ 2308.11793,8,1
666
  2304.11335,3,0
667
  2307.07944,5,0
668
  2303.17169,8,1
 
671
  2212.08653,11,0
672
  2211.12340,7,0
673
  2309.12042,7,0
674
+ 2304.08465,6,0
675
  2308.11778,4,0
676
  2305.10474,10,4
677
  2308.04808,8,0
 
682
  2303.17859,3,0
683
  2303.14389,4,0
684
  2308.10525,7,0
685
+ 2307.10776,6,0
686
  2307.14008,6,1
687
  2308.14575,8,0
688
  2303.13796,9,0
 
692
  2303.09472,8,0
693
  2302.05294,2,0
694
  2309.05281,3,0
695
+ 2306.05872,6,1
696
+ 2210.00939,4,2
697
  2306.09345,4,0
698
  2304.07090,3,0
699
  2303.09758,4,0
700
  2304.01172,8,0
701
  2308.10402,2,0
702
  2303.15435,5,1
703
+ 2308.12894,5,0
704
  2305.11173,7,3
705
  2308.07795,7,1
706
  2303.08084,3,1
 
710
  2304.02602,10,0
711
  2308.09922,5,0
712
  2211.10181,7,0
713
+ 2308.10916,2,0
714
  2304.10532,5,0
715
  2305.08455,13,2
716
  2309.07914,5,0
 
721
  2307.14611,5,0
722
  2307.16686,4,2
723
  2303.07274,7,1
724
+ 2308.05733,6,0
725
  2212.03741,8,0
726
  2303.13953,6,2
727
  2307.10947,4,0
728
  2211.13775,3,1
729
  2301.02229,7,0
730
  2307.12335,7,2
731
+ 2308.13989,4,0
732
  2306.05085,6,0
733
+ 2308.12288,2,1
734
+ 2308.11194,5,0
735
  2302.08958,5,0
736
  2303.13505,3,0
737
+ 2211.11248,10,0
738
  2308.14244,4,0
739
  2308.10809,2,0
740
  2308.00356,7,0
741
  2303.12384,6,0
742
  2308.04549,6,0
743
+ 2302.06833,8,0
744
  2307.08093,5,0
745
  2211.09809,5,0
746
  2210.01887,3,0
747
  2303.12077,10,0
748
+ 2303.11329,3,1
749
  2211.06897,7,0
750
  2303.11225,10,2
751
  2308.05986,2,0
 
768
  2212.00648,5,1
769
  2307.12463,7,0
770
  2309.12867,6,0
771
+ 2308.03906,8,1
772
  2308.10315,8,0
773
+ 2309.06703,3,1
774
  2306.03802,3,0
775
  2307.07929,9,0
776
  2309.03899,3,0
 
814
  2308.09694,6,0
815
  2308.10832,4,0
816
  2307.07245,4,0
817
+ 2303.08682,6,0
818
  2305.12833,4,0
819
  2212.04248,6,0
820
+ 2309.02041,5,1
821
  2308.09305,3,0
822
  2308.11025,3,0
823
  2303.10276,3,0
 
831
  2303.09410,6,0
832
  2308.09472,4,0
833
  2307.15644,9,1
834
+ 2212.08649,3,1
835
  2309.05098,12,0
836
  2303.07820,9,0
837
  2303.13233,6,0
 
855
  2307.08209,11,0
856
  2308.14713,5,0
857
  2308.09247,6,0
858
+ 2308.13077,5,0
859
  2307.14710,6,0
860
  2309.10431,7,0
861
  2303.12326,5,0
 
866
  2211.12542,7,0
867
  2303.06840,10,0
868
  2303.10070,7,0
869
+ 2303.09826,5,1
870
  2308.06712,6,0
871
  2304.01198,5,0
872
  2309.00216,4,0
 
881
  2211.07198,3,0
882
  2212.04761,6,0
883
  2308.11901,6,0
884
+ 2308.15226,6,2
885
  2304.14880,5,1
886
  2212.03434,5,0
887
  2306.11046,6,0
 
897
  2308.10694,5,1
898
  2211.10593,4,0
899
  2303.15256,4,1
900
+ 2303.08566,5,0
901
  2308.09383,4,0
902
  2307.14768,8,1
903
  2307.13459,3,0
904
+ 2304.01195,7,0
905
+ 2307.05463,8,2
906
  2307.12027,4,0
907
  2308.06777,6,0
908
  2308.09564,3,0
909
+ 2303.11579,8,1
910
  2211.11446,5,0
911
  2306.08330,2,0
912
  2308.03413,5,0
 
924
  2212.12712,8,0
925
  2308.13175,3,0
926
  2308.11073,4,0
927
+ 2303.11325,6,0
928
  2307.10235,6,0
929
  2308.07918,3,0
930
  2309.09301,8,0
 
939
  2309.13556,3,0
940
  2304.11409,5,0
941
  2303.11546,3,0
942
+ 2308.03685,9,1
943
  2308.02840,3,0
944
  2208.09833,5,0
945
  2211.11296,5,0
946
  2308.11874,5,0
947
  2308.00728,5,0
948
+ 2210.11006,4,0
949
  2309.05438,6,0
950
  2303.05367,9,1
951
  2207.11209,6,0
952
  2309.08690,2,0
953
+ 2308.14960,6,0
954
  2303.16975,5,1
955
  2304.11263,4,1
956
  2303.10594,5,0
 
959
  2303.12688,3,0
960
  2307.12972,7,0
961
  2309.09622,4,0
962
+ 2303.09535,7,1
963
  2303.04970,5,0
964
  2201.09636,6,3
965
+ 2308.13369,4,0
966
  2306.09346,4,0
967
  2304.02643,12,0
968
  2303.11003,3,0
 
980
  2309.08816,9,0
981
  2307.08908,6,0
982
  2308.10820,4,0
983
+ 2211.07091,6,0
984
  2307.15333,4,1
985
  2303.04557,4,0
986
  2309.07122,5,4
987
  2211.09703,7,0
988
+ 2204.11335,5,1
989
  2308.05410,2,0
990
  2210.00647,7,0
991
  2209.05407,6,1
 
996
  2308.16905,4,1
997
  2304.09479,3,0
998
  2307.08027,2,0
999
+ 2303.11306,5,1
1000
  2305.08552,5,0
1001
  2307.09362,6,0
1002
  2308.12866,8,0
 
1045
  2309.03809,4,0
1046
  2308.11911,5,0
1047
  2212.05946,7,0
1048
+ 2307.07250,3,0
1049
  2308.01045,5,0
1050
  2309.11133,5,0
1051
  2211.13579,5,0
 
1085
  2302.01392,4,0
1086
  2308.00376,4,0
1087
  2308.04383,8,0
1088
+ 2307.13770,7,0
1089
  2308.14221,4,0
1090
  2212.09748,2,0
1091
  2303.13005,6,1
 
1093
  2201.00785,8,0
1094
  2308.01236,6,0
1095
  2307.10816,7,0
1096
+ 2304.10528,5,0
1097
  2303.13593,3,0
1098
  2303.09941,2,0
1099
  2308.01194,11,0
1100
  2212.04085,6,0
1101
  2301.09637,7,0
1102
+ 2303.03991,10,0
1103
  2304.00058,5,0
1104
  2307.12577,6,0
1105
  2303.07543,4,0
 
1152
  2212.04105,5,0
1153
  2308.08463,5,0
1154
  2308.04556,7,1
1155
+ 2302.12066,7,0
1156
  2309.07910,3,0
1157
  2307.16687,5,0
1158
+ 2302.13848,6,0
1159
  2304.08483,6,0
1160
  2308.14083,3,0
1161
  2308.09711,5,1
 
1182
  2308.13236,4,0
1183
  2309.07911,7,0
1184
  2309.02527,9,0
1185
+ 2304.03752,9,0
1186
  2308.05438,5,0
1187
+ 2211.03989,7,1
1188
  2303.17559,9,0
1189
  2212.06486,6,0
1190
  2307.12907,5,0
 
1195
  2304.02626,5,0
1196
  2308.06112,5,0
1197
  2307.08249,4,1
1198
+ 2211.12131,7,0
1199
  2308.11015,11,0
1200
  2212.12977,6,0
1201
  2308.04061,3,0
 
1219
  2306.08637,8,0
1220
  2308.09891,4,0
1221
  2308.16825,7,1
1222
+ 2308.02752,4,0
1223
+ 2308.12370,6,1
1224
  2307.12964,6,0
1225
  2301.05221,6,0
1226
  2307.14392,9,0
1227
+ 2308.12383,5,0
1228
  2308.06692,7,0
1229
  2307.07928,5,0
1230
  2309.03173,7,0
 
1278
  2304.02639,3,0
1279
  2305.11676,8,0
1280
  2308.10147,8,0
1281
+ 2309.09310,9,0
1282
  2308.11130,6,0
1283
  2303.05309,10,0
1284
  2303.13501,2,0
1285
  2307.09763,3,1
1286
+ 2308.09244,5,0
1287
  2308.10445,3,0
1288
  2308.09618,3,0
1289
+ 2308.04206,6,0
1290
  2308.11662,3,0
1291
  2212.04385,7,0
1292
  2308.05911,3,1
1293
  2307.08114,2,0
1294
  2303.08135,5,0
1295
  2304.14104,2,0
1296
+ 2205.14865,5,0
1297
  2303.17959,6,1
1298
  2308.11357,6,0
1299
  2308.09903,4,0
 
1303
  2208.09418,4,0
1304
  2307.16508,7,0
1305
  2307.15860,8,0
1306
+ 2211.10955,5,0
1307
+ 2303.08983,7,0
1308
  2308.02897,5,0
1309
  2304.14310,2,1
1310
  2308.13133,9,0
 
1337
  2308.09303,4,0
1338
  2303.13439,7,1
1339
  2210.01208,6,0
1340
+ 2211.04894,9,1
1341
  2307.08383,8,0
1342
  2308.10174,6,0
1343
  2308.11186,6,0
 
1345
  2302.05361,7,0
1346
  2309.01590,2,1
1347
  2308.07209,5,0
1348
+ 2303.09551,6,0
1349
+ 2304.00967,7,0
1350
  2308.07391,3,0
1351
  2307.09356,5,0
1352
  2303.11722,5,0
 
1363
  2302.14325,7,0
1364
  2308.05985,6,0
1365
  2308.01483,6,0
1366
+ 2305.09275,6,0
1367
  2206.00309,5,1
1368
  2304.11705,4,1
1369
  2308.09281,6,0
1370
  2303.08942,8,0
1371
  2309.14291,3,0
1372
+ 2303.16058,7,0
1373
  2308.10447,4,1
1374
  2303.14189,5,0
1375
  2304.08965,2,0
 
1379
  2305.11167,5,0
1380
  2211.05776,8,0
1381
  2309.01093,4,0
1382
+ 2304.11762,6,0
1383
  2303.17209,6,0
1384
+ 2305.04966,4,2
1385
  2308.13504,3,1
1386
  2304.04321,12,0
1387
+ 2212.10621,9,0
1388
+ 2303.12786,3,0
1389
  2303.09735,6,1
1390
  2308.09322,4,0
1391
  2308.14816,2,1
1392
+ 2308.04622,5,0
1393
  2308.06072,3,0
1394
  2301.00794,4,0
1395
  2309.08644,4,0
 
1405
  2308.15074,5,0
1406
  2309.04422,4,0
1407
  2306.06362,9,0
1408
+ 2209.05534,7,0
paper_list.py CHANGED
@@ -1,13 +1,15 @@
 
 
1
  import pandas as pd
2
 
3
 
4
  class PaperList:
5
- def __init__(self) -> None:
6
  self.organization_name = "ICML2023"
7
  self.table = pd.read_json("papers.json").fillna("")
8
 
9
  claim_info = pd.read_csv("claim_info.csv", dtype={"arxiv_id": str, "n_authors": int, "n_linked_authors": int})
10
- self.table = self.table.merge(right=claim_info, on="arxiv_id", how="left")
11
  self.table[["n_authors", "n_linked_authors"]] = (
12
  self.table[["n_authors", "n_linked_authors"]].fillna(-1).astype(int)
13
  )
@@ -47,7 +49,7 @@ class PaperList:
47
  n_linked_authors = "" if row.n_linked_authors == -1 else row.n_linked_authors
48
  n_authors = "" if row.n_authors == -1 else row.n_authors
49
  claimed_paper = "" if n_linked_authors == "" else f"{n_linked_authors}/{n_authors} {author_linked}"
50
- new_row = f"""
51
  <tr>
52
  <td>{title}</td>
53
  <td>{row.authors}</td>
@@ -60,7 +62,7 @@ class PaperList:
60
  <td>{hf_dataset}</td>
61
  <td>{claimed_paper}</td>
62
  </tr>"""
63
- rows.append(new_row)
64
  self.table["html_table_content"] = rows
65
 
66
  def render(
@@ -111,8 +113,9 @@ class PaperList:
111
  @staticmethod
112
  def to_html(df: pd.DataFrame, table_header: str) -> str:
113
  table_data = "".join(df.html_table_content)
114
- return f"""
115
  <table>
116
  {table_header}
117
  {table_data}
118
  </table>"""
 
 
1
+ from __future__ import annotations
2
+
3
  import pandas as pd
4
 
5
 
6
  class PaperList:
7
+ def __init__(self):
8
  self.organization_name = "ICML2023"
9
  self.table = pd.read_json("papers.json").fillna("")
10
 
11
  claim_info = pd.read_csv("claim_info.csv", dtype={"arxiv_id": str, "n_authors": int, "n_linked_authors": int})
12
+ self.table = pd.merge(self.table, claim_info, on="arxiv_id", how="left")
13
  self.table[["n_authors", "n_linked_authors"]] = (
14
  self.table[["n_authors", "n_linked_authors"]].fillna(-1).astype(int)
15
  )
 
49
  n_linked_authors = "" if row.n_linked_authors == -1 else row.n_linked_authors
50
  n_authors = "" if row.n_authors == -1 else row.n_authors
51
  claimed_paper = "" if n_linked_authors == "" else f"{n_linked_authors}/{n_authors} {author_linked}"
52
+ row = f"""
53
  <tr>
54
  <td>{title}</td>
55
  <td>{row.authors}</td>
 
62
  <td>{hf_dataset}</td>
63
  <td>{claimed_paper}</td>
64
  </tr>"""
65
+ rows.append(row)
66
  self.table["html_table_content"] = rows
67
 
68
  def render(
 
113
  @staticmethod
114
  def to_html(df: pd.DataFrame, table_header: str) -> str:
115
  table_data = "".join(df.html_table_content)
116
+ html = f"""
117
  <table>
118
  {table_header}
119
  {table_data}
120
  </table>"""
121
+ return html
pyproject.toml DELETED
@@ -1,45 +0,0 @@
1
- [project]
2
- name = "iccv2023-papers"
3
- version = "0.1.0"
4
- description = ""
5
- readme = "README.md"
6
- requires-python = ">=3.10"
7
- dependencies = [
8
- "gradio>=5.9.1",
9
- ]
10
-
11
- [tool.ruff]
12
- line-length = 119
13
-
14
- [tool.ruff.lint]
15
- select = ["ALL"]
16
- ignore = [
17
- "COM812", # missing-trailing-comma
18
- "D203", # one-blank-line-before-class
19
- "D213", # multi-line-summary-second-line
20
- "E501", # line-too-long
21
- "SIM117", # multiple-with-statements
22
- ]
23
- extend-ignore = [
24
- "D100", # undocumented-public-module
25
- "D101", # undocumented-public-class
26
- "D102", # undocumented-public-method
27
- "D103", # undocumented-public-function
28
- "D104", # undocumented-public-package
29
- "D105", # undocumented-magic-method
30
- "D107", # undocumented-public-init
31
- "EM101", # raw-string-in-exception
32
- "FBT001", # boolean-type-hint-positional-argument
33
- "FBT002", # boolean-default-value-positional-argument
34
- "PD901", # pandas-df-variable-name
35
- "PGH003", # blanket-type-ignore
36
- "PLR0913", # too-many-arguments
37
- "PLR0915", # too-many-statements
38
- "TRY003", # raise-vanilla-args
39
- ]
40
- unfixable = [
41
- "F401", # unused-import
42
- ]
43
-
44
- [tool.ruff.format]
45
- docstring-code-format = true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
requirements.txt CHANGED
@@ -1,149 +1 @@
1
- # This file was autogenerated by uv via the following command:
2
- # uv pip compile pyproject.toml -o requirements.txt
3
- aiofiles==23.2.1
4
- # via gradio
5
- annotated-types==0.7.0
6
- # via pydantic
7
- anyio==4.7.0
8
- # via
9
- # gradio
10
- # httpx
11
- # starlette
12
- certifi==2024.12.14
13
- # via
14
- # httpcore
15
- # httpx
16
- # requests
17
- charset-normalizer==3.4.1
18
- # via requests
19
- click==8.1.8
20
- # via
21
- # typer
22
- # uvicorn
23
- exceptiongroup==1.2.2
24
- # via anyio
25
- fastapi==0.115.6
26
- # via gradio
27
- ffmpy==0.5.0
28
- # via gradio
29
- filelock==3.16.1
30
- # via huggingface-hub
31
- fsspec==2024.12.0
32
- # via
33
- # gradio-client
34
- # huggingface-hub
35
- gradio==5.9.1
36
- # via iccv2023-papers (pyproject.toml)
37
- gradio-client==1.5.2
38
- # via gradio
39
- h11==0.14.0
40
- # via
41
- # httpcore
42
- # uvicorn
43
- httpcore==1.0.7
44
- # via httpx
45
- httpx==0.28.1
46
- # via
47
- # gradio
48
- # gradio-client
49
- # safehttpx
50
- huggingface-hub==0.27.0
51
- # via
52
- # gradio
53
- # gradio-client
54
- idna==3.10
55
- # via
56
- # anyio
57
- # httpx
58
- # requests
59
- jinja2==3.1.5
60
- # via gradio
61
- markdown-it-py==3.0.0
62
- # via rich
63
- markupsafe==2.1.5
64
- # via
65
- # gradio
66
- # jinja2
67
- mdurl==0.1.2
68
- # via markdown-it-py
69
- numpy==2.2.1
70
- # via
71
- # gradio
72
- # pandas
73
- orjson==3.10.13
74
- # via gradio
75
- packaging==24.2
76
- # via
77
- # gradio
78
- # gradio-client
79
- # huggingface-hub
80
- pandas==2.2.2
81
- # via gradio
82
- pillow==11.0.0
83
- # via gradio
84
- pydantic==2.10.4
85
- # via
86
- # fastapi
87
- # gradio
88
- pydantic-core==2.27.2
89
- # via pydantic
90
- pydub==0.25.1
91
- # via gradio
92
- pygments==2.18.0
93
- # via rich
94
- python-dateutil==2.9.0.post0
95
- # via pandas
96
- python-multipart==0.0.20
97
- # via gradio
98
- pytz==2024.2
99
- # via pandas
100
- pyyaml==6.0.2
101
- # via
102
- # gradio
103
- # huggingface-hub
104
- requests==2.32.3
105
- # via huggingface-hub
106
- rich==13.9.4
107
- # via typer
108
- ruff==0.8.4
109
- # via gradio
110
- safehttpx==0.1.6
111
- # via gradio
112
- semantic-version==2.10.0
113
- # via gradio
114
- shellingham==1.5.4
115
- # via typer
116
- six==1.17.0
117
- # via python-dateutil
118
- sniffio==1.3.1
119
- # via anyio
120
- starlette==0.41.3
121
- # via
122
- # fastapi
123
- # gradio
124
- tomlkit==0.13.2
125
- # via gradio
126
- tqdm==4.67.1
127
- # via huggingface-hub
128
- typer==0.15.1
129
- # via gradio
130
- typing-extensions==4.12.2
131
- # via
132
- # anyio
133
- # fastapi
134
- # gradio
135
- # gradio-client
136
- # huggingface-hub
137
- # pydantic
138
- # pydantic-core
139
- # rich
140
- # typer
141
- # uvicorn
142
- tzdata==2024.2
143
- # via pandas
144
- urllib3==2.3.0
145
- # via requests
146
- uvicorn==0.34.0
147
- # via gradio
148
- websockets==14.1
149
- # via gradio-client
 
1
+ pandas==2.1.1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
style.css CHANGED
@@ -1,6 +1,5 @@
1
  h1 {
2
  text-align: center;
3
- display: block;
4
  }
5
 
6
  table a {
@@ -21,3 +20,8 @@ a:hover {
21
  table, th, td {
22
  border: 1px solid;
23
  }
 
 
 
 
 
 
1
  h1 {
2
  text-align: center;
 
3
  }
4
 
5
  table a {
 
20
  table, th, td {
21
  border: 1px solid;
22
  }
23
+
24
+ img#visitor-badge {
25
+ display: block;
26
+ margin: auto;
27
+ }
uv.lock DELETED
The diff for this file is too large to render. See raw diff