import {Template} from "../mixins/template"; import {body} from "./layout"; import mustache from "mustache"; const T = Template("distill-appendix", ` `, false); let mustacheTemplate = `

Updates and Corrections

View all changes to this article since it was first published. If you see mistakes or want to suggest changes, please create an issue on GitHub.

Reuse

Diagrams and text are licensed under Creative Commons Attribution CC-BY 2.0, unless noted otherwise, with the source available on GitHub. The figures that have been reused from other sources don’t fall under this license and can be recognized by a note in their caption: “Figure from …”.

Citation

For attribution in academic contexts, please cite this work as

Olah & Carter, "Attention and Augmented Recurrent Neural Networks", Distill, 2016.

BibTeX citation

@article{olah2016attention,
  author = {Olah, Chris and Carter, Shan},
  title = {Attention and Augmented Recurrent Neural Networks},
  journal = {Distill},
  year = {2016},
  note = {http://distill.pub/2016/augmented-rnns}
}
`; export default class DistillAppendix extends T(HTMLElement) { static get is() { return "distill-appendix"; } render(data) { this.innerHTML = mustache.render(mustacheTemplate, data); } } customElements.define(DistillAppendix.is, DistillAppendix);