> 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/add-tags-to-images.md).

# Images में Tags जोड़ें

Roboflow एक image tagging feature प्रदान करता है। यह feature आपको upload के दौरान images पर tags assign करने की सुविधा देता है। आप इन tags का उपयोग labeling के लिए batch assignment में कर सकते हैं, जिससे labeling के लिए images assign करते समय अधिक precision मिलती है। इसके अलावा, आप अपने dataset से जुड़े Roboflow dataset search में image tags को एक parameter के रूप में उपयोग कर सकते हैं।

### Upload के दौरान Tag असाइन करना

आप data upload के दौरान web interface में भी और उपयोग करके भी tags असाइन कर सकते हैं [REST API और Python SDK](https://docs.roboflow.com/api-reference/images/upload-api). नीचे दी गई image दिखाती है कि web interface का उपयोग करके upload की गई images के साथ associate करने के लिए tags कैसे specify करें:

<figure><img src="/files/f1403b9a15ca3a5d366422794275c41377cd4304" alt="Opening the Tag menu prior to image Upload"><figcaption><p>image Upload से पहले Tag menu खोलना</p></figcaption></figure>

### CLI

आप मौजूदा images पर tags जोड़ और हटा सकते हैं, इसके लिए उपयोग करें `roboflow image metadata` कमांड:

```bash
# किसी image में tags जोड़ें
roboflow image metadata <image_id> --tags "reviewed,v2"

# किसी image से tags हटाएँ
roboflow image metadata <image_id> --remove-tags "draft,needs-review"

# एक ही call में tags जोड़ें और हटाएँ
roboflow image metadata <image_id> --tags "approved" --remove-tags "pending"

# कई images पर tags का batch update करें
roboflow image metadata img1,img2,img3 --tags "processed" --poll
```

आप upload के दौरान भी tags पास कर सकते हैं, इसके लिए `roboflow image upload`:

```bash
roboflow image upload photo.jpg -p my-project --tag "review,v2"
```

### Images Tab में Tags लागू करें

टैग लागू करने के लिए Images tab में images पर क्लिक करें, page के top right corner में "Images Selected" बटन पर क्लिक करें, और फिर "Apply tags" पर क्लिक करें। इससे आप selected images में मनचाहे संख्या में tags जोड़ सकेंगे।

<figure><img src="/files/204d8682d33f16302c2e62e4760b0545171a27c2" alt=""><figcaption><p>चयनित images पर tags लागू करना</p></figcaption></figure>

### एक Project में Tags का नाम बदलें या हटाएँ

किसी project की सभी images में tags का नाम बदलने या हटाने के लिए, project के "Settings" page में "Tags" tab खोलें।

1. checkbox column का उपयोग करके उन tags का चयन करें जिन्हें आप modify करना चाहते हैं।
2. toolbar में "Rename" या "Delete" पर क्लिक करें।
3. नाम बदलने के लिए, हर tag के लिए नया नाम दर्ज करें, "Review Changes" पर क्लिक करें, फिर "Confirm Changes" पर क्लिक करें।
4. delete करने के लिए, सूची की समीक्षा करें और पुष्टि करें।

### Tag के अनुसार Images फ़िल्टर करें

आप Roboflow dashboard के Assign page पर tags का उपयोग करके images को फ़िल्टर कर सकते हैं:

<figure><img src="/files/0e3a987494b4cf608f46aea25c721422d2c7298f" alt="Filtering by Existing dataset Tags from within the Assign tool"><figcaption><p>Assign tool के भीतर मौजूदा dataset Tags के आधार पर फ़िल्टर करना</p></figcaption></figure>

### Versions में Data को curate करने के लिए Tags का उपयोग करें

यह [Filter by Tag](https://docs.roboflow.com/datasets/image-preprocessing#filter-by-tag) preprocessing step आपको अपने dataset के ऐसे Versions बनाने की सुविधा देता है जिनमें विशिष्ट data शामिल या बाहर किया जा सकता है। इस preprocessing step का उपयोग केवल अपने data के curated slice को train या export करने के लिए करें।

<figure><img src="/files/c198948eff1772c51ddb18a0825ce10a725721c6" alt=""><figcaption><p>"Filter by Tag" preprocessing step का उपयोग करें ताकि कुछ tags को dataset version में प्रवेश करने की अनुमति दी जा सके या उन्हें रोका जा सके।</p></figcaption></figure>


---

# 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/add-tags-to-images.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.
