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
- "authors": first author surname (e.g. "Vaswani")
702
702
- "year": publication year as integer (e.g. 2017)
703
703
- "query": a search query to find it (title + author + year)
704
+
- "context": a 1-2 sentence summary of what the report says about this paper (what it does, why it matters)
704
705
705
706
Return a JSON array. Example:
706
707
[
707
-
{{"title": "Attention Is All You Need", "authors": "Vaswani", "year": 2017, "query": "Attention Is All You Need Vaswani 2017"}},
708
-
{{"title": "BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding", "authors": "Devlin", "year": 2019, "query": "BERT Pre-training Deep Bidirectional Transformers Devlin 2019"}}
708
+
{{"title": "Attention Is All You Need", "authors": "Vaswani", "year": 2017, "query": "Attention Is All You Need Vaswani 2017", "context": "Introduces the Transformer architecture based solely on attention mechanisms, replacing recurrence and convolutions."}},
709
+
{{"title": "BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding", "authors": "Devlin", "year": 2019, "query": "BERT Pre-training Deep Bidirectional Transformers Devlin 2019", "context": "Proposes bidirectional pre-training for language representations, achieving SOTA on multiple NLP benchmarks."}}
709
710
]
710
711
711
712
Rules:
712
713
- "title" must be the paper's actual full title as it would appear on the paper itself
714
+
- "context" should summarize what the report says about this paper, NOT what you think the paper is about
713
715
- "query" should include the title plus first author surname and year to help search
714
716
- If only an abbreviation is given (e.g. "TimeGAN by Yoon et al., 2019"), infer the full title for "title" and construct a rich "query"
715
717
- Do NOT include book titles, dataset names, or tool names
0 commit comments