rncar

Results 29 comments of rncar

I just fix this adding `#include ` to `libs/cpptoml/include/cpptoml.h` and `libs/cxxopts/include/cxxopts.hpp`

The lisp is Janet: https://github.com/janet-lang/janet https://janet-lang.org/docs/syntax.html The problem, if I use parens, curlies or brackets in multilines strings, parinfer modify the string. The parinfer algorithm should skip that block. Same...

if you are in linux, you can have a swap file the bigger you want. https://wiki.archlinux.org/title/swap#Swap_file

Intel i5-12600 (linux) I am using: ```self.core.set_property("CPU", {"CPU_BIND_THREAD": "NUMA"})``` It will works with all compatible cpus.

Exactly, using ```self.core.set_property("CPU", {"CPU_BIND_THREAD": "NUMA"})``` uses all the cores but not the hyperthreading ones and I get using it the maximum speed after some tests with others threading options, aroung...

The problem using `demo.py` is the model needs to be reloaded each time. Would be great to have a way to produce images from the terminal caching the models.

The web interface does it, so its possible. Would be great to have some kind of repl to produce images in a interactive way, a command to render an image,...

The resolution is always 512x512, is the output of the neural net. The only way to go faster is limiting ```num-inference-steps```. You can see the parameter defaults in ```demo.py:``` ```...

In linux the default directory is located at `~/.cache` You could change it using the environment variable `TRANSFORMERS_CACHE`

Arch linux user too. I have fixed it symlinking `/usr/lib/libGLEW.so` to `libGLEW.so.2.1` in the shadered directory ``` ln -s /usr/lib/libGLEW.so libGLEW.so.2.1 ``` Now we need to load libraries from the...