> 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/deploy/download-roboflow-model-weights.md).

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

### Roboflow Inference के माध्यम से स्वचालित डाउनलोड (अनुशंसित)

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

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

* **यह कैसे काम करता है**: अपने पहले inference request पर, weights Roboflow के servers से डाउनलोड होकर स्थानीय रूप से संग्रहीत हो जाते हैं। आगे की सभी predictions इसी local cache का उपयोग करती हैं—images cloud पर नहीं भेजी जातीं।
* **Deployment विकल्प**:
  * [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 के लिए

### Model Weights का मैन्युअल डाउनलोड

कभी-कभी आपको raw weights file (जैसे, एक PyTorch `.pt` file) की आवश्यकता हो सकती है ताकि आप उन devices पर चला सकें जिन्हें 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 %}

#### विधि A: Roboflow Platform

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

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

#### विधि B: Python SDK

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

```python
from roboflow import Roboflow

rf = Roboflow(api_key="YOUR_API_KEY")
model = rf.workspace().project("PROJECT_ID").version(1).models()[0]
model.download()  # Downloads 'weights.pt' to your local folder
```

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