摘要: 1990s-2010s: Statistical Machine Translation Core idea: Learn a probabilistic model from data best English sentence y, given French sentence x, by bay 阅读全文
posted @ 2018-04-22 20:32 ichneumon 阅读(319) 评论(0) 推荐(0) 编辑
摘要: Other Computer Vision Tasks Semantic Segmentation. Pixel level, don't care about instances. Classification + Localization. Single object. Object Detec 阅读全文
posted @ 2018-03-04 16:27 ichneumon 阅读(530) 评论(0) 推荐(0) 编辑
摘要: Recaption on CNN Architecture Although Serena is very beautiful, Justin is a better lecturer. Love him. Recurrent Neural Network Meant to process sequ 阅读全文
posted @ 2018-03-04 11:32 ichneumon 阅读(514) 评论(0) 推荐(0) 编辑
摘要: Review: LeNet-5 1998 by LeCun, one conv layer. Case Study: AlexNet [Krizhevsky et al. 2012] It uses a lot of mordern techniques where is still limited 阅读全文
posted @ 2018-03-03 21:28 ichneumon 阅读(528) 评论(0) 推荐(0) 编辑
摘要: CPU and GPU If you aren’t careful, training can bottleneck on reading data and transferring to GPU! Solutions: - Read all data into RAM - Use SSD inst 阅读全文
posted @ 2018-03-03 17:21 ichneumon 阅读(323) 评论(0) 推荐(0) 编辑
摘要: Review Activation Functions. Sigmoid, tanh, ReLU(good default choice). Optimization Optimization algorithms SGD. Problems: jitering or stop at saddle 阅读全文
posted @ 2018-03-03 15:59 ichneumon 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 报GPU内存不够, 考虑改小batch_size GPUTensor和CPUTensor不匹配, 查load模型的时候是否忘记layer = layer.cuda() 阅读全文
posted @ 2018-01-24 13:35 ichneumon 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 如题, 每次重启都报错, 太闹心了. 只是搜狗输入法崩溃而已, ubuntu一定要告诉你, 还用内部错误来吓唬你XD 虽然可以每次清空/var/crash, 但还是很难受, 直接卸载apport图个清净. 或者把/etc/default/apport里的enable改成0即可. 阅读全文
posted @ 2018-01-19 15:24 ichneumon 阅读(840) 评论(0) 推荐(0) 编辑
摘要: 之前ubuntu出了点问题, dpkg用不了导致装不上VSCode, 今天重启突然好了, 然后就果断弃vim了. Conda env 因为用的conda管理虚拟环境, 需要设置python路径, 我这里是 "python.pythonPath": "/home/ichn/Software/anaco 阅读全文
posted @ 2018-01-18 21:09 ichneumon 阅读(869) 评论(0) 推荐(0) 编辑
摘要: tmux的使用方法和个性化配置 阅读全文
posted @ 2018-01-18 10:07 ichneumon 阅读(186) 评论(0) 推荐(0) 编辑
摘要: emm... 先装上Vundle. git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim 然后就随意装插件了. jedi-vim是真的神器, 就是ssh过去有点卡orz 阅读全文
posted @ 2018-01-18 01:09 ichneumon 阅读(1323) 评论(0) 推荐(0) 编辑
摘要: 分两部分做. 第一部分是无损文本压缩, 第二部分是sentence level text summarization, 唤作有损文本压缩. 这部分就放弃了, 估计做不出来, 没必要庸人自扰. 不要对第二部分寄太高期望, 因为大概率完不成, 毕竟我对这一领域之前毫无接触. 果然, 你个小辣鸡. 实验, 阅读全文
posted @ 2018-01-07 10:51 ichneumon 阅读(293) 评论(0) 推荐(0) 编辑
摘要: http://acm.timus.ru/problem.aspx?space=1&num=1469 写得巨丑, 有空重写一发吧. 阅读全文
posted @ 2017-12-11 20:09 ichneumon 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 转投win10, 挺好的. powershell真鸡儿难用... 添加alias 建立 C:\Users\ichne\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 每次ps运行会先执行这个脚本. 里面写 new-alias 阅读全文
posted @ 2017-11-28 16:43 ichneumon 阅读(1484) 评论(0) 推荐(0) 编辑
摘要: 题意 给你一个魔改版的跳棋, 模拟操作, 最后输出局面 做法 用链表建完棋盘后就很简单了. 一开始写起来比较烦, 最后悟到建棋盘其实就是一个描述过程, 你大可用纯粹用代码来描述, 这不可避免大量的讨论; 也可以用数据来描述, 手动输入每个点六个方向的点是谁, 这枯燥的输入绝对无法正确搞定, 那么其实 阅读全文
posted @ 2017-11-22 20:12 ichneumon 阅读(429) 评论(0) 推荐(0) 编辑