File size: 1,547 Bytes
68b9fcd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
---
license: apache-2.0
base_model: "Qwen/Qwen3-0.6B"
tags:
- text-generation
- deepspeed
- fine-tuned
language:
- en
library_name: transformers
pipeline_tag: text-generation
---
# Qwen3-0.6B-v0.1
DeepSpeed-Chat์ผ๋ก ํ์ธํ๋๋ ์ธ์ด ๋ชจ๋ธ
## Model Details
์ด ๋ชจ๋ธ์ DeepSpeed-Chat์ ์ฌ์ฉํ์ฌ ํ์ธํ๋๋ ๋ชจ๋ธ์
๋๋ค.
- **Base Model**: ๊ธฐ๋ณธ ๋ชจ๋ธ ์ ๋ณด๋ฅผ ์ฌ๊ธฐ์ ์ถ๊ฐํ์ธ์
- **Fine-tuning Method**: DeepSpeed-Chat
- **Training Data**: ํ์ต ๋ฐ์ดํฐ ์ ๋ณด๋ฅผ ์ฌ๊ธฐ์ ์ถ๊ฐํ์ธ์
## Usage
```python
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("mncai/Qwen3-0.6B-v0.1")
model = AutoModelForCausalLM.from_pretrained("mncai/Qwen3-0.6B-v0.1")
# ํ
์คํธ ์์ฑ
input_text = "Your prompt here"
inputs = tokenizer(input_text, return_tensors="pt")
outputs = model.generate(**inputs, max_length=100)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
```
## Training Details
- **Training Framework**: DeepSpeed
- **Training Script**: DeepSpeed-Chat Step 1 Supervised Fine-tuning
- **Upload Date**: N/A
## Limitations and Biases
์ด ๋ชจ๋ธ์ ํ๊ณ์ ๊ณผ ํธํฅ์ฑ์ ๋ํ ์ ๋ณด๋ฅผ ์ฌ๊ธฐ์ ์ถ๊ฐํ์ธ์.
## Citation
DeepSpeed-Chat์ ์ฌ์ฉํ๋ค๋ฉด ๋ค์์ ์ธ์ฉํด์ฃผ์ธ์:
```
@misc{deepspeed-chat,
title={DeepSpeed-Chat: Easy, Fast and Affordable RLHF Training of ChatGPT-like Models at All Scales},
author={Yuxiao Zhuang et al.},
year={2023},
url={https://github.com/microsoft/DeepSpeed}
}
```
|