摘要:
职业选择 真正成功的可持续性职业是靠职场燃料驱动的 工具、技巧和结论 技能和商业技能 建议简介和实践经验 工作与职业生涯 1. 职场关系持续时间长 第一阶段强势开局。学习曲线要比职位和职称更加重要,建立良好的早期习惯;第二阶段聚焦长板。找到甜点,即所擅长的、所热爱的和这个世界需要的交点;第三阶段实现 阅读全文
摘要:
多层双向GRU 参考: "博客" RNN在使用过程中会出现梯度爆炸 (exploding gradients) 和梯度消失 (vanishing gradients) 两种问题: 梯度爆炸 这个问题通常出现在深度神经网络中 (多层网络),当使用梯度回传时,梯度可能会爆炸。这个问题可以使用 gradi 阅读全文
摘要:
CH08 Advanced Sequence Modeling for Natural Language Processing 摘要:这部分主要介绍了seq2seq中的attention机制,之前对attention机制一知半解。 The mapping between the output and 阅读全文
摘要:
简单题二 1. (leetcode 204) 求解质数个数 求解质数,使用筛法; python Definition for singly linked list. class ListNode(object): def __init__(self, x): self.val = x self.ne 阅读全文
摘要:
新买了surface pro 6, 需要配置开发环境。之前使用ubuntu安装软件很方便,缺啥直接安装就行,但是在win下似乎要麻烦一点。 安装anaconda,需要先到官网下载安装文件,安装完后: 1. 在命令行运行 anaconda,显示没有改命令 解决办法:将 C:\ProgramData\A 阅读全文
摘要:
A quick tour of traditional NLP Copora, Tokens, and Types corpus : a text dataset tokens : tokens correspond to words and numeric sequences separated 阅读全文
摘要:
堆 1. (leetcode 703) 数据流中的第k大元素 利用小顶堆 栈 1. leetcode 20 有效的括号 2. (leetcode 155)最小栈 3. (leetcode 225) 队列实现栈 4. (leetcode 496) 下一个更大的元素 5. (leetcode 682) 阅读全文
摘要:
Introduction What does understanding language mean? This “understanding” of text is mainly derived by transforming texts to useable computational repr 阅读全文