YAML Metadata
Warning:
empty or missing yaml metadata in repo card
(https://huggingface.co/docs/hub/model-cards#model-card-metadata)
Quantization made by Richard Erkhov.
NeuralSynthesis-7B-v0.3 - bnb 4bits
- Model creator: https://huggingface.co/Kukedlc/
- Original model: https://huggingface.co/Kukedlc/NeuralSynthesis-7B-v0.3/
Original model description:
tags: - merge - mergekit - lazymergekit license: apache-2.0
NeuralSynthesis-7B-v0.3
NeuralSynthesis-7B-v0.3 is a merge of the following models using LazyMergekit:
馃З Configuration
models:
- model: MiniMoog/Mergerix-7b-v0.3
- model: automerger/Ognoexperiment27Multi_verse_model-7B
- model: nlpguy/T3QM7
- model: Kukedlc/NeuralSynthesis-7B-v0.1
- model: liminerity/M7-7b
- model: automerger/YamshadowExperiment28-7B
merge_method: model_stock
base_model: automerger/YamshadowExperiment28-7B
dtype: bfloat16
馃捇 Usage
!pip install -qU transformers accelerate
from transformers import AutoTokenizer
import transformers
import torch
model = "Kukedlc/NeuralSynthesis-7B-v0.3"
messages = [{"role": "user", "content": "What is a large language model?"}]
tokenizer = AutoTokenizer.from_pretrained(model)
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
pipeline = transformers.pipeline(
"text-generation",
model=model,
torch_dtype=torch.float16,
device_map="auto",
)
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])
- Downloads last month
- 1