当前位置:网站首页>【MEDICAL】Attend to Medical Ontologies: Content Selection for Clinical Abstractive Summarization
【MEDICAL】Attend to Medical Ontologies: Content Selection for Clinical Abstractive Summarization
2022-07-02 06:25:00 【lwgkzl】
任务:
据作者说,英文的医疗影像报告同时具有两个描述,一个是FINDINGS,阐述了整个图像的细节与特点,还有一个是IMPRESSION,只重点描述图像中的关键信息,这些关键信息是包含在FINDINGS里面的。总之,本篇论文做的就是利用这个FINDINGS来生成IMPRESSION,即在文本摘要在医疗领域的应用。
模型:

Content Selector:
这个选择器采用序列标注的形式来实现,整个FINDINGS序列的每个词有0,1两种标注。如果当前这个词是医疗专有实体,并且他在对应的IMPRESSION出现过了的话,那就把这个位置标注为1,否则标注为0。这样学出来一个模型,在测试集上面就可以用来标注FINDINGS,并且选出一些关键的医疗专有实体。
然后看到图
左边是encoder,encoder里面的上面那个lstm用来encoder整个FINDINGS,得到每个位置的编码hi,然后下面那个lstm用来encoder Content Selector选取的关键医疗专有实体。医疗专有实体的这个LSTM得到最终一个hl0的向量,这个向量代表着当前这个FINDINGS里面所有显著的医疗专有实体的信息。然后用这个信息融合到上面那个编码FINDINGS的LSTM中,得到每个位置的一个新的向量:

hi是上面LSTM每个位置的输出, hl0是下面LSTM最后一个位置的输出。融合起来,然后和之前每个位置的输出做element-wise的乘法操作,即第二个公式的这个圆圈。融合之后的hi'与最后decoder每个位置坐attention,用来引导decoder的生成。
读后总结:
整篇paper的模型其实不难,依旧是老套的seq2seq的基础架构,并且用的是lstm ecoder和lstm decoder的模式。唯一的亮点就是Content Selector的时候用到了序列标注的思想,这个有点类似于copy机制,但又不是在最后一步修改分布。整篇论文只做了一个这样小的改动,然后能够论证他真的有效果,就可以了。
边栏推荐
- Write a thread pool by hand, and take you to learn the implementation principle of ThreadPoolExecutor thread pool
- Yaml file of ingress controller 0.47.0
- Sqli-labs customs clearance (less1)
- How to call WebService in PHP development environment?
- SQLI-LABS通關(less6-less14)
- Sqli labs customs clearance summary-page4
- Explain in detail the process of realizing Chinese text classification by CNN
- 2021-07-19c CAD secondary development creates multiple line segments
- Basic knowledge of software testing
- Data warehouse model fact table model design
猜你喜欢

DNS攻击详解

软件开发模式之敏捷开发(scrum)

Three principles of architecture design

Practice and thinking of offline data warehouse and Bi development

架构设计三原则

Only the background of famous universities and factories can programmers have a way out? Netizen: two, big factory background is OK

使用Matlab实现:Jacobi、Gauss-Seidel迭代

Oracle EBs and apex integrated login and principle analysis

CSRF attack

Principle analysis of spark
随机推荐
DNS攻击详解
Oracle 11.2.0.3 handles the problem of continuous growth of sysaux table space without downtime
php中通过集合collect的方法来实现把某个值插入到数组中指定的位置
第一个快应用(quickapp)demo
SQLI-LABS通關(less6-less14)
Check log4j problems using stain analysis
Sqli-labs customs clearance (less2-less5)
腾讯机试题
Oracle段顾问、怎么处理行链接行迁移、降低高水位
MySQL组合索引加不加ID
华为机试题-20190417
oracle-外币记账时总账余额表gl_balance变化(上)
ARP attack
华为机试题
2021-07-05C#/CAD二次开发创建圆弧(4)
Basic knowledge of software testing
php中的数字金额转换大写数字
Oracle apex 21.2 installation and one click deployment
PM2 simple use and daemon
php中在二维数组中根据值返回对应的键值