Silas Alves

Results 9 comments of Silas Alves

I am trying the [Hello World](https://github.com/microsoft/mixed-reality-extension-sdk-samples/tree/master/samples/hello-world) sample and I am getting the same error, even though [the sample waits for the model to load](https://github.com/microsoft/mixed-reality-extension-sdk-samples/blob/master/samples/hello-world/src/app.ts#L69). What I noticed is: 1. When...

As suggested [here](https://forum.qt.io/topic/93247/qt-qpa-plugin-could-not-load-the-qt-platform-plugin-xcb-in-even-though-it-was-found/3), I ran `export QT_DEBUG_PLUGINS=1` then saw on the error message that `libxcb-xinerama.so.0` didn't exist, so just installed it with: ```bash $ sudo apt install libxcb-xinerama0 ```

tl;dr; `conda update tokenizers` solved the problem for me. --- I think I had the same problem and this is how I solved it. I noticed that the error was...

I am also curious about that. I've made a quick test and the two functions seem to be very similar: ```python from ollama import Client import json conversation = [...

@formigarafa Thanks for pointing it out the existence of [debug mode](https://github.com/ollama/ollama/blob/main/docs/troubleshooting.md)! I did that and looked at the logs and saw what is going on. `ollama.chat()` transforms `conversation` to the...

Maybe the supported languages could be added as part of the model description in `https://ollama.com/library/{model_name}` (besides `model`, `license` and `params`)?

I am facing the same problem. I am following the [tutorial on training YOLOv4 on Pascal VOC](https://github.com/AlexeyAB/darknet/wiki/Train-and-Evaluate-Detector-on-Pascal-VOC-(VOCtrainval-2007-2012)-dataset). Everything seemed to be working during training, but it crashed when trying to...

Thanks, @lostagex, that change did work for me. =) However, I noticed that the validation step is taking place on the CPU, so it is absurdly slow. And even though...

@lostagex I think I figured out the problem. After reverting the changes I made to `src/detector.c`, I tried downgrading CUDA from version 11.1 to 10.2 as suggested by @Hwijune, but...