上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
摘要: PyTorch in Action: A Step by Step Tutorial Installation Guide Step 1, donwload the Miniconda and installing it on your computer. The reason why explai 阅读全文
posted @ 2018-12-14 17:35 健康平安快乐 阅读(507) 评论(0) 推荐(0) 编辑
摘要: Windows SubSystem for Linux Install Ubuntu Run PowerShell as administrator and input: Install Ubuntu 18.04 LTS from Microsoft Store Setup SSH Remove i 阅读全文
posted @ 2018-11-23 16:30 健康平安快乐 阅读(678) 评论(0) 推荐(0) 编辑
摘要: Vim Tricks operations replace 阅读全文
posted @ 2018-11-03 13:52 健康平安快乐 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 刘洋-从国内三本到牛津博士 我第一次买知乎Live。 作者简介 刘洋,2006年高考,进入一所三本院校(中国海洋大学青岛学院),考研进入北大计算机软件工程(专硕)。创业期间做的项目是通过APP来获取用户手机的信息,然后进行广告推送和精准营销。 CSC(中国公派留学基金委) 分为两种: 学费由录取你的 阅读全文
posted @ 2018-10-24 19:17 健康平安快乐 阅读(3329) 评论(0) 推荐(0) 编辑
摘要: Pandas 学习笔记 pandas 由两部份组成,分别是 Series 和 DataFrame。 Series 可以理解为“一维数组、列表、字典” DataFrame 可以理解为"二维矩阵、表格、字典",可以视为是由 Series 组成的字典。 创建 output: 阅读全文
posted @ 2018-10-23 21:51 健康平安快乐 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Netbeans and Remote Host for C/C++ Developing 很久以来,因为我不适应在 Linux 下使用 Vim, GCC, GDB 开发 C/C++ 程序,所以我一直找了很多办法在逃避。 然而现在好了,Netbeans 可以配置远端构建和运行代码的机器,于是我可以在 阅读全文
posted @ 2018-10-18 18:49 健康平安快乐 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 排序引论 选择排序 “一种最简单的排序算法”——《算法(第4版)》 C++代码实现 c++ include include include using namespace std; //选择排序 template void selectionSort(vector &v) { vector::ite 阅读全文
posted @ 2018-09-28 22:16 健康平安快乐 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 分枝定界法解0/1背包问题 关键词 :分支定界、0 1背包 分枝定界法简介 分枝定界法按照树形结构来组织解空间,展开节点后,有两种策略: 策略一、把节点加入 FIFO 队列当中; 策略二、把节点加入到堆中,按照最小消耗或者最大消耗来选择下一个展开节点 。 感悟 分枝定界法是一类能确保搜索到全部可行解 阅读全文
posted @ 2018-09-08 16:26 健康平安快乐 阅读(929) 评论(2) 推荐(0) 编辑
摘要: 翻译 Improved Word Representation Learning with Sememes 题目 Improved Word Representation Learning with Sememes 融合义原知识的词汇表示学习 摘要 Abstract Sememes are mini 阅读全文
posted @ 2018-07-25 14:35 健康平安快乐 阅读(1371) 评论(0) 推荐(0) 编辑
摘要: Deep Learning for NLP The First Paper Proposed Bi LSTM+CRF 我认为,第一篇提出 Bi LSTM+CRF 架构的文章是: Huang Z, Xu W, Yu K, et al. Bidirectional LSTM CRF Models for 阅读全文
posted @ 2018-07-19 21:29 健康平安快乐 阅读(152) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页