【金融】- findpapers:论文搜索与下载工具

金融 - findpapers:论文搜索与下载工具

findpapers:论文搜索与下载工具

复制代码
findpapers search search.json --query "[Deep Learning] AND [Knowledge Graph] AND ([Quantitative Investment] OR [Algorithmic Trading] OR [Financial Analysis] OR [Risk Assessment] OR [Economic Cycle] OR [Business Cycle])" --databases "arxiv,ssrn,repec,econbiz,semanticscholar" --limit-db 40 --verbose

这段代码是一个使用 findpapers工具,在五个专业库中(arxiv,ssrn,repec,econbiz,semanticscholar),进行一定逻辑条件的,学术论文搜索的命令。

其中

复制代码
findpapers search search_broad.json --query "[...]" --databases "arxiv,pubmed" --limit-db 40 --verbose

该命令通过 findpapers工具从"arxiv,ssrn,repec,econbiz,semanticscholar"​数据库中检索符合如下指定关键词组合

复制代码
"[Deep Learning] AND [Knowledge Graph] AND ([Quantitative Investment] OR [Algorithmic Trading] OR [Financial Analysis] OR [Risk Assessment] OR [Economic Cycle] OR [Business Cycle])"

的学术论文,并将结果保存到 search_broad.json文件中。

参数说明如下:

完成后,有类似如下整理好的搜索结果(以下是单篇备选文献的结果),

复制代码
{
  "databases": [
    "arxiv",
    "ssrn",
    "repec",
    "econbiz",
    "semanticscholar"
  ],
  "limit": null,
  "limit_per_database": 40,
  "number_of_papers": 1,
  "number_of_papers_by_database": {
    "arXiv": 1
  },
  "papers": [
    {
      "abstract": "Knowledge Graphs have emerged as a compelling abstraction for capturing key\nrelationship among the entities of interest to enterprises and for integrating\ndata from heterogeneous sources. JPMorgan Chase (JPMC) is leading this trend by\nleveraging knowledge graphs across the organization for multiple mission\ncritical applications such as risk assessment, fraud detection, investment\nadvice, etc. A core problem in leveraging a knowledge graph is to link mentions\n(e.g., company names) that are encountered in textual sources to entities in\nthe knowledge graph. Although several techniques exist for entity linking, they\nare tuned for entities that exist in Wikipedia, and fail to generalize for the\nentities that are of interest to an enterprise. In this paper, we propose a\nnovel end-to-end neural entity linking model (JEL) that uses minimal context\ninformation and a margin loss to generate entity embeddings, and a Wide & Deep\nLearning model to match character and semantic information respectively. We\nshow that JEL achieves the state-of-the-art performance to link mentions of\ncompany names in financial news with entities in our knowledge graph. We report\non our efforts to deploy this model in the company-wide system to generate\nalerts in response to financial news. The methodology used for JEL is directly\napplicable and usable by other enterprises who need entity linking solutions\nfor data that are unique to their respective situations.",
      "authors": [
        "Wanying Ding",
        "Vinay K. Chaudhri",
        "Naren Chittar",
        "Krishna Konakanchi"
      ],
      "categories": {},
      "citations": null,
      "comments": "8 pages, 4 figures, IAAI-21",
      "databases": [
        "arXiv"
      ],
      "doi": "10.1609/aaai.v35i17.17796",
      "keywords": [],
      "number_of_pages": null,
      "pages": null,
      "publication": null,
      "publication_date": "2024-11-05",
      "selected": true,
      "title": "JEL: Applying End-to-End Neural Entity Linking in JPMorgan Chase",
      "urls": [
        "http://arxiv.org/abs/2411.02695v1",
        "http://arxiv.org/pdf/2411.02695v1",
        "http://dx.doi.org/10.1609/aaai.v35i17.17796"
      ]
    }
  ],
  "processed_at": "2025-10-08 07:39:04",
  "publication_types": null,
  "query": "[Deep Learning] AND [Knowledge Graph] AND ([Quantitative Investment] OR [Algorithmic Trading] OR [Financial Analysis] OR [Risk Assessment] OR [Economic Cycle] OR [Business Cycle])",
  "since": null,
  "until": null
}

搜索完成后只搜到了1篇文献,所以需要放宽一下约束条件(不局限于深度学习,包括机器学习),并限定专业库(更贴合金融量化投资需求的库)

复制代码
findpapers search search_broad.json --query "([Machine Learning] OR [Deep Learning] OR [Knowledge Graph]) AND ([Quantitative Investment] OR [Algorithmic Trading] OR [Financial Analysis] OR [Risk Assessment] OR [Finance] OR [Investment])" --databases "arxiv,semanticscholar" --limit-db 40 --since 2020-01-01 --verbose

搜索完成,要执行如下预选精炼:

复制代码
findpapers refine search_broad.json

精炼过程每一篇均要选择是否保留。

结束之后,执行如下代码进行论文下载:

复制代码
findpapers download search_broad.json ./papers_broad --selected --verbose

执行命令后,论文逐步下载,虽然速度较慢(36篇文献的下载耗时约1小时)。

相关推荐
AI医影跨模态组学5 小时前
如何将淋巴结影像组学特征与肿瘤血管异质性及缺氧微环境建立关联,并进一步解释其与晚期胆道癌免疫治疗响应及预后的机制联系
人工智能·论文·医学·医学影像·影像组学
AI医影跨模态组学9 小时前
如何通过影像组学模型无创预测三阴性乳腺癌中的三级淋巴结构(TLSs),并借助病理组学揭示其与治疗响应、预后及细胞侵袭性表型的机制联系
人工智能·论文·医学·医学影像·影像组学·医学科研
AI医影跨模态组学10 小时前
如何将纵向CT影像组学特征与局部晚期胃癌化疗时空异质性及耐药演化建立关联,并进一步解释其与化疗响应、淋巴结转移及生存预后的机制联系
人工智能·深度学习·论文·医学·医学影像·影像组学
AI医影跨模态组学15 小时前
如何将多模态CT深度学习特征与肿瘤微环境中的免疫相关生物学过程建立关联,并进一步解释其与非小细胞肺癌新辅助免疫化疗后的pCR机制联系
人工智能·深度学习·论文·医学·医学影像·影像组学
Elastic 中国社区官方博客19 小时前
2026 年金融服务可观测性现状:从实施到业务影响
大数据·运维·人工智能·elasticsearch·搜索引擎·金融·自动化
一 乐20 小时前
茶叶商城|基于springboot + vue茶叶商城系统(源码+数据库+文档)
java·数据库·vue.js·spring boot·论文·毕设·茶叶商城系统
实在智能RPA1 天前
金融行业财务审核自动化工具推荐:2026企业级AI Agent与智能合规选型指南
人工智能·ai·金融·自动化
傻啦嘿哟1 天前
金融数据风控:股票、基金净值实时抓取如何做到“0封禁”
金融
25Qi导航1 天前
选刊时不知道期刊收不收自己的方向,怎么办
论文·期刊·找刊网.com
AI医影跨模态组学2 天前
如何将影像组学特征与非小细胞肺癌脑转移瘤免疫微环境中的干扰素通路及CD8+ T细胞浸润建立关联,并解释与预后、免疫治疗响应的机制联系
人工智能·论文·医学·医学影像·影像组学·医学科研