-
Notifications
You must be signed in to change notification settings - Fork 5
/
daily_arxiv.py
300 lines (240 loc) · 10.1 KB
/
daily_arxiv.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
import datetime
import requests
import json
import arxiv
import os
base_url = "https://arxiv.paperswithcode.com/api/v0/papers/"
github_url = "https://api.github.com/search/repositories"
arxiv_url = "http://arxiv.org/"
def get_authors(authors, first_author=False):
output = str()
if first_author == False:
output = ", ".join(str(author) for author in authors)
else:
output = authors[0]
return output
def get_label(categories):
output = str()
if len(categories) != 1: # 多类
output = ", ".join(str(c) for c in categories)
else:
output = categories[0]
return output
def sort_papers(papers):
output = dict()
keys = list(papers.keys())
keys.sort(reverse=True)
for key in keys:
output[key] = papers[key]
return output
def get_daily_papers(topic, query, max_results=2):
"""
@param topic: str
@param query: str
@return paper_with_code: dict
"""
# output
content = dict()
content_to_web = dict()
# content
output = dict()
search_engine = arxiv.Search(
query=query,
max_results=max_results,
sort_by=arxiv.SortCriterion.SubmittedDate
)
cnt = 0
for result in search_engine.results():
# 这里加个判断 作为过滤
if 'cs.CL' not in result.categories or 'cs.CV' in result.categories or 'eess.AS' in result.categories or 'cs.SD' in result.categories or 'eess.SP' in result.categories:
continue
paper_id = result.get_short_id()
paper_title = result.title
paper_url = result.entry_id
# new 2
paper_categories = get_label(result.categories) # 标签列表
paper_primary_category = result.primary_category # 主分类
code_url = base_url + paper_id
paper_abstract = result.summary.replace("\n", " ") # 这个要用上
paper_authors = get_authors(result.authors) # 作者列表
paper_first_author = paper_authors # get_authors(result.authors,first_author = True) # 一作
primary_category = result.primary_category
publish_time = result.published.date()
update_time = result.updated.date() # 要更新日期
comments = result.comment
print("Time = ", update_time,
" title = ", paper_title,
# " author = ", paper_first_author
"abstract =", paper_abstract,
"categories =", paper_categories
)
# eg: 2108.09112v1 -> 2108.09112
ver_pos = paper_id.find('v')
if ver_pos == -1:
paper_key = paper_id
else:
paper_key = paper_id[0:ver_pos]
try:
r = requests.get(code_url).json()
# source code link
if "official" in r and r["official"]:
cnt += 1
repo_url = r["official"]["url"]
# 这里修改 paper_first_author to paper_abstract
content[
paper_key] = f"|**{update_time}**|**{paper_title}**|{paper_categories}|{paper_abstract} |[{paper_id}]({paper_url})|**[link]({repo_url})**|\n"
content_to_web[
paper_key] = f"- {update_time}, **{paper_title}**,{paper_categories}, {paper_abstract} , Paper: [{paper_url}]({paper_url}), Code: **[{repo_url}]({repo_url})**"
else:
content[
paper_key] = f"|**{update_time}**|**{paper_title}**|{paper_categories}|{paper_abstract} |[{paper_id}]({paper_url})|null|\n"
content_to_web[
paper_key] = f"- {update_time}, **{paper_title}**,{paper_categories}, {paper_abstract} , Paper: [{paper_url}]({paper_url})"
# TODO: select useful comments
comments = None
if comments != None:
content_to_web[paper_key] = content_to_web[paper_key] + f", {comments}\n"
else:
content_to_web[paper_key] = content_to_web[paper_key] + f"\n"
except Exception as e:
print(f"exception: {e} with id: {paper_key}")
data = {topic: content}
data_web = {topic: content_to_web}
return data, data_web
def update_json_file(filename, data_all):
with open(filename, "r") as f:
content = f.read()
if len(content.strip()) < 2:
m = {}
else:
m = json.loads(content)
json_data = m.copy()
# update papers in each keywords
for data in data_all:
for keyword in data.keys():
papers = data[keyword]
if keyword in json_data.keys():
json_data[keyword].update(papers)
else:
json_data[keyword] = papers
with open(filename, "w") as f:
json.dump(json_data, f, indent=2)
def json_to_md(filename, md_filename,
to_web=False,
use_title=True,
use_tc=True,
show_badge=True):
"""
@param filename: str
@param md_filename: str
@return None
"""
DateNow = datetime.date.today()
DateNow = str(DateNow)
DateNow = DateNow.replace('-', '.')
with open(filename, "r") as f:
content = f.read()
if not content:
data = {}
else:
data = json.loads(content)
# clean README.md if daily already exist else create it
with open(md_filename, "w+") as f:
pass
# write data into README.md
with open(md_filename, "a+") as f:
if (use_title == True) and (to_web == True):
f.write("---\n" + "layout: default\n" + "---\n\n")
if show_badge == True:
f.write(f"[![Contributors][contributors-shield]][contributors-url]\n")
f.write(f"[![Forks][forks-shield]][forks-url]\n")
f.write(f"[![Stargazers][stars-shield]][stars-url]\n")
f.write(f"[![Issues][issues-shield]][issues-url]\n\n")
if use_title == True:
f.write("## Updated on " + DateNow + "\n\n")
else:
f.write("> Updated on " + DateNow + "\n\n")
# Add: table of contents , no use it
if use_tc == True:
f.write("<details>\n")
f.write(" <summary>Table of Contents</summary>\n")
f.write(" <ol>\n")
for keyword in data.keys():
day_content = data[keyword]
if not day_content:
continue
kw = keyword.replace(' ', '-')
f.write(f" <li><a href=#{kw}>{keyword}</a></li>\n")
f.write(" </ol>\n")
f.write("</details>\n\n")
for keyword in data.keys():
day_content = data[keyword]
if not day_content:
continue
# the head of each part
f.write(f"## {keyword}\n\n")
if use_title == True:
if to_web == False:
f.write("|Date|Title|label|Abstract|PDF|Code|\n" + "|---|---|---|---|---|---|\n")
else:
f.write("| Date | Title | label | Abstract | PDF | Code |\n")
f.write("|:---------|:---------------|:-------|:------------------|:------|:------|\n")
# sort papers by date
day_content = sort_papers(day_content)
for _, v in day_content.items():
if v is not None:
f.write(v)
f.write(f"\n")
# Add: back to top
top_info = f"#Updated on {DateNow}"
top_info = top_info.replace(' ', '-').replace('.', '')
f.write(f"<p align=right>(<a href={top_info}>back to top</a>)</p>\n\n")
if show_badge == True: # 没用上
# unk
f.write(
f"[contributors-shield]: https://img.shields.io/github/contributors/bansky-cl/tods-arxiv-daily-paper.svg?style=for-the-badge\n")
f.write(f"[contributors-url]: https://github.com/bansky-cl/tods-arxiv-daily-paper/graphs/contributors\n")
f.write(
f"[forks-shield]: https://img.shields.io/github/forks/bansky-cl/tods-arxiv-daily-paper.svg?style=for-the-badge\n")
f.write(f"[forks-url]: https://github.com/bansky-cl/tods-arxiv-daily-paper/network/members\n")
f.write(
f"[stars-shield]: https://img.shields.io/github/stars/bansky-cl/tods-arxiv-daily-paper.svg?style=for-the-badge\n")
f.write(f"[stars-url]: https://github.com/bansky-cl/tods-arxiv-daily-paper/stargazers\n")
f.write(
f"[issues-shield]: https://img.shields.io/github/issues/bansky-cl/tods-arxiv-daily-paper.svg?style=for-the-badge\n")
f.write(f"[issues-url]: https://github.com/bansky-cl/tods-arxiv-daily-paper/issues\n\n")
print("finished")
if __name__ == "__main__":
data_collector = []
data_collector_web = []
# my keyword
keywords = dict()
keywords["task oriented dialogue"] = "ti:\"task oriented dialogue\""
# keywords["Dialogue State Tracking"] = "ti:\"Dialogue State Tracking\"" + "OR" + "ti:\"DST\""
# keywords["Intent Detection"] = "ti:\"intent detection\""
# keywords['slot filling'] = "ti:\"slot filling\""
for topic, keyword in keywords.items():
# topic = keyword.replace("\"","")
print("Keyword: " + topic)
# data 就是md格式
# web 就是json格式
# 这里调用 搜索函数,返回一个topic或者一个keyword符合条件的所有函数
data, data_web = get_daily_papers(topic, query=keyword, max_results=50) # after LLM, ChatGPT
data_collector.append(data)
data_collector_web.append(data_web)
print(data_collector)
print("\n")
# 1. update README.md file
json_file = "docs/arxiv-daily.json"
md_file = "README.md"
# update json data
update_json_file(json_file, data_collector)
# json data to markdown
json_to_md(json_file, md_file)
# 2. update docs/index.md file . no use actually
# json_file = "./docs/arxiv-daily-web.json"
# md_file = "./docs/index.md"
# update json data
# update_json_file(json_file, data_collector)
# json data to markdown
# json_to_md(json_file, md_file, to_web=True)