# Model Weights डाउनलोड करें

### Roboflow Inference (Recommended) के माध्यम से Automatic Download

[Roboflow Inference](https://inference.roboflow.com/) CPU और GPU devices पर local रूप से models चलाने के लिए हमारा open-source, scalable system है।

**शुरू करने का यह सबसे तेज़ और सबसे भरोसेमंद तरीका है**. जब आप Inference का उपयोग करते हैं, तो आपको files या versioning manage करने की ज़रूरत नहीं होती; Roboflow Inference आपके code को पहली बार चलाने पर अपने-आप आपके model weights fetch और cache कर देता है।

* **यह कैसे काम करता है**: आपके पहले inference request पर, weights Roboflow के servers से download होकर locally store हो जाते हैं। आगे की सभी predictions इस local cache का उपयोग करती हैं—images cloud पर नहीं भेजी जातीं।
* **Deployment options**:
  * [Workflows](/roboflow/roboflow-hi/workflows/deploy-a-workflow.md): production-ready multi-step computer vision workflows के लिए
  * [Python inference SDK](https://inference.roboflow.com/quickstart/run_a_model/): Python integration के लिए

### Manual Model Weights Download

कभी-कभी आपको raw weights file (जैसे, एक PyTorch `.pt` file) की आवश्यकता हो सकती है, ताकि आप उन devices पर run कर सकें जिन्हें Roboflow अभी native रूप से support नहीं करता, जैसे custom Android implementations।

देखें [Supported Models table](/roboflow/roboflow-hi/deploy/supported-models.md) weights download compatibility के लिए।

{% hint style="warning" %}
**Premium Feature**: Manual weights download केवल Core plans पर paid users और कुछ Enterprise customers के लिए उपलब्ध है। हमारे [Pricing page](https://roboflow.com/pricing).
{% endhint %}

#### Method A: Roboflow Platform

अपने Project के भीतर Model version पर जाएँ। यदि आपका plan इसकी अनुमति देता है, तो "Download Weights" button पर क्लिक करके आप weights download कर सकते हैं। इससे आपको एक file मिलेगी जिसे आप embedded devices पर उपयोग के लिए convert कर सकते हैं।

<figure><img src="/files/b507084607c6d500bc987078a8f9892103826061" alt="Download Weights button"><figcaption></figcaption></figure>

#### Method B: Python SDK

आप weights सीधे अपनी directory में download करने के लिए Roboflow Python package का भी उपयोग कर सकते हैं:

```python
import roboflow

rf = roboflow.Roboflow(api_key="YOUR_API_KEY")
model = rf.workspace().project("PROJECT_ID").version("1").model
model.download() # 'weights.pt' को आपके local folder में डाउनलोड करता है
```

**नोट**: Roboflow, Roboflow Inference ecosystem के बाहर उपयोग किए गए model weights के लिए technical support प्रदान नहीं करता। सबसे अच्छे अनुभव के लिए, हम Section 1 में बताए गए Inference path का उपयोग करने की अनुशंसा करते हैं।


---

# Agent Instructions: 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:

```
GET https://docs.roboflow.com/roboflow/roboflow-hi/deploy/download-roboflow-model-weights.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
