This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
syntax enable | |
set background=light | |
let g:solarized_contrast="high" | |
colorscheme solarized | |
set guifont=Hack:h20 | |
set showmatch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
baseurl = "the github.io link" | |
title = "title of the blog" | |
theme = "hugo-theme-nix" | |
languageCode = "en-us" | |
#disqusShortname = "your_disqus_shortname" | |
[menu] | |
[[menu.header]] | |
name = "blog" | |
weight = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%%time | |
# -*- coding: utf-8 -*- | |
'''An implementation of sequence to sequence learning for performing addition | |
Input: "535+61" | |
Output: "596" | |
Padding is handled by using a repeated sentinel character (space) | |
Input may optionally be inverted, shown to increase performance in many tasks in: | |
"Learning to Execute" | |
http://arxiv.org/abs/1410.4615 |
NewerOlder