Update README.md
Browse files
README.md
CHANGED
|
@@ -9,6 +9,8 @@ tags:
|
|
| 9 |
- trl
|
| 10 |
licence: license
|
| 11 |
pipeline_tag: text-classification
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
# Model Card for transformer-facebook-MobileLLM-R1-140M-ml-512-bs-32-ws-100-lr-1e-05-full_ft-merge_user_input_system_prompt
|
|
@@ -28,14 +30,11 @@ User input: I want to
|
|
| 28 |
"""
|
| 29 |
generator = pipeline("text-generation", model="None", device="cuda")
|
| 30 |
output = generator([{"role": "user", "content": question}], max_new_tokens=1, return_full_text=False)[0]
|
| 31 |
-
print(output["generated_text"])
|
| 32 |
```
|
| 33 |
|
| 34 |
## Training procedure
|
| 35 |
|
| 36 |
-
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/dangvansam98/LLM-TURN-DETECTION/runs/ub528cqr)
|
| 37 |
-
|
| 38 |
-
|
| 39 |
This model was trained with SFT.
|
| 40 |
|
| 41 |
### Framework versions
|
|
|
|
| 9 |
- trl
|
| 10 |
licence: license
|
| 11 |
pipeline_tag: text-classification
|
| 12 |
+
language:
|
| 13 |
+
- en
|
| 14 |
---
|
| 15 |
|
| 16 |
# Model Card for transformer-facebook-MobileLLM-R1-140M-ml-512-bs-32-ws-100-lr-1e-05-full_ft-merge_user_input_system_prompt
|
|
|
|
| 30 |
"""
|
| 31 |
generator = pipeline("text-generation", model="None", device="cuda")
|
| 32 |
output = generator([{"role": "user", "content": question}], max_new_tokens=1, return_full_text=False)[0]
|
| 33 |
+
print(output["generated_text"]) # "end" or "continue"
|
| 34 |
```
|
| 35 |
|
| 36 |
## Training procedure
|
| 37 |
|
|
|
|
|
|
|
|
|
|
| 38 |
This model was trained with SFT.
|
| 39 |
|
| 40 |
### Framework versions
|