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

tokenizer = AutoTokenizer.from_pretrained("TareksGraveyard/Inception-LLaMa-70B")
model = AutoModelForCausalLM.from_pretrained("TareksGraveyard/Inception-LLaMa-70B")
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

A merge of a merge of a merge. I gathered some awesome models which were merges many of the same models just in different ways and merged them together as an experiment. Came out solid, I think.

merge

This is a merge of pre-trained language models created using mergekit.

Merge Details

Merge Method

This model was merged using the SCE merge method using nbeerbower/Llama-3.1-Nemotron-lorablated-70B as a base.

Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

models:
  # Pivot model
  - model: Steelskull/L3.3-MS-Nevoria-70b
  # Target models
  - model: Nohobby/L3.3-Prikol-70B-v0.3
  - model: Tarek07/Progenitor-V1.2-LLaMa-70B
  - model: Tarek07/Progenitor-V1.1-LLaMa-70B
  - model: sophosympatheia/Nova-Tempus-70B-v0.1
merge_method: sce
base_model: nbeerbower/Llama-3.1-Nemotron-lorablated-70B
parameters:
  select_topk: 1.0
dtype: bfloat16
Downloads last month
8
Safetensors
Model size
71B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with TareksGraveyard/Inception-LLaMa-70B.

Model tree for TareksGraveyard/Inception-LLaMa-70B

Paper for TareksGraveyard/Inception-LLaMa-70B