Samuel Larkin

Results 17 comments of Samuel Larkin

Thanks for your help. I've updated to the latest version `2.0.0a16` but I'm still getting an error ```bash /home/sam037/Documents/MFA/thirdparty/bin/subset-feats \ --n=10 \ 'ark,s,cs:~/Documents/MFA/thirdparty/bin/apply-cmvn --utt2spk=ark:./MFA.2.0.0a16/Mohawk/corpus_data/split2/utt2spk.0 scp:./MFA.2.0.0a16/Mohawk/corpus_data/split2/cmvn.0.scp scp:./MFA.2.0.0a16/Mohawk/corpus_data/split2/feats.0.scp ark:- | ~/Documents/MFA/thirdparty/bin/add-deltas ark:-...

My guess is that @vishaldhull09 is referring to https://jmvalin.ca/demo/rnnoise/ which use a js implementation to do a live demo.

Hi all, For future users that stumble on this issue. Reading from stackoverflow, I found this [Django 1.3.7 TemplateDoesNotExist error admin/index.html](https://stackoverflow.com/a/55101589). After doing `pip install --no-cache-dir --no-binary Django django==1.4.22`, I'm...

Sorry for the wait. My logging was insufficient to reproduce the bug with the info I had. Here's a snippet that should help you reproduce the bug. ```python import datetime...

I think I know what is happening. When calling `bat file_with_long_lines.txt`, the output generated by `bat` is line wrapped then passed to my pager which is `less`. When I type...

# `bat file.csv` Pressing `-S` multiple times I still get the following: ![image](https://github.com/sharkdp/bat/assets/7314973/34f3febe-b395-482a-a03e-bfa9add815f5) ``` ───────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── │ File: delme.csv ───────┼────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 1 │ lr=1.0e-4_e=1/000,42.10,41.15,44.25,44.01,42.44,41.65,43.51,42.43,43.10,42.38,41.86,41.10,42.39,41.88,42.44,41.87,39.96,39.24,41.27,40.50,41.62,40.98,41.01,4 │ 0.29,40.14,39.56,42.01,41.13,39.23,38.35,42.28,41.46,40.73,39.80,40.76,39.70,41.72,40.56,40.90,40.40,40.62,39.53,43.28,42.01,43.49,43.95,42.43,42.55,39.13,37 │ .94,41.82,40.61,41.80,41.32,40.25,39.27,40.35,39.04,43.13,42.10,39.44,39.18,42.84,42.85,42.02,41.23,41.82,40.14,40.34,38.64,42.11,41.79,44.25,43.41,42.36,41. │ 32,2024-01-26T06:07:38 2 │...

On that same note, line 157 should also be changed: from 157: self.critic_target_model.set_weights(critic_target_weights) to 157: self.target_critic_model.set_weights(critic_target_weights) The reason that bug is never picked up is that the code never updates...