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="llaa33219/Vere1Ko-360M")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("llaa33219/Vere1Ko-360M")
model = AutoModelForCausalLM.from_pretrained("llaa33219/Vere1Ko-360M")
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

image

1. Vere Series

The Vere series has the following characteristics:

  • Small Size: The model itself is small, allowing it to run in various environments.
  • Focus on a Single Field: As a small model, it is difficult to excel in all areas. Therefore, it is trained to specialize in a specific field rather than being a generalist.
  • Variety of Models: Since it doesn't cover all fields, many specialized models are released for each area (with more diverse models planned for the future).

2. VereKo Series

VereKo has the following characteristics:

  • Korean Specialization: It has been trained on a large amount of Korean data, making it proficient in the Korean language.

3. About This Model


4. Reason for Creation

It was developed with the goal of creating a small, high-performance model that is proficient in Korean.

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

Model tree for llaa33219/Vere1Ko-360M

Finetuned
(146)
this model

Dataset used to train llaa33219/Vere1Ko-360M

Space using llaa33219/Vere1Ko-360M 1

Collection including llaa33219/Vere1Ko-360M