7 ms·
The discord link seems to be not working. Just a heads up. The YOLO example on your Github page is super interesting. We are finding it easier to get LLMs to w
by jarulraj 3y ago
The discord link seems to be not working. Just a heads up.
The YOLO example on your Github page is super interesting. We are finding it easier to get LLMs to write functions with a more constrained function interface in EvaDB. Here is an example of an YOLO function in EvaDB: https://github.com/georgia-tech-db/evadb/blob/staging/evadb/functions/yolo_object_detector.py https://github.com/georgia-tech-db/evadb/blob/staging/evadb/....
Once the function is loaded, it can be used in queries in this way:
SELECT id, Yolo(data)
FROM ObjectDetectionVideos
WHERE id < 20
LIMIT 5;
SELECT id
FROM ObjectDetectionVideos
WHERE ['pedestrian', 'car'] <@ Yolo(data).label;
Would love to hear your thoughts on ChatCraft and a more constrained function interface.
- tarasglek 3y agoI'm actually doing a lot of work with databases and LLMs. I enjoyed postgresml and evadb has been on my radar to try next. Would love to connect. (updated discord link)