Angainor Development
Angainor Development
Also eagerly waiting for USB_HID to be available on micropython. Is there someone actively working on this? What would be needed? Since this works on circuit python, I guess mainly...
@LennartPiro I had a look at adafruit implementation as well, and it's quite different (shared lib, for all ports) I guess the way to go here would be to follow...
Got it finally working by coding a pure python input callback for lvgl, using sample code from MaixUI. Not perfect, but allows to get touch screen semi working with LVGL...
I used `uf2conv.py firmware.hex -c -f 0xADA52840`
Had the very same issue, that did it for me, details: https://github.com/makerdiary/nrf52840-mdk-usb-dongle/issues/41
Interested as well.
> I find that whether I add lora_weights or not, the inference results is same With an instruction like "Tell me about Alpacas" ? Are you sure the base model...
Check with the "test" instruction "Tell me about alpacas". Default (non fine tuned) llama will quickly spit out repeating stuff like ``` Alpacas are a type of camelid. They are...
If you want to use all the GPUs , invoke with torchrun For instance with 2 GPUs I'd run `OMP_NUM_THREADS=4 WORLD_SIZE=2 CUDA_VISIBLE_DEVICES=0,1 torchrun --nproc_per_node=2 --master_port=1234 finetune.py` Make sure your global...
> any way to do what you said programmatically inside the finetune.py code? No, you have to run the .py script via torchrun instead of bare python. > Seems it's...