17. Letter Combinations of a Phone Number
摘要:description: Given a string containing digits from 2 9 inclusive, return all possible letter combinations that the number could represent. A mapping o
阅读全文
A Network-based End-to-End Trainable Task-oriented Dialogue System
摘要:abstract 让机器去和人类自然的交谈是具有挑战性的。最近的任务型对话系统需要创造几个部分并且通常这需要大量的人工干预,或者需要标注数据去解决各部分训练的问题。在这里我们提出了一种端到端的任务型对话系统,它采取了一种基于管道框架的新颖的收集对话数据的方法。这个方法允许我们轻松实现对话系统而不用过
阅读全文
14. Longest Common Prefix
摘要:description: Write a function to find the longest common prefix string amongst an array of strings. 找到几个字符串的最大前缀,英语不好是硬伤gg prefix string 前缀!!!!! If th
阅读全文
13. Roman to Integer
摘要:description: 把罗马数字转换成阿拉伯数字 Note: my answer: "感恩" 大佬的answer: class Solution { public: int romanToInt(string s) { int res = 0; unordered_mapm = {{'I', 1
阅读全文
12. Integer to Roman
摘要:description: 把阿拉伯数字转换成罗马数字 Note: my answer: "感恩" 大佬的answer:真的在leetcode里写代码的时候要时刻注意还是不是英文半角,要不然真的崩溃,哪出错都不知道 class Solution { public: string intToRoman(
阅读全文
10. Regular Expression Matching
摘要:description: Given an input string (s) and a pattern (p), implement regular expression matching with support for '.' and ' '. The matching should cove
阅读全文
今天晴儿和老佛爷又一起上台了
摘要:刚才看老佛爷和晴儿又一起了,当时真的没有多感动,再看真的是 枕风宿雪多年 我与虎谋早餐 拎着钓叟的鱼弦 问卧龙几两钱 蜀中大雨连绵 关外横尸遍野 你的笑像一条恶犬 撞乱了我的心弦 烽烟万里如衔 掷群雄下酒宴 谢绝策勋十二转 想为你窃玉簪 入巷间吃汤面 笑看窗边飞雪 取腰间明珠弹朱雀 立琵琶于庭前
阅读全文
9. Palindrome Number
摘要:description: Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. my answer: "感恩" rela
阅读全文
8. String to Integer (atoi)
摘要:description: Implement atoi which converts a string to an integer. 实现string转integer的功能 The function first discards as many whitespace characters as ne
阅读全文
是风动
摘要:你是我身外 化白云任去来 我是你途中 有青山撞入怀 不动声色见你如是才自在 关山难越 谁悲失路之人 萍水相逢 尽是他乡之客 山颜海貌 早已韶华暗换 沧海桑田 站在三岔路口 眼见着风云千樯 做出抉择的一天 日记上确是相当平凡的一天
阅读全文
7. Reverse Integer
摘要:description: Given a 32 bit signed integer, reverse digits of an integer. my answer: "感恩" relative point get√: hint : 关键在于处理溢出情况
阅读全文
6. ZigZag Conversion
摘要:description: The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in
阅读全文
5. Longest Palindromic Substring
摘要:description: Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example: my answer: 解
阅读全文
DM浅尝辄止
摘要:"都是大佬的笔记啊啊啊啊" /) dialog management 对话状态维护(dialog state tracking, DST) 生成系统决策(dialog policy) 系统行为(dialog act) 对话状态(DS) 三种方法: structure based 关键词:通过捕捉用户
阅读全文
一些资源网站..
摘要:github上各种免费编程书籍~~~ : https://github.com/EbookFoundation/free programming books/blob/master/free programming books zh.md 正则表达式学习 : https://web.archive.
阅读全文
tensorflow-learning-where-what-how
摘要:这么优秀的外国小哥哥... https://github.com/machinelearningmindset/TensorFlow Course tensorboard使用:https://github.com/secsilm/understanding tensorboard tensorflo
阅读全文
github咋用昂
摘要:github trend:https://github.com/trending github usingway:https://zhuanlan.zhihu.com/p/41899093 github topics:https://github.com/topics
阅读全文
《RECURRENT BATCH NORMALIZATION》
摘要:原文链接 https://arxiv.org/pdf/1603.09025.pdf Covariate 协变量:在实验的设计中,协变量是一个独立变量(解释变量),不为实验者所操纵,但仍影响实验结果。 whiting : https://blog.csdn.net/elaine_bao/article
阅读全文
TransE 算法学习笔记
摘要:http://yaoleo.github.io/2017/10/27/TransE%E7%AE%97%E6%B3%95%E7%9A%84%E7%90%86%E8%A7%A3/ tranE是在模型中嵌入知识图谱等三元组类的一个方法,就像是句子利用词典嵌入一样。
阅读全文
normalization 阅读笔记
摘要:https://zhuanlan.zhihu.com/p/33173246 阅读笔记 1. normalization whiting PCA 2. Internal Covariate Shift,简称 ICS. “源空间(source domain)和目标空间(target domain)的数据
阅读全文