From 98c25e0fc9684f6f475c872d72a0df77d39601c9 Mon Sep 17 00:00:00 2001 From: Haris Riaz Date: Sun, 6 Sep 2026 19:26:05 +0000 Subject: [PATCH] SiPE paper blog link Adds a Blog page listing posts written by lab members, starting with the walkthrough of our EMNLP 2026 SiPE paper. The page picks up the shared layout and appears in the nav automatically via the order front matter. --- blog.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 blog.md diff --git a/blog.md b/blog.md new file mode 100644 index 0000000..c8e6a71 --- /dev/null +++ b/blog.md @@ -0,0 +1,13 @@ +--- +layout: default +title: "Blog" +order: 5 +--- + +Posts by lab members about our research. + +Haris Riaz, 9/2026: +[Introducing Syntax-Informed Positional Embeddings (SiPE)](https://hriaz17.github.io/SiPE/) + +A walkthrough of our EMNLP 2026 paper: how a dependency parse is compressed into two tags per word, where those tags should enter a Transformer, and why the simplest way of combining them works best. +[[paper]](https://arxiv.org/abs/2608.06111) [[code]](https://github.com/hriaz17/SiPE)