2019-03-30 Week 13
Shares From Internet
-
Convolutional Neural Networks (Course 4 of the Deep Learning Specialization)
-
ubuntu screenshots and screencasts
Prt Scrn
to take a screenshot of the desktop.Alt+Prt Scrn
to take a screenshot of a window.Shift+Prt Scrn
to take a screenshot of an area you select.
2019-03-23 Week 12
Shares From Internet
- Experienced programmers, how do you learn new language?
- Learning multiple languages vs. mastering one
- Python - You can do almost everything well in Python. Make lots of stuff
- Command Line & Bash - How systems are glued together. Deploy the stuff you make.
- GNU Regex & awk - How to find things …
2019-03-16 Week 11
2019-03-09 Week 10
Shares From Internet
- How to Develop a Word Embedding Model for Predicting Movie Review Sentiment: introduce how to do word embedding in keras and gensim and compare their performance on the movie review data.
- Ludwig: a toolbox from uber that allows you to train and test deep learning models without …
2019-03-02 Week 9
Shares From Internet
- Visualizing gradient descent in action An ineresting project to show how learning rate will affect the converge. If LR is too small, it will converge very slowly. If LR is too big(like 1.01), it will diverge.
- How to add new embeddings for unknown words in …
How to keep alive ssh sessions
1. On AWS to connect with ServerAliveInterval=100
ssh -i ~/.ssh/xxxx.pem ubuntu@hithere.amazonaws.com -o ServerAliveInterval=100
2. General Setup
Many NAT firewalls time out idle sessions after a certain period of time to keep their trunks clean. Sometimes the interval between session drops is 24 hours …
2019-02-23 Week 8
Shares From Internet
- Handling Categorical Data in Python
- Categorical features may have a very large number of levels, known as high cardinality, (for example, cities or URLs), where most of the levels appear in a relatively small number of instances.
- Many machine learning models, such as regression or SVM or …
2019-02-16 Week 7
Shares From Internet
- What Kagglers are using for Text Classification
- What Kagglers Are Using for Text Classification | Hacker News
- 字词的向量表示法 | TensorFlow
- Sutton & Barto Book: Reinforcement Learning: An Introduction
- GitHub - sdmg15/Best-websites-a-programmer-should-visit: Some useful websites for programmers.
- memory ram usage in linux
bash echo …
Install nvidia driver on ubuntu, install fastai and pytorch
summary of how to install nvidia drivers on ubuntu for deep learning.