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="xxx777xxxASD/NeuralKunoichi-EroSumika-4x7B-128k")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("xxx777xxxASD/NeuralKunoichi-EroSumika-4x7B-128k")
model = AutoModelForCausalLM.from_pretrained("xxx777xxxASD/NeuralKunoichi-EroSumika-4x7B-128k", device_map="auto")
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/png

Test merge. Attempt to get good at RP, ERP, general tasks model with 128k context. Every model here has Epiculous/Fett-uccine-Long-Noodle-7B-120k-Context in merge instead of regular MistralYarn 128k. The reason is because i belive Epiculous merged it with Mistral Instruct v0.2 to make first 32k context experience as perfect as possible until we reach YaRN from 32 to 128k, if not - it's sad D:, or, i get something wrong.

Exl2, 4.0 bpw

GGUF

Here is the "family tree" of this model, im not writing full model names cause they long af

NeuralKunoichi-EroSumika 4x7B 128k

* NeuralKunoichi-EroSumika 4x7B
    *(1) Kunocchini-7b-128k
    |
    *(2) Mistral-Instruct-v0.2-128k
        * Mistral-7B-Instruct-v0.2
        |
        * Fett-128k
    |
    *(3) Erosumika-128k
        * Erosumika 7B
        |
        * FFett-128k
    |
    *(4) Mistral-NeuralHuman-128k
        * Fett-128k
        |
        * Mistral-NeuralHuman
            * Mistral_MoreHuman
            |
            * Mistral-Neural-Story

Models used

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

Model tree for xxx777xxxASD/NeuralKunoichi-EroSumika-4x7B-128k

Quantizations
2 models

Collection including xxx777xxxASD/NeuralKunoichi-EroSumika-4x7B-128k