Richard Abrich

Results 141 comments of Richard Abrich

Also worth considering: https://huggingface.co/microsoft/Phi-3-vision-128k-instruct

https://github.com/THUDM/GLM-4/blob/main/README_en.md > We have also launched the GLM-4-9B-Chat-1M model that supports 1M context length (about 2 million Chinese characters) and the multimodal model GLM-4V-9B based on GLM-4-9B. GLM-4V-9B possesses dialogue...

- https://github.com/JohannesBuchner/imagehash - https://github.com/facebookresearch/faiss - https://github.com/up42/image-similarity-measures ChatGPT: --- For the task of finding similar UI images, here are comparisons of the three libraries: **FAISS (Facebook AI Similarity Search):** - **Purpose**:...

One line: ``` winget install --id Git.Git -e --source winget; winget install -i Python.Python.3.10; winget install --id=UB-Mannheim.TesseractOCR -e ``` With auto-accept: ``` winget install --id Git.Git -e --source winget --accept-source-agreements...

Via ChatGPT: To replace `self.session.addOutput_(self.file_output)` with a mechanism that calls a callback with a screenshot in your macOS capture implementation, you would typically use `AVCaptureVideoDataOutput` instead of `AVCaptureMovieFileOutput`. `AVCaptureVideoDataOutput` allows...

Regarding this: > Performance Considerations: Processing video frames in real-time can be CPU-intensive. Ensure your callback and conversion logic is optimized for performance. Depending on your requirements, you might want...

@Cody-DV for a Windows approach see: https://github.com/OpenAdaptAI/OpenAdapt/blob/main/openadapt/capture/_windows.py https://github.com/Andrey1994/screen_recorder_sdk/blob/31417c8af136a7b8b44702e69fa0bb6ebb5c2b13/python/screen_recorder_sdk/screen_recorder.py https://chat.openai.com/share/19cc37a0-750f-451a-95cf-acad27efb7b6 ``` import cv2 import numpy as np import time from screen_recorder_sdk import screen_recorder def capture_frames_in_memory(duration, fps): """ Captures frames for a...

First step: identify sources of memory leaks (there may be more than one!)

https://docs.python.org/3/library/tracemalloc.html