共有38篇生活随笔
论文解读:Explicit Utilization of General Knolwdge in Machine Reading Comprehension
# 论文解读:Explicit Utilization of General Knolwdge in Machine Reading Comprehension **摘要:** 为了弥补机器阅 ... [详情]
A Frame-based Sentence Representation for Machine Reading Comprehension
# A Frame-based Sentence Representation for Machine Reading Comprehension 机器阅读理解需要机器去阅读并理解一个文本,并根 ... [详情]
数据科学与工程算法基础
# 数据科学与工程算法基础 #一、绪论 算法的五个特性: - 有穷性 - 确定性 - 可行性 - 有输入 - 有输出 数据的生命周期: - 数据采集:数据的可靠性、代表性 ... [详情]
论文解读:Investigating Prior Knowledge for Challebnging Chinese Machine Reading Comprehension
## 论文解读:Investigating Prior Knowledge for Challebnging Chinese Machine Reading Comprehension 机构:C ... [详情]
论文解读:A Self-Training Method for Machine Reading Comprehension with Soft Evidence Extraction
## 论文解读:A Self-Training Method for Machine Reading Comprehension with Soft Evidence Extraction ** ... [详情]
论文解读:Improving the robustness of machine reading comprehension model with hierarchical knowledge and
## 论文解读:Improving the robustness of machine reading comprehension model with hierarchical knowledge ... [详情]
论文解读:Text Generation from Knowledge Graph with Graph Transformer
# 论文解读:Text Generation from Knowledge Graph with Graph Transformer 文本生成任务大多数的输入数据是序列化的结构数据; 生成任务 ... [详情]
从文本中自动抽取结构化三元组
# 从文本中自动抽取结构化三元组 参考文献【1】:[ICDM2019 Knowledge Graph Contest: Team UWA](https://arxiv.org/abs/1909. ... [详情]
预训练模型集锦
# 预训练模型集锦 ### 1、Attention Is All You Need(Transformer) #### 动机: (1)现如今在许多sequence modeling(序列 ... [详情]
算法小计
# 算法小计 ## 最大子序列和问题 **问题描述**:给定一个数组a,求最大连续子序列和 **思路**:使用动态规划法。 定义dp[i]表示从第0个字符到第i个字符中,最大子序列和。 ... [详情]