CS224W Course Notes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Michele Catasta 8fc41b9169
Delete pull_request_template.md
4 years ago
_data Initial site construction 4 years ago
_includes Update CS 228 reference 4 years ago
_layouts Allow for uppercase titles 4 years ago
_sass Initial site construction 4 years ago
assets Add Message Passing and Node Classification notes (#16) 4 years ago
css Allow for centering images 4 years ago
fonts Initial site construction 4 years ago
machine-learning-with-networks Add Message Passing and Node Classification notes (#16) 4 years ago
network-methods Complete network effects (#18) 4 years ago
preliminaries Fix type in math command 4 years ago
.gitignore Influence Maximization and Outbreak Detection (#12) 4 years ago
LICENSE Initial site construction 4 years ago
Makefile Initial site construction 4 years ago
README.md Initial site construction 4 years ago
_config.yml Add Message Passing and Node Classification notes (#16) 4 years ago
index.md Add Message Passing and Node Classification notes (#16) 4 years ago

README.md

cs224w-notes

CS224W course notes.

Contributing

The notes are written in Markdown and are compiled into HTML using Jekyll. Please add your changes directly to the Markdown source code. This repo is configured without any extra Jekyll plugins so it can be compiled directly by GitHub Pages. Thus, any changes to the Markdown files will be automatically reflected in the live website.

To make any changes to this repo, first fork this repo. Make the changes you want and push them to your own forked copy of this repo. Finally, go back to the GitHub website to create a pull request to bring your changes into the snap-stanford/cs224w-notes repo.

If you want to test your changes locally before pushing your changes to the master branch, you can run Jekyll locally on your own machine. In order to install Jekyll, you can follow the instructions posted on their website (https://jekyllrb.com/docs/installation/). Then, do the following from the root of your cloned version of this repo:

  1. Make whatever changes you want to the Markdown .md files.
  2. rm -r _site/ # remove the existing compiled site
  3. jekyll serve # this creates a running server
  4. Open your web browser to where the server is running and check the changes you made.

Notes about writing math equations

  • Start and end math equations with $$ for both inline and display equations! To make a display equation, put one newline before the starting $$ a newline after the ending $$.

  • Avoid vertical bars | in any inline math equations (ie. within a paragraph of text). Otherwise, the GitHub Markdown compiler interprets it as a table cell element (see GitHub Markdown spec here). Instead, use one of \mid, \vert, \lvert, or \rvert instead. For double bar lines, write \| instead of ||.