> For the complete documentation index, see [llms.txt](https://docs.roboflow.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roboflow.com/roboflow/roboflow-hi/datasets/manage-datasets/dataset-search.md).

# Dataset खोजें

आप Roboflow में image files को file name, search query, और queries तथा filters को मिलाकर specific images खोज सकते हैं और अपने data को बेहतर समझ सकते हैं।

* **किसी निश्चित tag वाले split में images:**\
  `tag:factory split:train`\
  यह एक tag filter और एक split filter का उपयोग करता है
* **semantic search और एक class filter का उपयोग करके missing labels खोजें**:\
  `person -class:helmet`\
  यह semantic search और एक class filter पर inverted filter का उपयोग करता है
* **यदि किसी class वाली सभी images को किसी निश्चित filter की आवश्यकता हो:**\
  `class:helmet AND NOT (tag:v1 OR tag:v2)`\
  यह एक class filter, boolean logic, और tag filters का उपयोग करता है
* **कम annotations वाली चौड़ी images खोजें:**\
  `min-width:1000 max-annotations:1`\
  यह एक minimum width filter और एक max annotation count filter का उपयोग करता है

की पूरी सूची देखें [search filters](#search-filters), साथ ही नीचे दिए गए उदाहरण भी

{% hint style="info" %}
आप इन सभी search filters और queries को एक साथ मिला सकते हैं
{% endhint %}

### Semantic Search

आप उन्हें वर्णित करके images खोज सकते हैं। ये queries आपकी search terms से सबसे अधिक संबंधित images खोजेंगी और objects अभी labeled न हों तब भी images खोजने में आपकी मदद कर सकती हैं।

Semantic search तब होता है जब आप बिना किसी filter selector के एक text query दर्ज करते हैं (उदा.: `filename:`)

<figure><img src="/files/8b2913df785c527bb5589a1e45c3d8a826463b20" alt=""><figcaption></figcaption></figure>

### फ़ाइल नाम से खोजें

आप file names को खोजने के लिए the `filename:` filter या file name textbox का उपयोग कर सकते हैं, जो आपके लिए query बना देगा।

<figure><img src="/files/db3c47df2acbb678372b72e8080aeea5b945ff22" alt="" width="192"><figcaption></figcaption></figure>

### Dataset Split के अनुसार खोजें

dataset split (train, valid, test) के अनुसार images खोजें

<figure><img src="/files/63501668b6ca385dfbfb2a25d0826abcc50f9dc8" alt="" width="257"><figcaption></figcaption></figure>

## Search Filters

उपलब्ध filters ये हैं:

* `like-image:<IMAGE_ID>`: image content पर आधारित semantic search
* `tag` : user-provided tags के आधार पर filter करें।
* `filename` : दिए गए file name से मेल खाने वाले file names के लिए search चलाता है। partial match चलाने के लिए query की शुरुआत और अंत में \* का उपयोग करें।
* `split` : split (train, test, valid) के आधार पर filter करता है।
* `job:<JOB_ID>` : दिए गए job ID वाली images दिखाता है।
* `min-width:X` : X से अधिक चौड़ाई वाली images दिखाता है।
* `max-width:X` : X से कम चौड़ाई वाली images दिखाता है।
* `min-height:X` : X से अधिक ऊँचाई वाली images दिखाता है।
* `max-height:X` : X से कम ऊँचाई वाली images दिखाता है।
* `min-annotations:X` : निर्दिष्ट संख्या से अधिक annotations वाली images को filter करता है।
* `max-annotations:X` : निर्दिष्ट संख्या से कम annotations वाली images दिखाता है।
* `class:CLASS`: दिए गए label के साथ कम से कम 1 annotation वाली images दिखाता है।

### Boolean Logic

जटिल queries बनाने के लिए AND, OR, NOT, और parentheses का उपयोग करके कई filters को जोड़ें।

`class:helmet AND NOT (tag:v1 OR tag:v2)`

### Inverted Filters

filter से मेल खाने वाली images को बाहर करने के लिए filter से पहले minus sign जोड़ें।

`class:helmet -class:vest`

### Numeric Class Filters

किसी image में labeled items की संख्या के आधार पर filter करें।

`class:helmet=3 class:vest>=4`

## API

आप Roboflow पर अपने dataset और images को हमारे माध्यम से भी खोज सकते हैं [Search API](https://docs.roboflow.com/api-reference/images/search#rest-api).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.roboflow.com/roboflow/roboflow-hi/datasets/manage-datasets/dataset-search.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
