Vincent STRAGIER
Vincent STRAGIER
Well, there is an update to be made to the instructions (https://mynaturewatch.net/instructions-homenetwork). Happy to hear that the solution is working as you were expecting :-)
Hi @RyanB-Shields, I do not remember exactly, but I believe the issue was elsewhere. > I can't open it because it says it's a link to the mynaturewatchcamera-wpa-supplicant.txt file which...
Hi @RyanB-Shields, Indeed, the SD card `/boot` is mounted, but it is not mounted at `/boot` (it's not mounted at the root of your filesystem) but most likely at `/mnt/[...]/boot`...
Hello @AlexZibin, I do not understand why you say it's not a valid c++ preprocessor statement. However, from what I can see, your correction is valid and prefered. Though, it...
Hello @lekkimworld, Actually I'm trying to address the same issue in PR #10, as discuted in issue #8. Can you try the code from my [fork](https://github.com/2010019970909/ESP32-OTA) to see if PIO...
For reference @Mathnerd314 is working on this issue (see [his fork of Oobabooga's text generation webui](https://github.com/Mathnerd314/text-generation-webui/tree/main)), more information on [Discord](https://discord.com/channels/865254854262652969/1144441490840502314). You can already try his implementation using his [Colab notebook](https://colab.research.google.com/drive/1TebwE_67THh17rmpDWAURVudI3iRryya?usp=sharing)....
@aifanboylearner, Same issue here. I'm using Python 3.10 on Windows 11. I have this kind of error: ```bash results = face_detector.predict(img, verbose=False, show=True, conf=0.25)[0] File "C:\Users\Vincent\AppData\Local\Programs\Python\Python310\lib\site-packages\torch\utils\_contextlib.py", line 115, in decorate_context...
@YSGFF, Only `yolov8n` is working, nobody managed to work with the two others. So there is no solution, just use `yolov8n`. Best, Vincent
Hi @philogicae, For BLOOMZ, there is already an interface that is being developed [there](https://github.com/borzunov/chat.petals.ml). BLOOMZ seems terrible as a chatbot, but it has a huge potential. And BLOOM as a...
I would use the following to avoid raising an encoding error: ```python text_bytes = text.encode('utf-8', "ignore") # or text_bytes = text.encode('utf-8', "replace") # or # probably better to avoid getting...