Quantization made by Richard Erkhov.
tags:
- text-generation
license: cc-by-nc-sa-4.0
language:
- ko
base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
pipeline_tag: text-generation
datasets:
- beomi/KoAlpaca-v1.1a
- jojo0217/korean_rlhf_dataset
- kyujinpy/OpenOrca-KO
- nlpai-lab/kullm-v2
widget:
-
text: >
<|system|>
You are a chatbot who answers User's questions.
<|user|>
대한민국의 수도는 어디야?
<|assistant|>
E.g.
1text = """\
2<|system|>
3당신은 사람들이 정보를 찾을 수 있도록 도와주는 인공지능 비서입니다.</s>
4<|user|>
5대한민국의 수도는 어디야?</s>
6<|assistant|>
7대한민국의 수도는 서울입니다.</s>
8<|user|>
9서울 인구는 총 몇 명이야?</s>
10"""
This model contains the chat_template instruction format.
You can use the code below.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3device = "cuda" # the device to load the model onto
4
5model = AutoModelForCausalLM.from_pretrained("Edentns/DataVortexTL-1.1B-v0.1")
6tokenizer = AutoTokenizer.from_pretrained("Edentns/DataVortexTL-1.1B-v0.1")
7
8messages = [
9 {"role": "system", "content": "당신은 사람들이 정보를 찾을 수 있도록 도와주는 인공지능 비서입니다."},
10 {"role": "user", "content": "대한민국의 수도는 어디야?"},
11 {"role": "assistant", "content": "대한민국의 수도는 서울입니다."},
12 {"role": "user", "content": "서울 인구는 총 몇 명이야?"}
13]
14
15encodeds = tokenizer.apply_chat_template(messages, return_tensors="pt")
16
17model_inputs = encodeds.to(device)
18model.to(device)
19
20generated_ids = model.generate(model_inputs, max_new_tokens=1000, do_sample=True)
21decoded = tokenizer.batch_decode(generated_ids)
22print(decoded[0])
The model is licensed under the
cc-by-nc-sa-4.0 license, which allows others to copy, modify, and share the work non-commercially, as long as they give appropriate credit and distribute any derivative works under the same license.