Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prompt in search() and search_all() ignored, returns all images in dataset instead #360

Open
03vmate opened this issue Mar 2, 2025 · 0 comments

Comments

@03vmate
Copy link

03vmate commented Mar 2, 2025

rf = roboflow.Roboflow(api_key=API_KEY)
workspace = rf.workspace(WORKSPACE)
project = workspace.project(PROJECT_ID)

filename = "vlcsnap-2024-08-28-19h46m52s829.png"

results = []
for result in project.search_all(prompt=f'filename:"{filename}"'):
    results.extend(result)
print(len(results))

Running the code above returns every single image in the dataset, instead of just the one with the specific filename. Using the same query in the web UI returns the correct image:

loading Roboflow workspace...
loading Roboflow project...
5887

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant