Update README.md
Browse files
README.md
CHANGED
|
@@ -6,6 +6,9 @@ base_model:
|
|
| 6 |
- deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
|
| 7 |
tags:
|
| 8 |
- cot
|
|
|
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
# Model Card for DeepSeek-R1-Distill-Qwen-1.5B-4bit
|
| 11 |
|
|
@@ -17,21 +20,11 @@ This is a 4-bit quantized version of the `deepseek-ai/DeepSeek-R1-Distill-Qwen-1
|
|
| 17 |
|
| 18 |
### Model Description
|
| 19 |
|
| 20 |
-
- **Developed by:** [Your Name or Organization]
|
| 21 |
-
- **Funded by [optional]:** [Your Funding Source, if applicable]
|
| 22 |
-
- **Shared by:** [Your Name or Organization]
|
| 23 |
- **Model type:** Transformer-based Language Model
|
| 24 |
- **Language(s) (NLP):** English
|
| 25 |
- **License:** MIT
|
| 26 |
- **Finetuned from model:** `deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B`
|
| 27 |
|
| 28 |
-
### Model Sources [optional]
|
| 29 |
-
|
| 30 |
-
- **Repository:** [Link to your GitHub repository, if applicable]
|
| 31 |
-
- **Paper [optional]:** [Link to the paper, if applicable]
|
| 32 |
-
- **Demo [optional]:** [Link to a live demo, if applicable]
|
| 33 |
-
|
| 34 |
-
## Uses
|
| 35 |
|
| 36 |
### Direct Use
|
| 37 |
|
|
@@ -41,7 +34,7 @@ This model is intended for research and practical applications where memory effi
|
|
| 41 |
- Language understanding tasks
|
| 42 |
- Chatbots and conversational AI
|
| 43 |
|
| 44 |
-
### Downstream Use
|
| 45 |
|
| 46 |
This model can be fine-tuned for specific tasks such as:
|
| 47 |
|
|
@@ -81,9 +74,9 @@ quantization_config = BitsAndBytesConfig(
|
|
| 81 |
)
|
| 82 |
|
| 83 |
# Load the model and tokenizer
|
| 84 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
| 85 |
model = AutoModelForCausalLM.from_pretrained(
|
| 86 |
-
"
|
| 87 |
quantization_config=quantization_config,
|
| 88 |
device_map="auto",
|
| 89 |
trust_remote_code=True
|
|
|
|
| 6 |
- deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
|
| 7 |
tags:
|
| 8 |
- cot
|
| 9 |
+
- r1
|
| 10 |
+
- deepseek
|
| 11 |
+
- text
|
| 12 |
---
|
| 13 |
# Model Card for DeepSeek-R1-Distill-Qwen-1.5B-4bit
|
| 14 |
|
|
|
|
| 20 |
|
| 21 |
### Model Description
|
| 22 |
|
|
|
|
|
|
|
|
|
|
| 23 |
- **Model type:** Transformer-based Language Model
|
| 24 |
- **Language(s) (NLP):** English
|
| 25 |
- **License:** MIT
|
| 26 |
- **Finetuned from model:** `deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B`
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
### Direct Use
|
| 30 |
|
|
|
|
| 34 |
- Language understanding tasks
|
| 35 |
- Chatbots and conversational AI
|
| 36 |
|
| 37 |
+
### Downstream Use
|
| 38 |
|
| 39 |
This model can be fine-tuned for specific tasks such as:
|
| 40 |
|
|
|
|
| 74 |
)
|
| 75 |
|
| 76 |
# Load the model and tokenizer
|
| 77 |
+
tokenizer = AutoTokenizer.from_pretrained("emredeveloper/DeepSeek-R1-Distill-Qwen-1.5B-4bit", trust_remote_code=True)
|
| 78 |
model = AutoModelForCausalLM.from_pretrained(
|
| 79 |
+
"emredeveloper/DeepSeek-R1-Distill-Qwen-1.5B-4bit",
|
| 80 |
quantization_config=quantization_config,
|
| 81 |
device_map="auto",
|
| 82 |
trust_remote_code=True
|