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

tokenizer = AutoTokenizer.from_pretrained("mightbe/EEVE-10.8B-Multiturn")
model = AutoModelForCausalLM.from_pretrained("mightbe/EEVE-10.8B-Multiturn")
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

EEVE-10.8B-Multiturn

๋ณธ ๋ชจ๋ธ์€ KoVast ๋ฐ์ดํ„ฐ์…‹ ๋ฐ argilla์˜ ๋ฐ์ดํ„ฐ์…‹์œผ๋กœ ํ•™์Šต๋˜์—ˆ์Šต๋‹ˆ๋‹ค.

Jolteon ๋ชจ๋ธ ํ•™์Šต๊ณผ์ •์—์„œ ๋‚˜์˜จ ๋ถ€์‚ฐ๋ฌผ์ž…๋‹ˆ๋‹ค.

์ฃผ์˜

ํ•ด๋‹น ๋ชจ๋ธ์€ ์™„๋ฒฝํ•˜๊ฒŒ ํ•™์Šต์ด ๋˜์ง€ ์•Š์€ ์ดˆ๊ธฐ๋ชจ๋ธ์ž…๋‹ˆ๋‹ค. ์งง์€ ๋‹ต๋ณ€, ์ถ”๋ก ์˜ ๋ถ€์žฌ๋“ฑ์˜ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

ํ”„๋กฌํ”„ํŠธ ํฌ๋งท

Below is an instruction that describes a task. Write a response that appropriately completes the request.

### Instruction: {instruction}

### Response: {response}</s><|im_end|> ### Instruction: {instruction}

### Response: {response}</s><|im_end|>

License

๋ณธ ๋ชจ๋ธ์€ apache-2.0 ๋ผ์ด์„ผ์Šค๋ฅผ ๋”ฐ๋ฆ…๋‹ˆ๋‹ค. ๋ชจ๋ธ์„ ์‚ฌ์šฉํ•˜์—ฌ ์ƒ์„ฑ๋œ ๋ฐ์ดํ„ฐ์…‹์„ ๋ฐฐํฌํ•  ๊ฒฝ์šฐ ๋ชจ๋ธ ์‚ฌ์šฉ์„ ๋ช…์‹œํ•ด ์ฃผ์‹œ๊ธฐ๋ฅผ ๊ถŒ๊ณ ๋“œ๋ฆฝ๋‹ˆ๋‹ค.

Thanks to

  • A100 ํด๋Ÿฌ์Šคํ„ฐ๋ฅผ ์ œ๊ณตํ•ด์ฃผ์‹ , Sionic AI

Contact

Downloads last month
4
Safetensors
Model size
11B params
Tensor type
BF16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for mightbe/EEVE-10.8B-Multiturn

Quantizations
3 models

Space using mightbe/EEVE-10.8B-Multiturn 1