SpeedOfSpin
SpeedOfSpin
In case someone needs this feature with the current version we can just percentages. So below will fill the bar to 250 out of a max of 500. ``` const...
Something like this image = cv2.imread("max.jpg") result = detector.detect_faces(image) bounding_box = result[0]['box'] keypoints = result[0]['keypoints'] cv2.rectangle(image, (bounding_box[0], bounding_box[1]), (bounding_box[0]+bounding_box[2], bounding_box[1] + bounding_box[3]), (0,155,255), 2) cv2.circle(image,(keypoints['left_eye']), 2, (0,155,255), 2) cv2.circle(image,(keypoints['right_eye']), 2,...
I had this issue which pretty much stopped me from being able to use the component. I downloaded the source from the fork and it works great for me.
You don't have the correct version of torch installed. I would remove them with pip uninstall torch torchvision and then reinstall with pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117 Then...
I'm also interested in this. I can't get it on the GPU for some reason.
This is what I ended up doing ``` gpu = True def load_model(): model_id = "TheBloke/vicuna-7B-1.1-HF" # model_id = "mayaeary/pygmalion-6b_dev-4bit-128g" # model_id = "TheBloke/wizardLM-7B-GPTQ" if gpu: tokenizer = AutoTokenizer.from_pretrained(model_id) model...
I would like to do this also thanks!
Yeah I tried referencing tsconfig and it still did. Also tried to craft a prompt to stop it doing it but no change
I think this only works in the pre-release version currently.
Still not working for me on windows 11