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

tokenizer = AutoTokenizer.from_pretrained("DreadPoor/Strawberry_Smoothie-12B-Model_Stock")
model = AutoModelForCausalLM.from_pretrained("DreadPoor/Strawberry_Smoothie-12B-Model_Stock")
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

Strawberry_Smoothie-TEST

Strawberry_Smoothie-TEST is a merge of the following models using mergekit:

🧩 Configuration

models:
  - model: OddTheGreat/Unity-12B
  - model: Vortex5/Chaos-Unknown-12b
  - model: DreadPoor/Smoothie-12B-Model_Stock
merge_method: model_stock
base_model: DreadPoor/Smoothie-12B-Model_Stock
normalize: true
int8_mask: true
dtype: bfloat16
Downloads last month
6
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with DreadPoor/Strawberry_Smoothie-12B-Model_Stock.

Model tree for DreadPoor/Strawberry_Smoothie-12B-Model_Stock

Merge model
this model
Merges
5 models
Quantizations
5 models