Albert Zeyer
Albert Zeyer
@albertzeyer.bsky.social
Deep Learning, speech recognition, language modeling, https://scholar.google.com/citations?user=qrh5CBEAAAAJ&hl=en

Open source, https://github.com/albertz/
Nix wants to cleans all procs of the build user, via setuid(uid) + kill(-1, SIGKILL)(github.com/NixOS/nix/bl...). When nix is run via apptainer/singularity with --fakeroot, it will kill all running procs of your current user even outside of apptainer. --pid is a good idea here...
github.com
November 11, 2025 at 10:12 PM
github.com/albertz/wiki... Why game development is a great learning playground. Updated and resurrected article.
github.com
June 25, 2025 at 9:10 PM
github.com/albertz/py_b... www.reddit.com/r/Python/com... Some updates to my #Python better_exchook, semi-intelligently print variables in stack traces. Better selection of what variables to print, multi-line statements in stack trace output, full function qualified name (not just co_name)
GitHub - albertz/py_better_exchook: Zero-dependency Python excepthook/library that intelligently prints variables in stack traces
Zero-dependency Python excepthook/library that intelligently prints variables in stack traces - albertz/py_better_exchook
github.com
June 19, 2025 at 9:03 AM
Google Scholar is messed up right now? The Transformer paper PDF links to some weird host, doesn't show other versions, and only shows the first author as sole author?

The same also for the LSTM paper after you click on 'cite'.
November 28, 2024 at 4:26 PM
I just learned that Torch ctc_loss calculates the wrong gradient (but when there was log_softmax before, it does not matter).

For the grad ctc_loss w.r.t. log_probs, it calculates exp(log_probs) - y, but correct would be -y. Some workaround: github.com/pytorch/pyto...

PS: First Bluesky post.
CTCLoss gradient is incorrect · Issue #52241 · pytorch/pytorch
🐛 Bug Hi, While working on some CTC extensions, I noticed that torch's CTCLoss was computing incorrect gradient. At least when using CPU (I have not tested on GPU yet). I observed this problem on b...
github.com
November 26, 2024 at 11:16 PM