hysts HF staff commited on
Commit
08080f2
1 Parent(s): 0d74d62
Files changed (10) hide show
  1. .pre-commit-config.yaml +50 -0
  2. .style.yapf +5 -0
  3. .vscode/settings.json +18 -0
  4. LICENSE +21 -0
  5. README.md +1 -1
  6. app.py +14 -0
  7. papers.csv +795 -0
  8. papers.py +103 -0
  9. requirements.txt +4 -0
  10. style.css +19 -0
.pre-commit-config.yaml ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v4.2.0
4
+ hooks:
5
+ - id: check-executables-have-shebangs
6
+ - id: check-json
7
+ - id: check-merge-conflict
8
+ - id: check-shebang-scripts-are-executable
9
+ - id: check-toml
10
+ - id: check-yaml
11
+ - id: double-quote-string-fixer
12
+ - id: end-of-file-fixer
13
+ - id: mixed-line-ending
14
+ args: ["--fix=lf"]
15
+ - id: requirements-txt-fixer
16
+ - id: trailing-whitespace
17
+ - repo: https://github.com/myint/docformatter
18
+ rev: v1.4
19
+ hooks:
20
+ - id: docformatter
21
+ args: ["--in-place"]
22
+ - repo: https://github.com/pycqa/isort
23
+ rev: 5.12.0
24
+ hooks:
25
+ - id: isort
26
+ - repo: https://github.com/pre-commit/mirrors-mypy
27
+ rev: v0.991
28
+ hooks:
29
+ - id: mypy
30
+ args: ["--ignore-missing-imports"]
31
+ additional_dependencies: ["types-python-slugify", "types-requests"]
32
+ - repo: https://github.com/google/yapf
33
+ rev: v0.32.0
34
+ hooks:
35
+ - id: yapf
36
+ args: ["--parallel", "--in-place"]
37
+ - repo: https://github.com/kynan/nbstripout
38
+ rev: 0.6.0
39
+ hooks:
40
+ - id: nbstripout
41
+ args:
42
+ [
43
+ "--extra-keys",
44
+ "metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
45
+ ]
46
+ - repo: https://github.com/nbQA-dev/nbQA
47
+ rev: 1.7.0
48
+ hooks:
49
+ - id: nbqa-isort
50
+ - id: nbqa-yapf
.style.yapf ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ [style]
2
+ based_on_style = pep8
3
+ blank_line_before_nested_class_or_def = false
4
+ spaces_before_comment = 2
5
+ split_before_logical_operator = true
.vscode/settings.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "python.linting.enabled": true,
3
+ "python.linting.flake8Enabled": true,
4
+ "python.linting.pylintEnabled": false,
5
+ "python.linting.lintOnSave": true,
6
+ "python.formatting.provider": "yapf",
7
+ "python.formatting.yapfArgs": [
8
+ "--style={based_on_style: pep8, indent_width: 4, blank_line_before_nested_class_or_def: false, spaces_before_comment: 2, split_before_logical_operator: true}"
9
+ ],
10
+ "[python]": {
11
+ "editor.formatOnType": true,
12
+ "editor.codeActionsOnSave": {
13
+ "source.organizeImports": true
14
+ }
15
+ },
16
+ "editor.formatOnSave": true,
17
+ "files.insertFinalNewline": true
18
+ }
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2023 hysts
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 📊
4
  colorFrom: pink
5
  colorTo: pink
6
  sdk: gradio
7
- sdk_version: 3.40.1
8
  app_file: app.py
9
  pinned: false
10
  license: mit
 
4
  colorFrom: pink
5
  colorTo: pink
6
  sdk: gradio
7
+ sdk_version: 3.39.0
8
  app_file: app.py
9
  pinned: false
10
  license: mit
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+
3
+ import gradio as gr
4
+
5
+ from papers import PaperList, get_df
6
+
7
+ paper_list = PaperList(get_df('papers.csv'))
8
+
9
+ with gr.Blocks(css='style.css') as demo:
10
+ df = gr.Dataframe(value=paper_list.df_prettified,
11
+ datatype=paper_list.column_datatype,
12
+ type='pandas',
13
+ interactive=False)
14
+ demo.queue().launch()
papers.csv ADDED
@@ -0,0 +1,795 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ arxiv_id,published_at,github
2
+ 2305.03048,2023-05-04T17:59:36.000Z,https://github.com/ZrrSkywalker/Personalize-SAM
3
+ 2305.03043,2023-05-04T17:58:40.000Z,
4
+ 2305.02665,2023-05-04T09:18:05.000Z,
5
+ 2305.02549,2023-05-04T05:02:04.000Z,
6
+ 2305.02499,2023-05-04T02:09:43.000Z,
7
+ 2305.03049,2023-05-04T17:59:40.000Z,
8
+ 2305.03040,2023-05-04T17:58:05.000Z,
9
+ 2305.03027,2023-05-04T17:52:18.000Z,
10
+ 2305.02968,2023-05-04T16:12:19.000Z,https://github.com/facebookresearch/mtm
11
+ 2305.02678,2023-05-04T09:48:39.000Z,
12
+ 2305.03052,2023-05-04T17:59:58.000Z,
13
+ 2305.02790,2023-05-04T12:46:12.000Z,
14
+ 2305.02412,2023-05-03T20:11:22.000Z,
15
+ 2305.02783,2023-05-02T21:01:01.000Z,
16
+ 2305.02440,2023-05-03T21:51:42.000Z,
17
+ 2305.03047,2023-05-04T17:59:28.000Z,
18
+ 2305.02483,2023-05-04T01:12:35.000Z,
19
+ 2305.02463,2023-05-03T23:59:13.000Z,https://github.com/openai/shap-e
20
+ 2305.03111,2023-05-04T19:02:29.000Z,
21
+ 2305.03726,2023-05-05T17:59:46.000Z,
22
+ 2305.03695,2023-05-05T17:15:32.000Z,
23
+ 2305.03713,2023-05-05T17:54:34.000Z,
24
+ 2305.03668,2023-05-05T16:38:05.000Z,
25
+ 2305.03286,2023-05-05T05:02:41.000Z,
26
+ 2305.03689,2023-05-05T17:00:16.000Z,
27
+ 2305.03210,2023-05-04T23:46:49.000Z,
28
+ 2305.03719,2023-05-04T03:29:07.000Z,
29
+ 2305.03514,2023-04-12T17:33:28.000Z,
30
+ 2305.03509,2023-05-04T16:14:43.000Z,
31
+ 2305.04091,2023-05-06T16:34:37.000Z,https://github.com/AGI-Edgerunners/Plan-and-Solve-Prompting
32
+ 2305.04789,2023-05-08T15:43:00.000Z,
33
+ 2305.04268,2023-05-07T13:11:07.000Z,
34
+ 2305.04241,2023-05-07T10:32:18.000Z,
35
+ 2305.04790,2023-05-08T15:45:42.000Z,https://github.com/open-mmlab/Multimodal-GPT
36
+ 2305.04388,2023-05-07T22:44:25.000Z,
37
+ 2305.03981,2023-05-06T09:02:10.000Z,
38
+ 2305.03937,2023-05-06T05:35:14.000Z,
39
+ 2305.04160,2023-05-07T02:25:42.000Z,
40
+ 2305.04745,2023-05-08T14:46:28.000Z,
41
+ 2305.04461,2023-05-08T05:07:23.000Z,
42
+ 2305.04391,2023-05-07T23:00:47.000Z,
43
+ 2305.05662,2023-05-09T17:58:34.000Z,https://github.com/OpenGVLab/InternChat
44
+ 2305.05591,2023-05-09T16:28:07.000Z,
45
+ 2304.09355,2023-04-19T00:33:59.000Z,
46
+ 2305.05432,2023-05-09T13:20:59.000Z,
47
+ 2305.04966,2023-05-08T18:02:11.000Z,
48
+ 2305.05065,2023-05-08T21:48:17.000Z,
49
+ 2305.05658,2023-05-09T17:52:59.000Z,
50
+ 2305.05383,2023-05-08T10:00:05.000Z,
51
+ 2305.05364,2023-05-09T11:55:36.000Z,
52
+ 2305.05644,2023-05-09T17:42:34.000Z,
53
+ 2305.05176,2023-05-09T05:11:02.000Z,
54
+ 2305.05189,2023-05-09T05:48:38.000Z,
55
+ 2305.06161,2023-05-09T08:16:42.000Z,
56
+ 2305.06355,2023-05-10T17:59:04.000Z,https://github.com/OpenGVLab/Ask-Anything
57
+ 2305.06356,2023-05-10T17:59:55.000Z,
58
+ 2305.06351,2023-05-10T17:56:21.000Z,
59
+ 2305.05706,2023-05-09T18:30:58.000Z,
60
+ 2305.06131,2023-05-10T13:26:08.000Z,
61
+ 2305.06324,2023-05-10T17:22:06.000Z,
62
+ 2305.06218,2023-05-08T22:42:48.000Z,
63
+ 2305.05973,2023-05-10T08:30:31.000Z,
64
+ 2305.05862,2023-05-10T03:13:54.000Z,
65
+ 2305.05845,2023-05-10T02:33:25.000Z,
66
+ 2305.06077,2023-05-10T11:57:49.000Z,
67
+ 2305.06908,2023-05-11T15:51:46.000Z,
68
+ 2305.07017,2023-05-11T17:56:09.000Z,https://github.com/UCSC-VLAA/CLIPA
69
+ 2305.07011,2023-05-11T17:53:29.000Z,
70
+ 2305.07015,2023-05-11T17:55:25.000Z,
71
+ 2305.06456,2023-05-10T20:51:37.000Z,
72
+ 2305.07027,2023-05-11T17:59:41.000Z,https://github.com/microsoft/Cream/tree/main/EfficientViT
73
+ 2305.07021,2023-05-11T17:58:17.000Z,
74
+ 2305.07004,2023-05-11T17:44:17.000Z,
75
+ 2305.06555,2023-05-11T04:19:08.000Z,https://github.com/AlibabaResearch/DAMO-ConvAI/tree/main/diana
76
+ 2305.06500,2023-05-11T00:38:10.000Z,https://github.com/salesforce/LAVIS/tree/main/projects
77
+ 2305.06474,2023-05-10T21:43:42.000Z,
78
+ 2305.06404,2023-05-10T18:26:42.000Z,
79
+ 2305.06575,2023-05-11T05:19:47.000Z,
80
+ 2305.06424,2023-05-10T19:09:24.000Z,https://github.com/hongwang600/FLAIR
81
+ 2305.06594,2023-05-11T06:26:41.000Z,
82
+ 2305.07185,2023-05-12T00:55:41.000Z,
83
+ 2305.07440,2023-05-11T11:55:16.000Z,
84
+ 2305.07153,2023-05-11T21:54:30.000Z,
85
+ 2305.07558,2023-05-12T15:34:20.000Z,
86
+ 2305.07615,2023-05-12T17:08:47.000Z,https://github.com/griff4692/calibrating-summaries
87
+ 2305.07514,2023-05-12T14:30:07.000Z,
88
+ 2305.07447,2023-05-11T16:41:55.000Z,https://github.com/bytedance/uss
89
+ 2305.07214,2023-05-12T03:05:40.000Z,https://github.com/facebookresearch/MMG_Ego4D
90
+ 2305.07378,2023-05-12T11:09:49.000Z,
91
+ 2305.07490,2023-05-12T14:04:30.000Z,
92
+ 2305.07243,2023-05-12T04:19:49.000Z,https://github.com/neonbjb/tortoise-tts
93
+ 2305.07759,2023-05-12T20:56:48.000Z,
94
+ 2305.08596,2023-05-15T12:23:10.000Z,
95
+ 2305.08810,2023-05-15T17:16:46.000Z,
96
+ 2305.07961,2023-05-13T16:40:07.000Z,
97
+ 2305.07922,2023-05-13T14:23:07.000Z,
98
+ 2305.08675,2023-05-15T14:31:49.000Z,
99
+ 2305.08809,2023-05-15T17:15:40.000Z,
100
+ 2305.08677,2023-05-15T14:35:00.000Z,
101
+ 2305.08298,2023-05-15T01:59:58.000Z,
102
+ 2305.08275,2023-05-14T23:14:09.000Z,https://github.com/salesforce/ULIP
103
+ 2305.07804,2023-05-12T23:49:23.000Z,
104
+ 2305.07677,2023-05-11T22:44:43.000Z,
105
+ 2305.08844,2023-05-15T17:57:16.000Z,
106
+ 2305.07969,2023-05-13T17:12:11.000Z,
107
+ 2305.08848,2023-05-15T17:59:01.000Z,
108
+ 2305.08850,2023-05-15T17:59:03.000Z,
109
+ 2305.08379,2023-05-15T06:33:45.000Z,
110
+ 2305.09641,2023-05-16T17:42:45.000Z,
111
+ 2305.09617,2023-05-16T17:11:29.000Z,
112
+ 2305.09137,2023-05-16T03:38:06.000Z,https://github.com/thu-coai/PICL
113
+ 2305.09636,2023-05-16T17:41:25.000Z,
114
+ 2305.08891,2023-05-15T12:21:08.000Z,
115
+ 2305.09253,2023-05-16T08:03:07.000Z,https://github.com/drimpossible/ACM
116
+ 2305.09664,2023-05-16T17:59:26.000Z,
117
+ 2305.09148,2023-05-16T03:53:30.000Z,https://github.com/ChillingDream/DAP
118
+ 2305.09515,2023-05-16T15:10:22.000Z,
119
+ 2305.09662,2023-05-16T17:58:43.000Z,
120
+ 2305.09857,2023-05-17T00:05:24.000Z,
121
+ 2305.10425,2023-05-17T17:57:10.000Z,
122
+ 2305.09863,2023-05-17T00:29:18.000Z,
123
+ 2305.10403,2023-05-17T17:46:53.000Z,
124
+ 2305.09975,2023-05-17T06:15:41.000Z,https://github.com/microsoft/SmartWordSuggestions
125
+ 2305.09761,2023-05-16T19:27:17.000Z,https://github.com/javieryu/nerf_bridge
126
+ 2305.10320,2023-05-17T16:01:27.000Z,
127
+ 2305.10018,2023-05-17T07:51:35.000Z,
128
+ 2305.10429,2023-05-17T17:58:13.000Z,
129
+ 2305.10266,2023-05-17T14:58:06.000Z,
130
+ 2305.10142,2023-05-17T11:55:32.000Z,
131
+ 2305.10005,2023-05-17T07:23:46.000Z,
132
+ 2305.09764,2023-05-16T19:31:18.000Z,
133
+ 2305.09758,2023-05-16T19:13:11.000Z,
134
+ 2305.10400,2023-05-17T17:43:38.000Z,
135
+ 2305.10431,2023-05-17T17:59:55.000Z,https://github.com/mit-han-lab/fastcomposer
136
+ 2305.10973,2023-05-18T13:41:25.000Z,
137
+ 2305.10764,2023-05-18T07:07:19.000Z,
138
+ 2305.10763,2023-05-18T07:07:04.000Z,
139
+ 2305.11171,2023-05-18T17:58:35.000Z,
140
+ 2305.10434,2023-05-11T17:45:16.000Z,
141
+ 2305.10601,2023-05-17T23:16:17.000Z,https://github.com/ysymyth/tree-of-thought-llm
142
+ 2305.10855,2023-05-18T10:16:19.000Z,
143
+ 2305.11173,2023-05-18T17:59:10.000Z,
144
+ 2305.11000,2023-05-18T14:23:25.000Z,
145
+ 2305.11129,2023-05-18T17:22:53.000Z,
146
+ 2305.10912,2023-05-18T12:14:49.000Z,
147
+ 2305.11175,2023-05-18T17:59:42.000Z,
148
+ 2305.10688,2023-05-18T03:58:19.000Z,
149
+ 2305.11147,2023-05-18T17:41:34.000Z,
150
+ 2305.10874,2023-05-18T11:06:15.000Z,
151
+ 2305.10853,2023-05-18T10:15:06.000Z,
152
+ 2305.10841,2023-05-18T09:53:23.000Z,
153
+ 2305.10722,2023-05-18T05:41:36.000Z,
154
+ 2305.10474,2023-05-17T17:59:16.000Z,
155
+ 2305.11206,2023-05-18T17:45:22.000Z,
156
+ 2305.11870,2023-05-19T17:59:18.000Z,
157
+ 2305.11854,2023-05-19T17:44:34.000Z,
158
+ 2305.11588,2023-05-19T10:58:04.000Z,
159
+ 2305.11694,2023-05-19T14:19:32.000Z,
160
+ 2305.11841,2023-05-19T17:33:38.000Z,
161
+ 2305.11834,2023-05-19T17:20:56.000Z,
162
+ 2305.11863,2023-05-19T17:53:03.000Z,
163
+ 2305.11840,2023-05-19T17:30:19.000Z,
164
+ 2305.11778,2023-05-19T16:14:07.000Z,
165
+ 2305.11759,2023-05-19T15:45:29.000Z,
166
+ 2305.11738,2023-05-19T15:19:44.000Z,
167
+ 2305.11598,2023-05-19T11:20:37.000Z,
168
+ 2305.11541,2023-05-19T09:23:25.000Z,
169
+ 2305.11364,2023-05-19T00:53:45.000Z,
170
+ 2305.11308,2023-05-18T21:10:58.000Z,
171
+ 2305.11243,2023-05-18T18:15:43.000Z,
172
+ 2305.11837,2023-05-19T17:25:54.000Z,
173
+ 2305.11846,2023-05-19T17:38:32.000Z,
174
+ 2305.11675,2023-05-19T13:44:25.000Z,
175
+ 2305.11337,2023-05-18T22:57:57.000Z,
176
+ 2305.13077,2023-05-22T14:48:53.000Z,https://github.com/YBYBZhang/ControlVideo
177
+ 2305.13301,2023-05-22T17:57:41.000Z,
178
+ 2305.13048,2023-05-22T13:57:41.000Z,
179
+ 2305.13050,2023-05-22T14:02:44.000Z,
180
+ 2305.13009,2023-05-22T13:12:16.000Z,
181
+ 2305.12487,2023-05-21T15:42:41.000Z,
182
+ 2305.12050,2023-05-20T00:45:15.000Z,
183
+ 2305.12001,2023-05-19T20:58:22.000Z,
184
+ 2305.11938,2023-05-19T18:00:03.000Z,
185
+ 2305.13304,2023-05-22T17:58:10.000Z,https://github.com/aiwaves-cn/RecurrentGPT
186
+ 2305.14314,2023-05-23T17:50:33.000Z,
187
+ 2305.14201,2023-05-23T16:20:30.000Z,
188
+ 2305.14233,2023-05-23T16:49:14.000Z,https://github.com/thunlp/UltraChat
189
+ 2305.13840,2023-05-23T09:03:19.000Z,
190
+ 2305.13579,2023-05-23T01:14:53.000Z,
191
+ 2305.13786,2023-05-23T07:54:37.000Z,https://github.com/deepmind/perception_test
192
+ 2305.13735,2023-05-23T06:41:16.000Z,
193
+ 2305.13534,2023-05-22T23:14:28.000Z,
194
+ 2305.15038,2023-05-24T11:26:59.000Z,
195
+ 2305.14878,2023-05-24T08:30:05.000Z,
196
+ 2305.14564,2023-05-23T23:06:04.000Z,
197
+ 2305.14540,2023-05-23T21:50:06.000Z,
198
+ 2305.16213,2023-05-25T16:19:18.000Z,
199
+ 2305.16291,2023-05-25T17:46:38.000Z,
200
+ 2305.15798,2023-05-25T07:28:28.000Z,
201
+ 2305.15779,2023-05-25T06:46:28.000Z,
202
+ 2305.15719,2023-05-25T05:02:35.000Z,
203
+ 2305.15586,2023-05-24T21:42:45.000Z,
204
+ 2305.15581,2023-05-24T21:34:34.000Z,
205
+ 2305.15717,2023-05-25T05:00:12.000Z,
206
+ 2305.15486,2023-05-24T18:14:35.000Z,
207
+ 2305.16765,2023-05-26T09:26:23.000Z,
208
+ 2305.16355,2023-05-25T04:16:07.000Z,
209
+ 2305.16338,2023-05-24T01:20:22.000Z,
210
+ 2305.17098,2023-05-26T17:13:55.000Z,
211
+ 2305.16334,2023-05-23T09:36:51.000Z,https://github.com/oladata-team/OlaGPT
212
+ 2305.16311,2023-05-25T17:59:04.000Z,
213
+ 2305.16843,2023-05-26T11:47:52.000Z,
214
+ 2305.16704,2023-05-26T07:47:21.000Z,
215
+ 2305.16380,2023-05-25T15:59:13.000Z,
216
+ 2305.16999,2023-05-26T14:59:16.000Z,
217
+ 2305.16960,2023-05-26T14:17:36.000Z,
218
+ 2305.16958,2023-05-26T14:14:51.000Z,https://github.com/bloomberg/mixce-acl2023
219
+ 2305.16806,2023-05-26T10:38:31.000Z,
220
+ 2305.16635,2023-05-26T05:19:24.000Z,
221
+ 2305.16367,2023-05-25T11:36:52.000Z,
222
+ 2305.16349,2023-05-24T19:10:46.000Z,
223
+ 2305.17066,2023-05-26T16:21:25.000Z,
224
+ 2305.16411,2023-05-25T18:23:20.000Z,
225
+ 2305.16381,2023-05-25T17:35:38.000Z,
226
+ 2305.17126,2023-05-26T17:50:11.000Z,
227
+ 2305.16867,2023-05-26T12:17:59.000Z,
228
+ 2305.18295,2023-05-29T17:59:41.000Z,
229
+ 2305.17216,2023-05-26T19:22:03.000Z,
230
+ 2305.18274,2023-05-29T17:49:00.000Z,
231
+ 2305.17144,2023-05-25T17:59:49.000Z,https://github.com/OpenGVLab/GITM
232
+ 2305.17306,2023-05-26T23:46:42.000Z,
233
+ 2305.17333,2023-05-27T02:28:10.000Z,
234
+ 2305.18264,2023-05-29T17:38:18.000Z,https://github.com/G-U-N/Gen-L-Video
235
+ 2305.18247,2023-05-29T17:11:39.000Z,
236
+ 2305.18231,2023-05-26T17:16:16.000Z,
237
+ 2305.18292,2023-05-29T17:58:16.000Z,
238
+ 2305.18286,2023-05-29T17:56:13.000Z,
239
+ 2305.18259,2023-05-29T17:27:59.000Z,
240
+ 2305.18098,2023-05-29T14:07:52.000Z,
241
+ 2305.17493,2023-05-27T15:10:41.000Z,
242
+ 2305.17390,2023-05-27T07:04:15.000Z,
243
+ 2305.17359,2023-05-27T03:58:29.000Z,https://github.com/Xianjun-Yang/DNA-GPT
244
+ 2305.19164,2023-05-30T16:09:16.000Z,
245
+ 2305.19012,2023-05-30T13:09:21.000Z,
246
+ 2305.18752,2023-05-30T05:27:21.000Z,https://github.com/StevenGrove/GPT4Tools
247
+ 2305.18802,2023-05-30T07:30:21.000Z,
248
+ 2305.19245,2023-05-30T17:32:12.000Z,
249
+ 2305.18415,2023-05-28T18:48:50.000Z,
250
+ 2305.19234,2023-05-30T17:26:01.000Z,
251
+ 2305.18654,2023-05-29T23:24:14.000Z,
252
+ 2305.18565,2023-05-29T18:58:38.000Z,
253
+ 2305.18373,2023-05-28T04:49:01.000Z,
254
+ 2305.18766,2023-05-30T05:56:58.000Z,
255
+ 2305.18474,2023-05-29T10:41:28.000Z,
256
+ 2305.19066,2023-05-30T14:28:43.000Z,
257
+ 2305.18729,2023-05-30T04:09:47.000Z,
258
+ 2305.18583,2023-05-29T19:56:47.000Z,
259
+ 2305.18365,2023-05-27T14:17:33.000Z,
260
+ 2305.20030,2023-05-31T17:00:31.000Z,
261
+ 2305.20081,2023-05-31T17:55:21.000Z,https://github.com/sail-sg/edp
262
+ 2305.20091,2023-05-31T17:59:52.000Z,
263
+ 2305.19452,2023-05-30T23:23:25.000Z,https://github.com/google-research/google-research/tree/master/bigger_better_faster
264
+ 2305.20088,2023-05-31T17:59:04.000Z,https://github.com/LijieFan/LaCLIP
265
+ 2305.20010,2023-05-31T16:32:22.000Z,
266
+ 2305.19835,2023-05-31T13:23:04.000Z,
267
+ 2305.19472,2023-05-31T00:55:40.000Z,
268
+ 2305.19370,2023-05-30T19:25:51.000Z,
269
+ 2305.20086,2023-05-31T17:58:02.000Z,
270
+ 2305.20082,2023-05-31T17:55:28.000Z,
271
+ 2306.00980,2023-06-01T17:59:25.000Z,
272
+ 2306.00739,2023-05-26T21:39:05.000Z,
273
+ 2306.00378,2023-06-01T06:19:33.000Z,
274
+ 2306.00238,2023-05-31T23:18:21.000Z,https://github.com/apple/ml-cvnets/tree/main/examples
275
+ 2306.00983,2023-06-01T17:59:51.000Z,
276
+ 2306.00890,2023-06-01T16:50:07.000Z,
277
+ 2306.00637,2023-06-01T13:00:53.000Z,
278
+ 2306.00966,2023-06-01T17:57:08.000Z,
279
+ 2306.00984,2023-06-01T17:59:51.000Z,
280
+ 2306.00971,2023-06-01T17:58:44.000Z,
281
+ 2306.00956,2023-06-01T17:51:22.000Z,
282
+ 2306.00926,2023-06-01T17:30:24.000Z,
283
+ 2306.00148,2023-05-31T19:38:12.000Z,
284
+ 2306.00008,2023-05-29T18:42:01.000Z,
285
+ 2306.00802,2023-06-01T15:30:33.000Z,
286
+ 2306.00107,2023-05-31T18:27:43.000Z,https://github.com/yizhilll/MERT
287
+ 2306.00029,2023-05-31T05:24:48.000Z,
288
+ 2306.00110,2023-05-31T18:34:16.000Z,
289
+ 2306.00943,2023-06-01T17:43:27.000Z,
290
+ 2306.00986,2023-06-01T17:59:56.000Z,
291
+ 2306.00964,2023-06-01T17:55:32.000Z,
292
+ 2306.00622,2023-06-01T12:45:53.000Z,
293
+ 2306.01116,2023-06-01T20:03:56.000Z,
294
+ 2306.01567,2023-06-02T14:23:59.000Z,https://github.com/SysCV/SAM-HQ
295
+ 2306.01693,2023-06-02T17:11:37.000Z,
296
+ 2306.01694,2023-06-02T17:12:25.000Z,
297
+ 2306.01736,2023-06-02T17:59:24.000Z,
298
+ 2306.01684,2023-06-02T16:59:36.000Z,
299
+ 2306.01242,2023-06-02T02:42:58.000Z,
300
+ 2306.01160,2023-06-01T21:33:59.000Z,
301
+ 2306.01061,2023-06-01T18:08:51.000Z,
302
+ 2306.01337,2023-06-02T08:02:15.000Z,
303
+ 2306.02707,2023-06-05T08:58:39.000Z,
304
+ 2306.02254,2023-06-04T04:04:04.000Z,
305
+ 2306.02858,2023-06-05T13:17:27.000Z,https://github.com/DAMO-NLP-SG/Video-LLaMA
306
+ 2306.02561,2023-06-05T03:32:26.000Z,
307
+ 2306.03038,2023-06-05T16:53:58.000Z,
308
+ 2306.03082,2023-06-05T17:55:22.000Z,https://github.com/Lichang-Chen/InstructZero
309
+ 2306.01741,2023-05-10T10:14:16.000Z,
310
+ 2306.02982,2023-06-05T15:53:15.000Z,
311
+ 2306.03024,2023-06-05T16:44:27.000Z,
312
+ 2306.03092,2023-06-05T17:59:57.000Z,
313
+ 2306.01841,2023-06-02T18:01:02.000Z,https://github.com/facebookresearch/Ternary_Binary_Transformer
314
+ 2306.03083,2023-06-05T17:55:52.000Z,
315
+ 2306.02531,2023-06-05T01:36:39.000Z,
316
+ 2306.01923,2023-06-02T21:26:20.000Z,
317
+ 2306.02245,2023-06-04T03:09:21.000Z,https://github.com/DYZhang09/SAM3D
318
+ 2306.01879,2023-06-02T19:19:43.000Z,
319
+ 2306.01872,2023-06-02T19:00:17.000Z,
320
+ 2306.01754,2023-05-23T01:21:55.000Z,
321
+ 2306.03514,2023-06-06T09:00:10.000Z,
322
+ 2306.03881,2023-06-06T17:33:19.000Z,
323
+ 2306.03504,2023-06-06T08:50:13.000Z,
324
+ 2306.03509,2023-06-06T08:54:49.000Z,
325
+ 2306.03460,2023-06-06T07:28:49.000Z,
326
+ 2306.03203,2023-06-05T19:23:34.000Z,
327
+ 2306.03872,2023-06-06T17:18:56.000Z,https://github.com/lz1oceani/verify_cot
328
+ 2306.03802,2023-06-06T15:45:53.000Z,
329
+ 2306.03819,2023-06-06T16:07:24.000Z,https://github.com/EleutherAI/concept-erasure
330
+ 2306.03438,2023-06-06T06:35:27.000Z,
331
+ 2306.04387,2023-06-07T12:35:37.000Z,
332
+ 2306.04050,2023-06-06T22:42:00.000Z,
333
+ 2306.04619,2023-06-07T17:47:50.000Z,
334
+ 2306.04235,2023-06-07T08:25:51.000Z,https://github.com/zjersey/Lightseq-ARM
335
+ 2306.04528,2023-06-07T15:37:00.000Z,https://github.com/microsoft/promptbench
336
+ 2306.04362,2023-06-07T11:52:36.000Z,
337
+ 2306.04632,2023-06-07T17:56:02.000Z,https://github.com/buxiangzhiren/Asymmetric_VQGAN
338
+ 2306.04634,2023-06-07T17:58:48.000Z,
339
+ 2306.04140,2023-06-07T04:27:09.000Z,
340
+ 2306.04076,2023-06-07T00:33:02.000Z,
341
+ 2306.04031,2023-06-06T21:49:00.000Z,
342
+ 2306.04009,2023-06-06T20:45:18.000Z,
343
+ 2306.05284,2023-06-08T15:31:05.000Z,https://github.com/facebookresearch/audiocraft
344
+ 2306.05422,2023-06-08T17:59:29.000Z,
345
+ 2306.05399,2023-06-08T17:51:58.000Z,https://github.com/SHI-Labs/Matting-Anything
346
+ 2306.05424,2023-06-08T17:59:56.000Z,https://github.com/mbzuai-oryx/Video-ChatGPT
347
+ 2306.05087,2023-06-08T10:41:56.000Z,https://github.com/WeOpenML/PandaLM
348
+ 2306.04757,2023-06-07T20:12:29.000Z,https://github.com/declare-lab/instruct-eval
349
+ 2306.05428,2023-06-08T17:59:59.000Z,
350
+ 2306.05178,2023-06-08T13:18:23.000Z,
351
+ 2306.05425,2023-06-08T17:59:56.000Z,
352
+ 2306.04707,2023-06-07T18:19:46.000Z,
353
+ 2306.04751,2023-06-07T19:59:23.000Z,https://github.com/allenai/open-instruct
354
+ 2306.05410,2023-06-08T17:56:22.000Z,
355
+ 2306.05357,2023-06-08T17:02:15.000Z,
356
+ 2306.04822,2023-06-07T23:06:53.000Z,
357
+ 2306.05392,2023-06-08T17:45:14.000Z,
358
+ 2306.04845,2023-06-08T00:35:36.000Z,
359
+ 2306.05420,2023-06-08T17:59:08.000Z,https://github.com/google-research/spherical-cnn
360
+ 2306.05411,2023-06-08T17:56:46.000Z,https://github.com/facebookresearch/r-mae
361
+ 2306.05427,2023-06-08T17:59:59.000Z,
362
+ 2306.06070,2023-06-09T17:44:31.000Z,
363
+ 2306.05544,2023-06-08T20:30:55.000Z,
364
+ 2306.06044,2023-06-09T17:12:35.000Z,
365
+ 2306.05949,2023-06-09T15:05:13.000Z,
366
+ 2306.05836,2023-06-09T12:09:15.000Z,https://github.com/causalNLP/corr2cause
367
+ 2306.05685,2023-06-09T05:55:52.000Z,
368
+ 2306.05493,2023-06-08T18:31:56.000Z,
369
+ 2306.06092,2023-06-09T17:52:34.000Z,
370
+ 2306.05696,2023-06-09T06:34:09.000Z,
371
+ 2306.06189,2023-06-09T18:41:37.000Z,https://github.com/NVlabs/FasterViT
372
+ 2306.07179,2023-06-12T15:21:02.000Z,
373
+ 2306.07280,2023-06-12T17:59:23.000Z,
374
+ 2306.07174,2023-06-12T15:13:39.000Z,
375
+ 2306.06638,2023-06-11T09:52:03.000Z,
376
+ 2306.07279,2023-06-12T17:59:03.000Z,
377
+ 2306.06546,2023-06-11T00:13:00.000Z,
378
+ 2306.06212,2023-06-09T19:24:39.000Z,
379
+ 2306.07075,2023-06-12T12:40:48.000Z,
380
+ 2306.07042,2023-06-12T11:41:42.000Z,
381
+ 2306.07196,2023-06-12T15:52:02.000Z,
382
+ 2306.06823,2023-06-12T02:22:30.000Z,
383
+ 2306.07954,2023-06-13T17:52:23.000Z,
384
+ 2306.07967,2023-06-13T17:59:32.000Z,https://github.com/Arnav0400/ViT-Slim/tree/master/GLoRA
385
+ 2306.07476,2023-06-13T00:43:47.000Z,
386
+ 2306.07906,2023-06-13T16:57:53.000Z,https://github.com/THUDM/WebGLM
387
+ 2306.07536,2023-06-13T04:37:00.000Z,https://github.com/HazyResearch/TART
388
+ 2306.07915,2023-06-13T17:18:01.000Z,
389
+ 2306.07349,2023-06-06T17:59:10.000Z,
390
+ 2306.07580,2023-06-13T07:09:11.000Z,
391
+ 2306.07970,2023-06-13T17:59:58.000Z,
392
+ 2306.07968,2023-06-13T17:59:57.000Z,
393
+ 2306.07473,2023-06-13T00:38:51.000Z,
394
+ 2306.07944,2023-06-08T22:33:22.000Z,
395
+ 2306.07969,2023-06-13T17:59:58.000Z,
396
+ 2306.07552,2023-06-13T05:53:23.000Z,
397
+ 2306.07437,2023-06-12T21:45:18.000Z,
398
+ 2306.07941,2023-06-09T15:47:22.000Z,
399
+ 2306.07946,2023-06-02T14:47:56.000Z,
400
+ 2306.08276,2023-06-14T06:25:58.000Z,
401
+ 2306.09348,2023-06-15T17:59:59.000Z,
402
+ 2306.08640,2023-06-14T17:12:56.000Z,
403
+ 2306.08568,2023-06-14T15:18:48.000Z,https://github.com/nlpxucan/WizardLM
404
+ 2306.09296,2023-06-15T17:20:46.000Z,
405
+ 2306.08543,2023-06-14T14:44:03.000Z,
406
+ 2306.08161,2023-06-13T22:19:53.000Z,
407
+ 2306.09329,2023-06-15T17:58:21.000Z,
408
+ 2306.09093,2023-06-15T12:45:25.000Z,
409
+ 2306.08205,2023-06-14T02:13:25.000Z,
410
+ 2306.08647,2023-06-14T17:27:10.000Z,
411
+ 2306.08997,2023-06-15T09:48:14.000Z,
412
+ 2306.09316,2023-06-15T17:51:28.000Z,
413
+ 2306.08620,2023-06-14T16:27:53.000Z,
414
+ 2306.09200,2023-06-15T15:35:31.000Z,https://github.com/waterhorse1/ChessGPT
415
+ 2306.09327,2023-06-15T17:58:01.000Z,
416
+ 2306.08893,2023-06-15T06:53:05.000Z,
417
+ 2306.08068,2023-06-13T18:32:35.000Z,
418
+ 2306.08707,2023-06-14T19:15:49.000Z,
419
+ 2306.09349,2023-06-15T17:59:59.000Z,
420
+ 2306.09109,2023-06-15T13:11:30.000Z,
421
+ 2306.08133,2023-06-13T20:54:12.000Z,
422
+ 2306.08129,2023-06-13T20:50:22.000Z,
423
+ 2306.09322,2023-06-15T17:56:04.000Z,
424
+ 2306.08651,2023-06-14T17:30:57.000Z,
425
+ 2306.08055,2023-06-13T18:22:24.000Z,
426
+ 2306.10012,2023-06-16T17:58:58.000Z,
427
+ 2306.09782,2023-06-16T11:37:15.000Z,
428
+ 2306.09896,2023-06-16T15:13:17.000Z,
429
+ 2306.09864,2023-06-16T14:18:51.000Z,
430
+ 2306.10007,2023-06-16T17:58:10.000Z,
431
+ 2306.09683,2023-06-16T08:27:46.000Z,
432
+ 2306.09539,2023-06-15T22:48:08.000Z,
433
+ 2306.09479,2023-06-15T20:11:23.000Z,
434
+ 2306.09682,2023-06-16T08:26:57.000Z,
435
+ 2306.09635,2023-06-16T05:42:01.000Z,
436
+ 2306.09442,2023-06-15T18:49:50.000Z,
437
+ 2306.09557,2023-06-16T00:19:14.000Z,
438
+ 2306.11644,2023-06-20T16:14:25.000Z,
439
+ 2306.10900,2023-06-19T12:58:17.000Z,
440
+ 2306.11565,2023-06-20T14:30:32.000Z,
441
+ 2306.10998,2023-06-19T15:05:31.000Z,
442
+ 2306.11698,2023-06-20T17:24:23.000Z,
443
+ 2306.10533,2023-06-18T11:51:46.000Z,
444
+ 2306.10231,2023-06-17T01:54:25.000Z,
445
+ 2306.11706,2023-06-20T17:35:20.000Z,
446
+ 2306.11719,2023-06-20T17:53:00.000Z,
447
+ 2306.10169,2023-06-16T20:12:11.000Z,
448
+ 2306.10763,2023-06-19T08:13:50.000Z,
449
+ 2306.10968,2023-06-19T14:30:52.000Z,
450
+ 2306.10785,2023-06-19T08:58:26.000Z,
451
+ 2306.12156,2023-06-21T10:08:29.000Z,https://github.com/CASIA-IVA-Lab/FastSAM
452
+ 2306.11987,2023-06-21T02:45:01.000Z,
453
+ 2306.12422,2023-06-21T17:59:45.000Z,
454
+ 2306.11932,2023-06-20T22:52:51.000Z,
455
+ 2306.12059,2023-06-21T07:01:38.000Z,
456
+ 2306.12925,2023-06-22T14:37:54.000Z,
457
+ 2306.12672,2023-06-22T05:14:00.000Z,
458
+ 2306.12509,2023-06-21T18:45:56.000Z,https://github.com/microsoft/deep-language-networks
459
+ 2306.12929,2023-06-22T14:39:04.000Z,
460
+ 2306.10008,2023-06-16T17:58:15.000Z,https://github.com/fahadshamshad/Clip2Protect
461
+ 2306.12760,2023-06-22T09:34:55.000Z,
462
+ 2306.13078,2023-06-22T17:51:05.000Z,
463
+ 2306.13421,2023-06-23T10:18:02.000Z,
464
+ 2306.13575,2023-06-23T15:55:44.000Z,
465
+ 2306.13651,2023-06-23T17:59:09.000Z,
466
+ 2306.13588,2023-06-23T16:21:40.000Z,
467
+ 2306.13649,2023-06-23T17:56:26.000Z,
468
+ 2306.13631,2023-06-23T17:36:44.000Z,
469
+ 2306.13455,2023-06-23T11:53:43.000Z,
470
+ 2306.14824,2023-06-26T16:32:47.000Z,
471
+ 2306.14795,2023-06-26T15:53:02.000Z,
472
+ 2306.14435,2023-06-26T06:04:09.000Z,
473
+ 2306.14289,2023-06-25T16:37:25.000Z,https://github.com/ChaoningZhang/MobileSAM
474
+ 2306.13840,2023-06-24T02:25:56.000Z,
475
+ 2306.14101,2023-06-25T02:39:19.000Z,
476
+ 2306.14892,2023-06-26T17:58:50.000Z,
477
+ 2306.14048,2023-06-24T20:11:14.000Z,https://github.com/FMInference/H2O
478
+ 2306.14035,2023-06-24T18:32:48.000Z,
479
+ 2306.14447,2023-06-26T06:30:29.000Z,
480
+ 2306.14565,2023-06-26T10:26:33.000Z,
481
+ 2306.13776,2023-06-23T20:19:58.000Z,
482
+ 2306.14846,2023-06-26T16:57:03.000Z,
483
+ 2306.14153,2023-06-25T07:40:39.000Z,
484
+ 2306.13754,2023-06-23T19:24:48.000Z,
485
+ 2306.14878,2023-06-26T17:48:25.000Z,https://github.com/Newbeeer/diffusion_restart_sampling
486
+ 2306.14896,2023-06-26T17:59:31.000Z,
487
+ 2306.14066,2023-06-24T22:00:06.000Z,
488
+ 2306.15595,2023-06-27T16:26:26.000Z,
489
+ 2306.15658,2023-06-27T17:51:06.000Z,https://github.com/UCSC-VLAA/CLIPA
490
+ 2306.15626,2023-06-27T17:05:32.000Z,
491
+ 2306.15128,2023-06-27T00:40:12.000Z,https://github.com/RAIVNLab/MIMIC
492
+ 2306.15354,2023-06-27T10:09:43.000Z,
493
+ 2306.15667,2023-06-27T17:59:07.000Z,
494
+ 2306.15091,2023-06-26T22:14:04.000Z,
495
+ 2306.15400,2023-06-27T11:53:25.000Z,
496
+ 2306.15447,2023-06-26T17:18:44.000Z,
497
+ 2306.16410,2023-06-28T17:57:10.000Z,https://github.com/ContextualAI/lens
498
+ 2306.15794,2023-06-27T20:46:34.000Z,
499
+ 2306.16388,2023-06-28T17:31:53.000Z,
500
+ 2306.15724,2023-06-27T18:03:15.000Z,
501
+ 2306.16052,2023-06-28T09:32:00.000Z,
502
+ 2306.16009,2023-06-28T08:33:13.000Z,
503
+ 2306.16928,2023-06-29T13:28:16.000Z,
504
+ 2306.16934,2023-06-29T13:33:02.000Z,
505
+ 2306.17154,2023-06-29T17:55:14.000Z,
506
+ 2306.17156,2023-06-29T17:57:40.000Z,
507
+ 2306.16527,2023-06-21T14:01:01.000Z,
508
+ 2306.17107,2023-06-29T17:08:16.000Z,
509
+ 2306.17115,2023-06-29T17:17:57.000Z,
510
+ 2306.16793,2023-06-29T08:59:40.000Z,
511
+ 2306.16857,2023-06-29T11:07:14.000Z,
512
+ 2306.16869,2023-06-29T11:38:22.000Z,https://github.com/IBM/NeuralFuse
513
+ 2306.16700,2023-06-29T05:51:44.000Z,
514
+ 2306.16601,2023-06-28T23:55:51.000Z,https://github.com/intel/intel-extension-for-transformers
515
+ 2306.16940,2023-06-29T13:35:16.000Z,
516
+ 2306.16564,2023-06-28T21:11:15.000Z,
517
+ 2306.17843,2023-06-30T17:59:08.000Z,https://github.com/guochengqian/Magic123
518
+ 2306.17806,2023-06-30T17:07:02.000Z,
519
+ 2306.17840,2023-06-30T17:58:02.000Z,
520
+ 2306.17582,2023-02-20T06:39:06.000Z,
521
+ 2306.17563,2023-06-30T11:32:25.000Z,
522
+ 2306.17848,2023-06-30T17:59:53.000Z,
523
+ 2306.17194,2023-06-28T17:54:04.000Z,https://github.com/azshue/AutoPoison
524
+ 2306.17492,2023-06-30T09:07:37.000Z,
525
+ 2306.17759,2023-06-30T16:10:36.000Z,
526
+ 2306.17319,2023-06-29T22:05:56.000Z,https://github.com/google-research/deeplab2
527
+ 2307.01197,2023-07-03T17:58:01.000Z,https://github.com/SysCV/sam-pt
528
+ 2307.00522,2023-07-02T09:11:09.000Z,
529
+ 2307.00040,2023-06-30T17:37:48.000Z,
530
+ 2307.00184,2023-07-01T00:58:51.000Z,
531
+ 2307.00716,2023-07-03T02:39:08.000Z,
532
+ 2307.01200,2023-07-03T17:59:45.000Z,
533
+ 2307.01097,2023-07-03T15:19:17.000Z,
534
+ 2307.01163,2023-07-03T17:12:44.000Z,
535
+ 2307.00117,2023-06-30T20:09:39.000Z,
536
+ 2307.00804,2023-07-03T07:41:07.000Z,
537
+ 2307.00119,2023-06-30T20:16:22.000Z,
538
+ 2307.02486,2023-07-05T17:59:38.000Z,
539
+ 2307.01952,2023-07-04T23:04:57.000Z,https://github.com/Stability-AI/generative-models
540
+ 2307.02421,2023-07-05T16:43:56.000Z,https://github.com/MC-E/DragonDiffusion
541
+ 2307.02053,2023-07-05T06:36:54.000Z,
542
+ 2307.02469,2023-07-05T17:44:28.000Z,
543
+ 2307.02485,2023-07-05T17:59:27.000Z,
544
+ 2307.02483,2023-07-05T17:58:10.000Z,
545
+ 2307.01928,2023-07-04T21:25:12.000Z,
546
+ 2307.01938,2023-07-04T21:57:05.000Z,
547
+ 2307.02321,2023-07-05T14:22:31.000Z,
548
+ 2307.02179,2023-07-05T10:15:07.000Z,
549
+ 2307.02484,2023-07-05T17:58:21.000Z,
550
+ 2307.01848,2023-07-04T17:58:25.000Z,
551
+ 2307.01229,2023-07-03T05:54:29.000Z,https://github.com/microsoft/muzic
552
+ 2307.01831,2023-07-04T17:15:46.000Z,
553
+ 2307.03109,2023-07-06T16:28:35.000Z,https://github.com/MLGroupJLU/LLM-eval-survey
554
+ 2307.03172,2023-07-06T17:54:11.000Z,
555
+ 2307.02499,2023-07-04T11:28:07.000Z,https://github.com/X-PLUG/mPLUG-DocOwl
556
+ 2307.02768,2023-07-06T04:40:52.000Z,
557
+ 2307.03170,2023-07-06T17:52:10.000Z,
558
+ 2307.03183,2023-07-06T17:58:28.000Z,
559
+ 2307.02628,2023-07-05T19:59:09.000Z,
560
+ 2307.03166,2023-07-06T17:47:52.000Z,
561
+ 2307.03692,2023-07-05T09:42:25.000Z,
562
+ 2307.03381,2023-07-07T04:33:31.000Z,
563
+ 2307.03601,2023-07-07T13:43:44.000Z,https://github.com/jshilong/GPT4RoI
564
+ 2307.03322,2023-07-06T22:31:55.000Z,
565
+ 2307.03659,2023-07-07T15:26:03.000Z,
566
+ 2307.03576,2023-07-07T13:09:18.000Z,
567
+ 2307.03718,2023-07-06T17:03:25.000Z,
568
+ 2307.04725,2023-07-10T17:34:16.000Z,
569
+ 2307.03869,2023-07-08T00:45:01.000Z,
570
+ 2307.04686,2023-07-10T16:42:03.000Z,
571
+ 2307.04767,2023-07-10T17:59:40.000Z,
572
+ 2307.04721,2023-07-10T17:32:13.000Z,
573
+ 2307.03875,2023-07-08T01:42:22.000Z,
574
+ 2307.03917,2023-07-08T06:47:58.000Z,
575
+ 2307.04699,2023-07-10T16:55:55.000Z,
576
+ 2307.04603,2023-07-07T09:01:42.000Z,https://github.com/kakaobrain/solvent
577
+ 2307.04349,2023-07-10T05:18:18.000Z,https://github.com/Zyq-scut/RLTF
578
+ 2307.04087,2023-07-09T03:25:14.000Z,
579
+ 2307.04751,2023-07-10T17:56:06.000Z,
580
+ 2307.04008,2023-07-08T16:30:13.000Z,
581
+ 2307.04577,2023-07-10T14:11:07.000Z,
582
+ 2307.04787,2023-07-04T17:31:50.000Z,
583
+ 2307.04964,2023-07-11T01:55:24.000Z,
584
+ 2307.05222,2023-07-11T12:45:39.000Z,
585
+ 2307.05445,2023-07-07T17:59:14.000Z,
586
+ 2307.05300,2023-07-11T14:45:19.000Z,https://github.com/MikeWangWZHL/Solo-Performance-Prompting.git
587
+ 2307.05473,2023-07-11T17:58:31.000Z,
588
+ 2307.05432,2023-07-11T16:52:22.000Z,
589
+ 2307.05463,2023-07-11T17:50:15.000Z,
590
+ 2307.05454,2023-07-11T17:33:03.000Z,
591
+ 2307.05462,2023-07-11T17:50:02.000Z,
592
+ 2307.05014,2023-07-11T05:17:42.000Z,
593
+ 2307.06018,2023-07-12T09:00:37.000Z,
594
+ 2307.06304,2023-07-12T17:01:03.000Z,
595
+ 2307.05695,2023-07-11T18:02:09.000Z,
596
+ 2307.06135,2023-07-12T12:37:55.000Z,
597
+ 2307.05628,2023-07-11T06:30:43.000Z,
598
+ 2307.06290,2023-07-12T16:37:31.000Z,
599
+ 2307.05591,2023-07-10T17:59:21.000Z,
600
+ 2307.05741,2023-07-11T19:08:31.000Z,
601
+ 2307.05959,2023-07-12T07:04:53.000Z,
602
+ 2307.05973,2023-07-12T07:40:48.000Z,
603
+ 2307.06949,2023-07-13T17:59:47.000Z,
604
+ 2307.06945,2023-07-13T17:59:21.000Z,
605
+ 2307.06942,2023-07-13T17:58:32.000Z,
606
+ 2307.06925,2023-07-13T17:46:42.000Z,
607
+ 2307.06439,2023-07-12T20:08:48.000Z,
608
+ 2307.06857,2023-07-11T17:51:48.000Z,
609
+ 2307.06940,2023-07-13T17:57:13.000Z,
610
+ 2307.06908,2023-07-13T17:14:38.000Z,https://github.com/AI21Labs/factor
611
+ 2307.06350,2023-07-12T17:59:42.000Z,
612
+ 2307.06962,2023-07-13T05:03:26.000Z,https://github.com/gmftbyGMFTBY/Copyisallyouneed
613
+ 2307.07218,2023-07-14T08:21:25.000Z,
614
+ 2307.07164,2023-07-14T05:23:08.000Z,
615
+ 2307.07487,2023-07-14T17:17:17.000Z,
616
+ 2307.07047,2023-07-13T20:02:50.000Z,
617
+ 2307.07511,2023-07-14T17:59:38.000Z,
618
+ 2307.08621,2023-07-17T16:40:01.000Z,
619
+ 2307.08674,2023-07-17T17:36:09.000Z,
620
+ 2307.08581,2023-07-17T15:51:47.000Z,
621
+ 2307.08701,2023-07-17T17:59:40.000Z,
622
+ 2307.08702,2023-07-17T17:59:40.000Z,
623
+ 2307.07635,2023-07-14T21:13:04.000Z,
624
+ 2307.08041,2023-07-16T13:41:39.000Z,
625
+ 2307.07663,2023-07-15T00:02:41.000Z,
626
+ 2307.08506,2023-07-17T14:08:38.000Z,
627
+ 2307.08579,2023-07-17T15:47:48.000Z,
628
+ 2307.07947,2023-07-16T05:10:32.000Z,
629
+ 2307.09288,2023-07-18T14:31:57.000Z,
630
+ 2307.09009,2023-07-18T06:56:08.000Z,
631
+ 2307.09112,2023-07-18T10:02:09.000Z,
632
+ 2307.09458,2023-07-18T17:39:04.000Z,
633
+ 2307.09233,2023-07-18T13:10:11.000Z,
634
+ 2307.09320,2023-07-18T15:03:40.000Z,
635
+ 2307.09793,2023-07-19T07:17:43.000Z,
636
+ 2307.10169,2023-07-19T17:55:13.000Z,
637
+ 2307.10159,2023-07-19T17:39:39.000Z,
638
+ 2307.09781,2023-07-19T06:56:07.000Z,
639
+ 2307.10172,2023-07-19T17:57:53.000Z,https://github.com/salesforce/DialogStudio
640
+ 2307.09668,2023-07-18T22:37:30.000Z,
641
+ 2307.10088,2023-07-19T15:57:24.000Z,https://github.com/google-research/google-research/tree/master/android_in_the_wild
642
+ 2307.10168,2023-07-19T17:54:43.000Z,
643
+ 2307.10173,2023-07-19T17:58:03.000Z,
644
+ 2307.09638,2023-07-18T20:59:52.000Z,
645
+ 2307.10373,2023-07-19T18:00:03.000Z,
646
+ 2307.11078,2023-07-20T17:55:17.000Z,
647
+ 2307.10802,2023-07-20T12:10:29.000Z,https://github.com/invictus717/MetaTransformer
648
+ 2307.10907,2023-07-20T14:29:51.000Z,https://github.com/apple/ml-entropy-reconstruction
649
+ 2307.10350,2023-07-19T17:47:12.000Z,
650
+ 2307.10928,2023-07-20T14:56:35.000Z,https://github.com/kaistAI/FLASK
651
+ 2307.10936,2023-07-20T15:09:06.000Z,
652
+ 2307.10635,2023-07-20T07:01:57.000Z,
653
+ 2307.10558,2023-07-20T03:54:24.000Z,
654
+ 2307.11410,2023-07-21T08:09:47.000Z,
655
+ 2307.11526,2023-07-21T12:14:33.000Z,
656
+ 2307.11418,2023-07-21T08:22:14.000Z,
657
+ 2307.11118,2023-07-20T14:37:30.000Z,
658
+ 2307.12981,2023-07-24T17:59:02.000Z,
659
+ 2307.12856,2023-07-24T14:56:30.000Z,
660
+ 2307.12560,2023-07-24T07:03:22.000Z,
661
+ 2307.11795,2023-07-21T08:39:15.000Z,
662
+ 2307.12533,2023-07-24T05:43:19.000Z,
663
+ 2307.12976,2023-07-24T17:52:46.000Z,
664
+ 2307.12950,2023-07-24T17:23:22.000Z,
665
+ 2307.11768,2023-07-17T00:54:10.000Z,
666
+ 2307.12169,2023-07-22T21:18:41.000Z,
667
+ 2307.12854,2023-07-24T14:55:15.000Z,
668
+ 2307.12612,2023-07-24T08:39:11.000Z,https://github.com/huawei-noah/noah-research/tree/master/Focus-DETR
669
+ 2307.12698,2023-07-24T11:27:14.000Z,
670
+ 2307.13269,2023-07-25T05:39:21.000Z,https://github.com/sail-sg/lorahub
671
+ 2307.13692,2023-07-25T17:55:19.000Z,
672
+ 2307.13383,2023-07-25T10:07:02.000Z,
673
+ 2307.13226,2023-07-25T03:30:09.000Z,
674
+ 2307.13101,2023-07-24T19:43:22.000Z,
675
+ 2307.14335,2023-07-26T17:54:04.000Z,
676
+ 2307.13702,2023-07-17T01:08:39.000Z,
677
+ 2307.13854,2023-07-25T22:59:32.000Z,
678
+ 2307.13974,2023-07-26T06:19:46.000Z,https://github.com/jiawen-zhu/HQTrack
679
+ 2307.14334,2023-07-26T17:52:22.000Z,
680
+ 2307.13908,2023-07-26T02:16:55.000Z,
681
+ 2307.13720,2023-07-25T17:58:43.000Z,
682
+ 2307.14225,2023-07-26T14:47:15.000Z,
683
+ 2307.14117,2023-07-26T11:34:53.000Z,
684
+ 2307.14008,2023-07-26T07:42:28.000Z,
685
+ 2307.13924,2023-07-26T02:45:59.000Z,https://github.com/NVlabs/trajdata
686
+ 2307.14936,2023-07-27T15:28:29.000Z,
687
+ 2307.14995,2023-07-27T16:45:33.000Z,
688
+ 2307.15063,2023-07-27T17:59:59.000Z,
689
+ 2307.14535,2023-07-26T22:52:43.000Z,
690
+ 2307.14620,2023-07-27T04:36:16.000Z,https://github.com/facebookresearch/NeRF-Det
691
+ 2307.13813,2023-07-25T20:33:48.000Z,
692
+ 2307.14460,2023-07-26T19:01:49.000Z,https://github.com/isl-org/MiDaS
693
+ 2307.15042,2023-07-27T17:48:44.000Z,
694
+ 2307.15217,2023-07-27T22:29:25.000Z,
695
+ 2307.15337,2023-07-28T06:31:34.000Z,
696
+ 2307.15189,2023-07-27T20:36:02.000Z,https://github.com/snap-stanford/med-flamingo
697
+ 2307.15199,2023-07-27T21:14:46.000Z,
698
+ 2307.15593,2023-07-28T14:52:08.000Z,
699
+ 2307.15504,2023-07-28T12:00:13.000Z,
700
+ 2307.15131,2023-07-27T18:08:19.000Z,
701
+ 2307.16789,2023-07-31T15:56:53.000Z,
702
+ 2307.16372,2023-07-31T02:32:02.000Z,
703
+ 2307.15818,2023-07-28T21:18:02.000Z,
704
+ 2307.15780,2023-07-24T18:47:38.000Z,
705
+ 2307.15771,2023-07-28T19:13:26.000Z,
706
+ 2307.16184,2023-07-30T09:48:36.000Z,https://github.com/mshukor/UnIVAL
707
+ 2307.16686,2023-07-31T14:00:12.000Z,
708
+ 2307.16449,2023-07-31T07:15:45.000Z,
709
+ 2307.16368,2023-07-31T02:14:19.000Z,
710
+ 2307.16715,2023-07-31T14:34:49.000Z,https://github.com/showlab/UniVTG
711
+ 2307.16888,2023-07-31T17:56:00.000Z,
712
+ 2307.16890,2023-07-31T17:57:48.000Z,
713
+ 2307.16125,2023-07-30T04:25:16.000Z,
714
+ 2308.00675,2023-08-01T17:21:38.000Z,
715
+ 2308.00304,2023-08-01T05:54:12.000Z,
716
+ 2308.00436,2023-08-01T10:31:36.000Z,
717
+ 2308.00113,2023-07-26T17:56:36.000Z,
718
+ 2308.00566,2023-07-31T17:59:08.000Z,
719
+ 2308.00951,2023-08-02T05:20:55.000Z,
720
+ 2308.00906,2023-08-02T01:57:11.000Z,
721
+ 2308.01317,2023-08-02T17:59:45.000Z,
722
+ 2308.01300,2023-08-02T17:39:30.000Z,
723
+ 2308.01313,2023-08-02T17:57:25.000Z,
724
+ 2308.01320,2023-08-02T18:49:57.000Z,
725
+ 2308.01399,2023-07-31T17:57:49.000Z,
726
+ 2308.01390,2023-08-02T19:10:23.000Z,https://github.com/mlfoundations/open_flamingo
727
+ 2308.01825,2023-08-03T15:34:01.000Z,
728
+ 2308.01544,2023-08-03T05:27:12.000Z,
729
+ 2308.01546,2023-08-03T05:35:37.000Z,
730
+ 2308.01477,2023-08-02T23:59:59.000Z,
731
+ 2308.01907,2023-08-03T17:59:47.000Z,https://github.com/OpenGVLab/All-Seeing
732
+ 2308.01904,2023-08-03T17:59:04.000Z,https://github.com/impiga/Plain-DETR
733
+ 2308.01734,2023-08-03T12:52:49.000Z,
734
+ 2308.01379,2023-08-02T18:36:54.000Z,
735
+ 2308.01499,2023-08-03T01:50:48.000Z,
736
+ 2308.02151,2023-08-04T06:14:23.000Z,
737
+ 2308.02490,2023-08-04T17:59:47.000Z,https://github.com/yuweihao/MM-Vet
738
+ 2308.02487,2023-08-04T17:59:01.000Z,https://github.com/bytedance/fc-clip
739
+ 2308.02180,2023-08-04T07:51:15.000Z,
740
+ 2308.02453,2023-08-04T16:39:27.000Z,
741
+ 2308.01937,2023-08-02T23:27:49.000Z,
742
+ 2308.02669,2023-08-03T17:04:41.000Z,
743
+ 2308.03526,2023-08-07T12:21:37.000Z,
744
+ 2308.03610,2023-08-07T14:09:46.000Z,
745
+ 2308.03688,2023-08-07T16:08:11.000Z,https://github.com/THUDM/AgentBench
746
+ 2308.02510,2023-07-27T12:54:16.000Z,
747
+ 2308.03279,2023-08-07T03:39:52.000Z,
748
+ 2308.03427,2023-08-07T09:22:03.000Z,
749
+ 2308.03757,2023-08-07T17:59:59.000Z,
750
+ 2308.03296,2023-08-07T04:47:42.000Z,
751
+ 2308.03729,2023-08-07T17:17:05.000Z,https://github.com/OpenGVLab/Multi-Modality-Arena
752
+ 2308.03280,2023-08-07T03:48:07.000Z,
753
+ 2308.03028,2023-08-06T06:01:18.000Z,
754
+ 2308.03291,2023-08-07T04:20:38.000Z,https://github.com/deepmind/synjax
755
+ 2308.03421,2023-08-07T09:14:33.000Z,
756
+ 2308.03290,2023-08-07T04:17:19.000Z,
757
+ 2308.02560,2023-08-02T22:14:29.000Z,
758
+ 2308.04079,2023-08-08T06:37:06.000Z,
759
+ 2308.03958,2023-08-07T23:48:36.000Z,https://github.com/google/sycophancy-intervention
760
+ 2308.04265,2023-08-08T14:03:08.000Z,
761
+ 2308.04430,2023-08-08T17:58:15.000Z,
762
+ 2308.03793,2023-08-04T18:11:40.000Z,
763
+ 2308.04592,2023-08-08T21:23:23.000Z,
764
+ 2308.04729,2023-08-09T06:27:24.000Z,
765
+ 2308.04623,2023-08-08T23:29:55.000Z,
766
+ 2308.04556,2023-08-08T20:06:12.000Z,https://github.com/NVlabs/FocalFormer3D
767
+ 2308.05734,2023-08-10T17:55:13.000Z,
768
+ 2308.05374,2023-08-10T06:43:44.000Z,
769
+ 2308.05737,2023-08-10T17:57:06.000Z,https://github.com/alaamaalouf/FollowAnything
770
+ 2308.05326,2023-08-10T04:01:04.000Z,
771
+ 2308.05371,2023-08-10T06:40:19.000Z,
772
+ 2308.05221,2023-08-09T20:56:56.000Z,
773
+ 2308.05732,2023-08-10T17:53:05.000Z,
774
+ 2308.06259,2023-08-11T17:47:54.000Z,
775
+ 2308.05884,2023-08-11T00:33:26.000Z,
776
+ 2308.06103,2023-08-11T12:27:22.000Z,
777
+ 2308.05960,2023-08-11T06:37:54.000Z,https://github.com/salesforce/BOLAA
778
+ 2308.06125,2023-08-11T13:28:48.000Z,
779
+ 2308.06261,2023-08-11T17:49:15.000Z,
780
+ 2308.07124,2023-08-14T13:53:54.000Z,https://github.com/bigcode-project/octopack
781
+ 2308.06873,2023-08-14T01:01:19.000Z,
782
+ 2308.07317,2023-08-14T17:59:56.000Z,
783
+ 2308.06912,2023-08-14T03:14:38.000Z,
784
+ 2308.06721,2023-08-13T08:34:51.000Z,
785
+ 2308.07228,2023-08-14T16:04:53.000Z,
786
+ 2308.07316,2023-08-14T17:59:31.000Z,
787
+ 2308.07286,2023-08-14T17:17:21.000Z,
788
+ 2308.06595,2023-08-12T15:27:51.000Z,
789
+ 2308.07921,2023-08-15T17:58:45.000Z,
790
+ 2308.07926,2023-08-15T17:59:56.000Z,
791
+ 2308.07922,2023-08-15T17:59:18.000Z,
792
+ 2308.07891,2023-08-15T17:33:24.000Z,https://github.com/isekai-portal/Link-Context-Learning
793
+ 2308.07903,2023-08-15T17:42:39.000Z,
794
+ 2308.07395,2023-08-14T18:28:04.000Z,
795
+ 2308.07795,2023-08-15T14:21:24.000Z,https://github.com/AI-Initiative-KAUST/VideoRLCS
papers.py ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import dataclasses
2
+ import datetime
3
+ import operator
4
+ import pathlib
5
+
6
+ import pandas as pd
7
+ import requests
8
+ import tqdm.auto
9
+
10
+
11
+ @dataclasses.dataclass(frozen=True)
12
+ class PaperInfo:
13
+ arxiv_id: str
14
+ published_at: str
15
+ github: str
16
+ title: str
17
+ paper_page: str
18
+ upvotes: int
19
+
20
+ def __post_init__(self):
21
+ object.__setattr__(self, 'published_at',
22
+ PaperInfo.convert_timestamp(self.published_at))
23
+
24
+ @staticmethod
25
+ def convert_timestamp(timestamp: str) -> str:
26
+ try:
27
+ return datetime.datetime.strptime(
28
+ timestamp,
29
+ '%Y-%m-%dT%H:%M:%S.%fZ').strftime('%Y/%m/%d %H:%M:%S')
30
+ except ValueError:
31
+ return timestamp
32
+
33
+
34
+ def get_df(path: pathlib.Path | str) -> pd.DataFrame:
35
+ df = pd.read_csv(path, dtype=str).fillna('')
36
+ paper_info = []
37
+ for _, row in tqdm.auto.tqdm(df.iterrows(), total=len(df)):
38
+ res = requests.get(
39
+ f'https://huggingface.co/api/papers/{row.arxiv_id}').json()
40
+ info = PaperInfo(
41
+ **row,
42
+ title=res['title'],
43
+ paper_page=f'https://huggingface.co/papers/{row.arxiv_id}',
44
+ upvotes=res['upvotes'])
45
+ paper_info.append(info)
46
+ return pd.DataFrame([dataclasses.asdict(info) for info in paper_info])
47
+
48
+
49
+ class Prettifier:
50
+ @staticmethod
51
+ def get_paper_page_link(link: str) -> str:
52
+ return Prettifier.create_link(link.split('/')[-1], link)
53
+
54
+ @staticmethod
55
+ def get_github_link(link: str) -> str:
56
+ if not link:
57
+ return ''
58
+ return Prettifier.create_link('github', link)
59
+
60
+ @staticmethod
61
+ def create_link(text: str, url: str) -> str:
62
+ return f'<a href={url} target="_blank">{text}</a>'
63
+
64
+ @staticmethod
65
+ def to_div(text: str | None, category_name: str) -> str:
66
+ if text is None:
67
+ text = ''
68
+ class_name = f'{category_name}-{text.lower()}'
69
+ return f'<div class="{class_name}">{text}</div>'
70
+
71
+ def __call__(self, df: pd.DataFrame) -> pd.DataFrame:
72
+ df = df.sort_values('arxiv_id', ascending=False).reset_index(drop=True)
73
+ new_rows = []
74
+ for _, row in df.iterrows():
75
+ new_row = dict(row) | {
76
+ 'paper_page': self.get_paper_page_link(row.paper_page),
77
+ 'github': self.get_github_link(row.github),
78
+ }
79
+ new_rows.append(new_row)
80
+ return pd.DataFrame(new_rows, columns=df.columns)
81
+
82
+
83
+ class PaperList:
84
+ COLUMN_INFO = [
85
+ ['paper_page', 'markdown'],
86
+ ['title', 'str'],
87
+ ['github', 'markdown'],
88
+ ['published_at', 'str'],
89
+ ['upvotes', 'number'],
90
+ ]
91
+
92
+ def __init__(self, df: pd.DataFrame):
93
+ self.df_raw = df
94
+ self._prettifier = Prettifier()
95
+ self.df_prettified = self._prettifier(df).loc[:, self.column_names]
96
+
97
+ @property
98
+ def column_names(self):
99
+ return list(map(operator.itemgetter(0), self.COLUMN_INFO))
100
+
101
+ @property
102
+ def column_datatype(self):
103
+ return list(map(operator.itemgetter(1), self.COLUMN_INFO))
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ gradio==3.39.0
2
+ pandas==2.0.3
3
+ requests==2.31.0
4
+ tqdm==4.65.0
style.css ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ h1 {
2
+ text-align: center;
3
+ }
4
+
5
+ body a,
6
+ #component-0 a {
7
+ background-color: transparent;
8
+ color: #58a6ff;
9
+ text-decoration: none;
10
+ }
11
+
12
+ body a:active,
13
+ body a:hover {
14
+ outline-width: 0;
15
+ }
16
+
17
+ body a:hover {
18
+ text-decoration: underline;
19
+ }