<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://wai-org.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://wai-org.com/" rel="alternate" type="text/html" hreflang="en" /><updated>2026-06-09T16:44:51+00:00</updated><id>https://wai-org.com/feed.xml</id><title type="html">WAI</title><subtitle>WAI is a student-led organization formed by PhD students in the University of Washington CS NLP group, incubating open-source projects and research.</subtitle><author><name>WAI</name></author><entry><title type="html">Welcome to the WAI blog</title><link href="https://wai-org.com/blog/welcome-to-the-wai-blog/" rel="alternate" type="text/html" title="Welcome to the WAI blog" /><published>2026-05-11T00:00:00+00:00</published><updated>2026-05-11T00:00:00+00:00</updated><id>https://wai-org.com/blog/welcome-to-the-wai-blog</id><content type="html" xml:base="https://wai-org.com/blog/welcome-to-the-wai-blog/"><![CDATA[<p>This is the first post on the WAI blog. We started WAI to incubate open-source
projects and research coming out of the University of Washington CS NLP
group,^[WAI is run entirely by PhD students. If you’d like to get involved,
reach out — we’re always looking for collaborators.] and this blog is where
we’ll share what we learn along the way.</p>

<p>This post doubles as a quick tour of how posts are written and rendered, so you
can see the features available to you before writing your own.</p>

<h2 id="sidenotes">Sidenotes</h2>

<p>The signature feature of this theme is Tufte-style sidenotes. Any Markdown
footnote becomes a numbered note in the margin on wide screens, and collapses
inline on narrow screens.^[Like this one. Sidenotes are great for citations,
asides, and definitions that would otherwise interrupt the flow of the main
text.] They keep references close to where they’re mentioned without breaking
your reading.</p>

<p>You can also cite work inline the same way.^[Vaswani, A. et al. “Attention Is
All You Need.” <em>NeurIPS</em>, 2017.] Write a footnote and it becomes a margin note
automatically.</p>

<h2 id="math">Math</h2>

<p>Inline math works with single dollar signs: the loss is $\mathcal{L}(\theta)$.
Display math is rendered with KaTeX:</p>

\[\mathcal{L}(\theta) = -\frac{1}{N} \sum_{i=1}^{N} \log p_\theta(y_i \mid x_i)\]

<p>Set <code class="language-plaintext highlighter-rouge">math: true</code> in a post’s front matter to load KaTeX on that page.</p>

<h2 id="code">Code</h2>

<p>Code blocks are styled for readability, with inline <code class="language-plaintext highlighter-rouge">code</code> too:</p>

<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">def</span> <span class="nf">softmax</span><span class="p">(</span><span class="n">x</span><span class="p">):</span>
    <span class="n">x</span> <span class="o">=</span> <span class="n">x</span> <span class="o">-</span> <span class="n">x</span><span class="p">.</span><span class="nb">max</span><span class="p">(</span><span class="n">axis</span><span class="o">=-</span><span class="mi">1</span><span class="p">,</span> <span class="n">keepdims</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
    <span class="n">e</span> <span class="o">=</span> <span class="n">np</span><span class="p">.</span><span class="n">exp</span><span class="p">(</span><span class="n">x</span><span class="p">)</span>
    <span class="k">return</span> <span class="n">e</span> <span class="o">/</span> <span class="n">e</span><span class="p">.</span><span class="nb">sum</span><span class="p">(</span><span class="n">axis</span><span class="o">=-</span><span class="mi">1</span><span class="p">,</span> <span class="n">keepdims</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
</code></pre></div></div>

<h2 id="lists-and-quotes">Lists and quotes</h2>

<ul>
  <li>Open-source projects and tools</li>
  <li>Research write-ups and notes</li>
  <li>Project updates from the lab</li>
</ul>

<blockquote>
  <p>We believe science is better when it is shared.</p>
</blockquote>

<h2 id="writing-your-own-post">Writing your own post</h2>

<p>Add a Markdown file to <code class="language-plaintext highlighter-rouge">_posts/</code> named <code class="language-plaintext highlighter-rouge">YYYY-MM-DD-title.md</code>, include the front
matter above, and push to <code class="language-plaintext highlighter-rouge">main</code>. GitHub Actions builds the site with Pandoc and
deploys it. That’s it.</p>]]></content><author><name>WAI</name></author><summary type="html"><![CDATA[An introduction to WAI and a tour of the blog's formatting features.]]></summary></entry></feed>