├── .gitignore
├── .DS_Store
├── assets
├── my-title
│ ├── pred.png
│ ├── ref.png
│ ├── img2latex_task.svg
│ └── seq2seq_vanilla_encoder.svg
├── seal-dark-red.png
├── tensorflow-model
│ └── tensorboard.png
├── project-code-examples
│ └── training.png
├── js
│ └── header.js
└── css
│ ├── main.scss
│ └── custom.css
├── _includes
├── icon-github.html
├── icon-twitter.html
├── image.html
├── google-analytics.html
├── double-image.html
├── icon-twitter.svg
├── post-preview.html
├── icon-github.svg
├── footer.html
├── header.html
└── head.html
├── _layouts
├── page.html
├── default.html
├── post.html
└── home.html
├── README.md
├── _config.yml
├── index.md
├── Gemfile
├── _sass
├── minima.scss
└── minima
│ ├── _syntax-highlighting.scss
│ ├── _base.scss
│ └── _layout.scss
├── Gemfile.lock
└── _posts
├── 2018-01-10-my-title.md
├── 2018-02-01-aws-starter-guide.md
├── 2018-06-02-session-3.md
├── 2018-02-01-train-dev-test-split.md
├── 2018-02-01-logging-hyperparams.md
├── 2018-02-01-tensorflow-getting-started.md
├── 2018-06-02-session-4.md
├── 2018-02-01-pytorch-vision.md
├── 2018-02-01-pytorch-nlp.md
├── 2018-02-01-pytorch-getting-started.md
├── 2018-02-01-project-code-examples.md
├── 2018-02-01-tensorflow-model.md
└── 2018-02-01-tensorflow-input-data.md
/.gitignore:
--------------------------------------------------------------------------------
1 | _site
2 | .sass-cache
3 | .jekyll-metadata
4 |
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cs230-stanford/website-2018-winter/HEAD/.DS_Store
--------------------------------------------------------------------------------
/assets/my-title/pred.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cs230-stanford/website-2018-winter/HEAD/assets/my-title/pred.png
--------------------------------------------------------------------------------
/assets/my-title/ref.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cs230-stanford/website-2018-winter/HEAD/assets/my-title/ref.png
--------------------------------------------------------------------------------
/assets/seal-dark-red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cs230-stanford/website-2018-winter/HEAD/assets/seal-dark-red.png
--------------------------------------------------------------------------------
/assets/tensorflow-model/tensorboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cs230-stanford/website-2018-winter/HEAD/assets/tensorflow-model/tensorboard.png
--------------------------------------------------------------------------------
/assets/project-code-examples/training.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cs230-stanford/website-2018-winter/HEAD/assets/project-code-examples/training.png
--------------------------------------------------------------------------------
/_includes/icon-github.html:
--------------------------------------------------------------------------------
1 | {% include icon-github.svg %}{{include.username}}
2 |
--------------------------------------------------------------------------------
/_includes/icon-twitter.html:
--------------------------------------------------------------------------------
1 | {% include icon-twitter.svg %}{{ include.username }}
2 |
--------------------------------------------------------------------------------
/_layouts/page.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 | {{ page.title | escape }}
8 |
|
4 | |
5 |
6 | |
7 |
| {{ include.caption1 }} | 10 |{{ include.caption2 }} | 11 |
7 | {{ site.title | escape }}
8 |
9 |
10 | {% if site.display-site-nav %}
11 |
30 |
31 |