You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the EvaDB issues and found no similar bug report.
Bug
ERROR [plan_executor:plan_executor.py:execute_plan:0179] '>=' not supported between instances of 'int' and 'str'
Traceback (most recent call last):
File ".../evadb/executor/plan_executor.py", line 175, in execute_plan
yield from output
File ".../evadb/executor/exchange_executor.py", line 101, in exec
raise res
evadb.executor.executor_utils.ExecutorError: '>=' not supported between instances of 'int' and 'str'
When I execute the following queries, I get the above error, if ray is not turned on it executes fine.
SET ray="True";
SET gpu_ids="[0, 1, 2, 3, 4, 5, 6, 7]";
SET batch_mem_size="300000";
DROPTABLE IF EXISTS NightStreet;
LOAD VIDEO 'benchmark/datasets/video/night-street.mp4'
INTO NightStreet;
DROPTABLE IF EXISTS Yolo;
CREATEFUNCTIONIF NOT EXISTS Yolo
TYPE ultralytics
MODEL 'benchmark/models/yolov8x.pt';
SELECT id, Yolo(data).labels
FROM NightStreet
WHERE ['person', 'car'] <@ Yolo(data).labels
LIMIT5;
Environment
EvaDB v0.3.8
Are you willing to submit a PR?
Yes I'd like to help by submitting a PR!
The text was updated successfully, but these errors were encountered:
Search before asking
Bug
When I execute the following queries, I get the above error, if ray is not turned on it executes fine.
Environment
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: