Ma Mana ma Manama
Ma Mana ma Manama
Of course, it is also due to: https://github.com/pytorch/audio/issues/3958#issuecomment-3258493996 , `torchcodec` being used now
Ok, the mystery (only partially) solved: ``` ldd /home/user/.local/lib/python3.10/site-packages/torchaudio/lib/libtorchaudio.so linux-vdso.so.1 (0x00007fffbe65d000) libtorch.so => not found libtorch_cpu.so => not found libc10.so => not found libgomp.so.1 => /lib/x86_64-linux-gnu/libgomp.so.1 (0x00007fa13d208000) libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6...
Note to self mostly, the fastest and maybe the most elegant is to indeed recompile with: ``` wget https://www.python.org/ftp/python/3.10.14/Python-3.10.14.tar.xz tar -xf Python-3.10.14.tar.xz cd Python-3.10.14 ./configure --enable-shared --prefix=/usr/local make -j$(nproc) sudo...
Update: After reading: https://github.com/numpy/numpy/issues/25940, etc, I tried: `sed -i 's/#if (__cplusplus >= 201703L) && (!defined(__MINGW32__)) && (!defined(_MSC_VER))/#if (__cplusplus >= 201703L) && (!defined(__MINGW32__)) && (!defined(_MSC_VER)) && (!defined(__ANDROID__))/g' /data/data/com.termux/files/home/downloads/pytorch/third_party/pocketfft/pocketfft_hdronly.h` Replacement: Adds &&...
Thanks! FYI, this `sed` worked to overcome it: the fix is banal : "Add also Android" (Termux mostly).
Hm. A quick sanity check: ``` ~/.../third_party/test1 $ git clone https://github.com/mreineck/pocketfft/ Cloning into 'pocketfft'... remote: Enumerating objects: 595, done. remote: Counting objects: 100% (205/205), done. remote: Compressing objects: 100% (45/45),...
Yes, seems to have worked asap: https://github.com/pytorch/pytorch/pull/154845 .
They seem to be downloaded once and stay put, so work offline. Download it once via the simple `whisperx --diarize ...` , as per the instructions here, then check where...
Yes, keep Enter as SEND, and e.g. Shift+Enter for newlines.
True. But: 1. I resolve your situation with "Use `cat` to read file x.txt and act on it", with that file having whatever one wants, even hidden codes. 3. Too...