concepts
- forward and backward propagation
- vanishing gradient
- image convolution operation
- feature map, filter/kernel
- receptive field
- embedding
- translation invariance
| function virtualenv_info(){ | |
| # Get Virtual Env | |
| if [[ -n "$VIRTUAL_ENV" ]]; then | |
| # Strip out the path and just leave the env name | |
| venv="${VIRTUAL_ENV##*/}" | |
| else | |
| # In case you don't have one activated | |
| venv='' | |
| fi | |
| [[ -n "$venv" ]] && echo "($venv)" |
I screwed up using git ("git checkout --" on the wrong file) and managed to delete the code I had just written... but it was still running in a process in a docker container. Here's how I got it back, using https://pypi.python.org/pypi/pyrasite/ and https://pypi.python.org/pypi/uncompyle6
apt-get update && apt-get install gdb
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>React template</title> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
| <link rel="stylesheet" type="text/css" href="main.css"> | |
| </head> | |
| <body> | |
| <div id="container"></div> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react.js"></script> |
| #include <algorithm> | |
| #include <sstream> | |
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <iterator> | |
| #include <list> | |
| #include <stack> | |
| #include <map> | |
| #include <unordered_map> |
| { | |
| "auto_complete": false, | |
| "color_scheme": "Packages/User/Kary Foundation - Light.tmtheme", | |
| "detect_indentation": true, | |
| "ensure_newline_at_eof_on_save": true, | |
| "file_exclude_patterns": | |
| [ | |
| ".*", | |
| "*.pyc", | |
| "*.class", |