You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromsemanticscholarimportSemanticScholarsch=SemanticScholar()
response=sch.search_paper(
query='Abstractive text summarization of low-resourced languages using deep learning',
bulk=True,
sort='citationCount:desc'
)
foriteminresponse:
print(item.citationCount, item.title)
Output:
14 Abstractive text summarization and new large-scale datasets for agglutinative languages Turkish and Hungarian
11 Turkish abstractive text summarization using pretrained sequence-to-sequence models
11 Abstractive text summarization of low-resourced languages using deep learning
0 Automatic Text Summarization-Based Transformers Architecture
Proposed change description
How can I get bulk of papers sorted on citation count given a title?
Implementing that would be helpful.
The text was updated successfully, but these errors were encountered: