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
i was able to get the author names for a spefic paper using the following code, i wondering how can i extend it to get the author citation meterics
from semanticscholar import SemanticScholar
sch = SemanticScholar()
results = sch.search_paper('Can LLMs Maintain Fundamental Abilities under KV Cache Compression?')
print(f'{results.total} results.', f'First occurrence: {results[0].title}.')
for item in results:
for author in item['authors']:
print(author['name'], author['authorId'])
print(item.title)
Thanks!
The text was updated successfully, but these errors were encountered:
Question
i was able to get the author names for a spefic paper using the following code, i wondering how can i extend it to get the author citation meterics
from semanticscholar import SemanticScholar
sch = SemanticScholar()
results = sch.search_paper('Can LLMs Maintain Fundamental Abilities under KV Cache Compression?')
print(f'{results.total} results.', f'First occurrence: {results[0].title}.')
for item in results:
for author in item['authors']:
print(author['name'], author['authorId'])
print(item.title)
Thanks!
The text was updated successfully, but these errors were encountered: