-
Sublime Text 3 As Python IDE
Install Package Control
- Copy the Python code for Sublime Text 3 from here, click
View->Show Console
to open the ST3 console, Paste the code into the console, press Enter. Reboot ST3.
- Press
CMD + Shift + P
, and typingInstall Package
, and Press Enter. - Click
Sublime Text -> Preferences -> Settings-User
, to add
- Copy the Python code for Sublime Text 3 from here, click
-
Install Jekyll for github pages
Install Ruby Environment
brew install rbenv
- Add
"eval $(rbenv init -)"
to the end of~/.bash_profile
- Install a ruby version
rbenv install 2.3.0
- Select a ruby version by rbenv
rbenv global 2.3.0
- Open a new terminal window
- Verify that the right gem folder is being used with
gem env home
(should report something your user folder not system wide)
-
An explanation on TensorFlow language model tutorial
A lot of TensorFLow beginners feel that the code of the rnn language model supporting the official tutorial is a little bit obscure. It has almost stopped me from diving into deep learning. It spent me a lot of time to figure out what the code is trying to say, since it’s quite different from what they describe in the tutorial.
-
The First Github Page For Testing Github Blog
This post is to test the eligible of static pages using
jekyll
andmathjax
toolkit. -
Install TensorFlow in Virtualenv without sudo privilege
Install Virtualenv without sudo privilege
- Download and unzip one of the latest pacages:
1 2
wget https://github.com/pypa/virtualenv/archive/15.1.0.tar.gz tar -zxvf 15.1.0.tar.gz