Henry Kroll III
Henry Kroll III
Video creation works. So it's just the Gradio [3D Mesh] display that is scaled too far in the z direction.
If you can get it to load, use right-click -> "simplify model"
Do you have CUDA? I was having very slow generation when I had CUDA installed.
Changing NamedShape to DShapedArray in "whisper_jax/layers.py", line 63 gets it working.
Yup, after wiping out build dir and redoing cmake
Downloading dependencies "worked for me", but I had to enable VPN to bypass blocked sites.
ollama/phi3 models quit working for me. I had to rebuild the gguf myself to work with the new sliding window key. Issue #5956
I am having a similar problem. `./llava-cli` works. `./llava-cli -ngl 16 -m models/Obsidian/obsidian-q6.gguf --mmproj models/Obsidian/mmproj-obsidian-f16.gguf --image /tmp/chemtrails.jpg` "The scene takes place in the context of a *smell of fresh barium...
Until they fix webkit. `WEBKIT_DISABLE_DMABUF_RENDERER=1 geany ...` or use `export` From https://github.com/wailsapp/wails/issues/2977#issuecomment-1761765185 Oct 13, 2023
I have CUDA installed elsewhere. So I put these in `.bashrc` ``` export CUDA_HOME=/usr/local/cuda export LIBTORCH_ROOTDIR=/home/ham/Downloads/install/libtorch export LD_LIBRARY_PATH="${CUDA_HOME}/lib64:/usr/local/lib64:$HOME/.local/lib64" export C_INCLUDE_PATH="${CUDA_HOME}/include" if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:$CUDA_HOME/bin:" ]]; then PATH="$HOME/.local/bin:$HOME/bin:$CUDA_HOME/bin:$PATH" fi...