上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: jieguoThe BIOS is responsible for performing basic system initialization such as activating the video card and checking the amount of memory installed 阅读全文
posted @ 2020-03-10 09:13 虾野百鹤 阅读(549) 评论(0) 推荐(0)
摘要: 文章采用的记号与变量: 1. 用 $\left\{\mathbf{W}_{k}: 0 \leq k \leq C\right\}$ 中的 $W_k$ 表示第 k 层的连接的矩阵, 2. 对于一个有 $p$ 维的输入与 $q$ 维的输出, 矩阵 $W_k$ 的维度为 $q_{k} \times p_{ 阅读全文
posted @ 2020-03-03 15:32 虾野百鹤 阅读(444) 评论(0) 推荐(0)
摘要: 什么是Attention 在 seq to seq 模型中, 我们常常在 decoder 阶段加入Attention 机制, 主要是对于decoder 的隐含层输入, 引入更多的有关 encoder 序列中, 中间步骤的信息. 在这里就不详细解释了, 我们将Attention 从模型中剥离出来, 以 阅读全文
posted @ 2020-02-26 21:31 虾野百鹤 阅读(1199) 评论(1) 推荐(0)
摘要: 什么是线索二叉树 线索二叉树主要体现在二叉树的 DFS 中, 也就是前序, 中序, 与后序遍历, 我们以中序遍历为例, 讲述线索二叉树线索的原理. 线索主要表现在, DFS 的过程中记录遍历的前驱与后继节点, 可以用下面的图来表示节点, lbitlbitlchildlchilddatadatarch 阅读全文
posted @ 2020-02-24 18:44 虾野百鹤 阅读(539) 评论(0) 推荐(0)
摘要: C. Obtain The String You are given two strings $s$ and $t$ consisting of lowercase Latin letters. Also you have a string $z$ which is initially empty. 阅读全文
posted @ 2020-02-14 10:37 虾野百鹤 阅读(270) 评论(0) 推荐(0)
摘要: Greedy algorithm is used to solve a problem with a heuristic way, In many problems, a greedy strategy does not usually produce an optimal solution , b 阅读全文
posted @ 2019-12-30 09:38 虾野百鹤 阅读(175) 评论(1) 推荐(0)
摘要: The problems of NMT Model I[Not supported by viewer]am[Not supported by viewer]a[Not supported by viewer]student[Not supported by viewer]source langua 阅读全文
posted @ 2019-12-27 09:14 虾野百鹤 阅读(257) 评论(0) 推荐(0)
摘要: 题目 代码 c++ include include include include include using namespace std; char code[669][10002][70] = {0}; void Move_Str(char Old) // 将字符串向前移动,每次判断的是队列的最 阅读全文
posted @ 2019-09-12 19:19 虾野百鹤 阅读(206) 评论(1) 推荐(0)
摘要: 自然语言处理之LSA LSA(Latent Semantic Analysis), 潜在语义分析。试图利用文档中隐藏的潜在的概念来进行文档分析与检索,能够达到比直接的关键词匹配获得更好的效果。 LSA的核心思想 假设有 nn 篇文档,这些文档中的单词总数为 mm (可以先进行分词、去词根、去停止词操 阅读全文
posted @ 2019-07-29 21:14 虾野百鹤 阅读(1838) 评论(0) 推荐(2)
摘要: BERT模型是什么 BERT的全称是Bidirectional Encoder Representation from Transformers,即双向Transformer的Encoder,因为decoder是不能获要预测的信息的。模型的主要创新点都在pre train方法上,即用了Masked 阅读全文
posted @ 2019-07-15 21:11 虾野百鹤 阅读(2587) 评论(0) 推荐(1)
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页