Skip to content

Latest commit

 

History

History
86 lines (65 loc) · 2.77 KB

File metadata and controls

86 lines (65 loc) · 2.77 KB

+++ title = "Attention and Augmented Recurrent Neural Networks" description = "This is a demo article." date = "2017-01-10" thumbnail = "" categories = [ "demo" ] tags = []

vega = true

[distill] [distill.supportFiles] dtitle = "dtitle.html" appendix = "appendix.html" bibliography = "refs.bib"

[[distill.authors]] author = "Chris Olah" authorURL = "http://colah.github.io/"

[[distill.authors.affiliations]]
name = "Google Brain"
url = "http://g.co/brain"

[[distill.authors]] author = "Shan Carter" authorURL = "http://shancarter.com"

[[distill.authors.affiliations]]
name = "Google Brain"
url = "http://g.co/brain"

+++

This is the first paragraph of the article. Test a long — dash — here it is.

This is the first paragraph of the article. Test a long — dash — here it is.

Test for owner’s possessive. Test for "quoting a passage." And another sentence. Or two. Some flopping fins; for diving.

Here’s a test of an inline equation {{}}c = a^2 + b^2{{}}. And then there’s a block equation: {{}} c = \pm \sqrt{ \sum_{i=0}^{n}{a^{222} + b^2}} {{}}

We can {{}} also cite {{}} external publications. {{}}.

We should also be testing footnotes{{}}This will become a hoverable footnote. This will become a hoverable footnote. This will become a hoverable footnote. This will become a hoverable footnote. This will become a hoverable footnote. This will become a hoverable footnote. This will become a hoverable footnote. This will become a hoverable footnote.{{}}. There are multiple footnotes, and they appear in the appendix{{}}Given I have coded them right. Also, here’s math in a footnote: {{}}c = \sum_0^i{x}{{}}. Also, a citation. Box-ception {{}}! {{}} as well.

First Second Third
23 654 23
14 54 34
234 54 23

Displaying code snippets

Some inline javascript: {{}}var x = 25;{{}}

Here’s a javascript code block. {{}} var x = 25; function(x){ return x * x; } {{}}

We also support python. {{}}

Python 3: Fibonacci series up to n

def fib(n): a, b = 0, 1 while a < n: print(a, end=' ') a, b = b, a+b {{}}

And guess what! We also have Vega-Lite embedded graphs!

{{}}

That’s it for the example article!