This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Produced by running https://gist.github.com/mbollmann/827a079023ebdd18b4d06c28566fac0d | |
| # with flags -o -e -c -w on commit 5a875471 | |
| 1993.tmi.yaml['1993.tmi-1.17']: Value of root['author_string'] changed from "Pierre Isabelle, Marc Dymetman, George Foster, Jean-Marc Jutras, Elliott" to "Pierre Isabelle, Marc Dymetman, George Foster, | |
| Jean-Marc Jutras, Elliott". | |
| 1993.tmi.yaml['1993.tmi-1.22']: Value of root['author_string'] changed from "Masaru Tomita, Masako Shirai, Junya Tsutsumi, Miki Matsumura, Yuki" to "Masaru Tomita, Masako Shirai, Junya Tsutsumi, Miki | |
| Matsumura, Yuki". | |
| 2005.iwslt.yaml['2005.iwslt-1.6']: Value of root['author_string'] changed from "Sanjika Hewavitharana, Bing Zhao, Hildebrand, Almut Silja, Matthias Eck, Chiori Hori, Stephan Vogel, Alex Waibel" to | |
| "Sanjika Hewavitharana, Bing Zhao, Hildebrand, Almut Silja, Matthias Eck, Chiori Hori, Stephan Vogel, Alex Waibel". | |
| 2006.amta.yaml['2006.amta-panel1.0']: Value of root['url'] changed from "https://aclanthology.org/2006.amta-panels.0/" to "h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ID | Canonical | Implicit variant | |
|---|---|---|---|
| abdelmajid-ben-hamadou | Ben Hamadou, Abdelmajid | Hamadou, Abdelmajid Ben | |
| adolfo-hernandez-h | Hernández H., Adolfo | H., Adolfo Hernández | |
| adria-de-gispert | de Gispert, Adrià | De Gispert, Adria | |
| adria-de-gispert | de Gispert, Adrià | de Gispert, Adria | |
| ahmed-aburaed | AbuRa’ed, Ahmed | Abura’Ed, Ahmed | |
| alberto-bugarin-diz | Bugarín Diz, Alberto | Bugarín-Diz, Alberto | |
| alberto-bugarin-diz | Bugarín Diz, Alberto | Diz, Alberto Bugarín | |
| alexander-g-hauptmann | Hauptmann, Alexander G. | Hauptmann, Alexander G | |
| alexander-m-rush | Rush, Alexander M. | Rush, Alexander M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright 2025 Marcel Bollmann <marcel@bollmann.me> | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import "@preview/zero:0.5.0": num, format-table | |
| // Configure output | |
| #set text(font: "Libertinus Serif") | |
| #show math.equation: set text(font: "Libertinus Math") | |
| #let min-water = 200 | |
| #let max-water = 500 | |
| #let min-ratio = 13 | |
| #let max-ratio = 20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import msgspec | |
| import timeit | |
| import yaml | |
| from yaml import CLoader | |
| yaml_path = "../data/yaml/people.yaml" | |
| json_path = "../data/yaml/people.json" | |
| def load_yaml(): |
OlderNewer