|
--- |
|
license: llama2 |
|
base_model: ngoan/Llama-2-7b-vietnamese-20k |
|
datasets: |
|
- nthngdy/oscar-mini |
|
- Tamnemtf/VietNamese_lang |
|
language: |
|
- vi |
|
pipeline_tag: text-generation |
|
tags: |
|
- text-generation |
|
- llama-2 |
|
- llama-2-7B |
|
- llama2-vietnamese |
|
- vietnamese |
|
--- |
|
|
|
|
|
## Model Details |
|
- Model Name: llama-2-7b-vi-oscar_mini |
|
- Purpose: Mục đích để train con model này để phục vụ việc học và đề tài nckh. |
|
- Availability: The model checkpoint can be accessed on Hugging Face: Tamnemtf/llama-2-7b-vi-oscar_mini |
|
- Model trên được train dựa trên model gốc là ngoan/Llama-2-7b-vietnamese-20k |
|
## How to Use |
|
```python |
|
# Run text generation pipeline with our next model |
|
prompt = "Canh chua cá lau là món gì ?" |
|
pipe = pipeline(task="text-generation", model=model, tokenizer=tokenizer, max_length=200) |
|
result = pipe(f"<s>[INST] {prompt} [/INST]") |
|
print(result[0]['generated_text']) |
|
``` |
|
|
|
## Conntact |
|
[email protected] |
|
|