Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .github/assets/aau.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/assets/corti.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/assets/dtu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/assets/pcai.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/assets/ucph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,18 @@ __Notes:__
- Use the `--help` flag to see all available options for `transcribe_dataset.py` and `evaluate_dataset.py`.
- All results reported in the paper are based on the test sets.

__Collaborators:__

<br/>

<div style="display: flex; align-items: center;">
<img src=".github/assets/corti.png" alt="Corti" height="75" style="margin-right: 50px;">
<img src=".github/assets/aau.png" alt="Aalborg Unversity" height="75" style="margin-right: 50px;">
<img src=".github/assets/pcai.png" alt="Pioneer Centre for Artificial Intelligence" height="75" style="margin-right: 50px;">
<img src=".github/assets/dtu.png" alt="Technical University of Denmark" height="75" style="margin-right: 50px;">
<img src=".github/assets/ucph.png" alt="University of Copenhagen" height="75">
</div>

<br/>

---
420 changes: 372 additions & 48 deletions poetry.lock

Large diffs are not rendered by default.

18 changes: 17 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@
name = "error-align"
version = "0.1.0b1"
description = "Text-to-text alignment algorithm for speech recognition error analysis."
authors = ["Lasse Borgholt"]
authors = ["Lasse Borgholt <lb@corti.ai>"]
license = "MIT"
keywords = ["speech-recognition", "text-alignment", "NLP", "evaluation"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
readme = "README.md"

packages = [
Expand Down Expand Up @@ -43,6 +57,8 @@ optional = true
ipython = "9.3.0"
ruff = ">=0.1,<0.13"
pre-commit = "^4.2.0"
build = "^1.3.0"
twine = "^6.2.0"

[tool.poetry.group.test]
optional = true
Expand Down
Loading