> 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 में फ़ाइल नाम, एक search query, और queries तथा filters को मिलाकर विशिष्ट 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>

### Search by File Name

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

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

### Search by Dataset Split

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

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

images को किसी अलग split में पुनः असाइन करने के लिए, उन्हें चुनें (या किसी search से "Select all matching" चुनें) और bulk actions menu में "Change Dataset Split" पर क्लिक करें। बड़े चयन बैकग्राउंड में प्रोसेस होते हैं।

### Search by Upload Date

Roboflow पर पहली बार upload की गई तारीख के आधार पर images फ़िल्टर करने के लिए `date:` filter का उपयोग करें। upload date अपरिवर्तनीय होती है और image के edit, re-annotate, या splits के बीच move होने पर नहीं बदलती।

उपयोग करें `date:YYYY-MM-DD` किसी exact दिन के लिए, या एक range खोजने के लिए comparison operators को मिलाएँ:

`date>=2026-01-01 date<2026-02-01`

## Search Filters

यहाँ उपलब्ध filters दिए गए हैं:

* `like-image:<IMAGE_ID>`: image content के आधार पर semantic search
* `tag` : user-provided tags के आधार पर फ़िल्टर करें।
* `filename` : दिए गए file name से मेल खाने वाले file names के लिए search चलाता है। आंशिक मिलान चलाने के लिए query की शुरुआत और अंत में \* का उपयोग करें।
* `split` : split (train, test, valid) के आधार पर फ़िल्टर करता है।
* `job:<JOB_ID>` : दिए गए job ID वाली images दिखाता है।
* `min-width:X` : X से अधिक width वाली images दिखाता है।
* `max-width:X` : X से कम width वाली images दिखाता है।
* `min-height:X` : X से अधिक height वाली images दिखाता है।
* `max-height:X` : X से कम height वाली images दिखाता है।
* `min-annotations:X` : निर्दिष्ट संख्या से अधिक annotations वाली images फ़िल्टर करता है।
* `max-annotations:X` : निर्दिष्ट संख्या से कम annotations वाली images दिखाता है।
* `class:CLASS`: प्रदान किए गए label के साथ कम से कम 1 annotation वाली images दिखाता है।
* `date:YYYY-MM-DD` : उस अपरिवर्तनीय तारीख के आधार पर फ़िल्टर करता है जब image upload की गई थी। comparison operators का समर्थन करता है (उदा.: `date>=2026-01-01 date<2026-02-01`).

### Boolean Logic

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

`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 की संख्या के आधार पर फ़िल्टर करें।

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

## API

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