How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="maywell/Llama-3-Synatra-11B-v1")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForMultimodalLM

tokenizer = AutoTokenizer.from_pretrained("maywell/Llama-3-Synatra-11B-v1")
model = AutoModelForMultimodalLM.from_pretrained("maywell/Llama-3-Synatra-11B-v1")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Synatra-11B-L3-v1

Model Description

Llama 3 11B attenuated 모델에 40만개 이상의 한국어, 영어 채팅 데이터를 학습시킨 모델입니다. More Details Soon.

채팅 템플릿은 라마3 Chat 형식을 따릅니다.

License

https://llama.meta.com/llama3/license/

Thanks to

Contact

Downloads last month
9
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for maywell/Llama-3-Synatra-11B-v1

Finetuned
(1)
this model
Merges
1 model
Quantizations
1 model