Kukedlc / NeuralTopBench-7B-ties

huggingface.co
Total runs: 7
24-hour runs: 0
7-day runs: -1
30-day runs: -1
Model's Last Updated: March 16 2024
text-generation

Introduction of NeuralTopBench-7B-ties

Model Details of NeuralTopBench-7B-ties

NeuralTopBench-7B-ties

image/png

NeuralTopBench-7B-ties is a merge of the following models using LazyMergekit :

🧩 Configuration
models:
  - model: CultriX/NeuralTrix-bf16
    # no parameters necessary for base model
  - model: Kukedlc/Neural4gsm8k
    parameters:
      weight: 0.3
      density: 0.5
  - model: nlpguy/AlloyIngotNeoX
    parameters:
      weight: 0.2
      density: 0.5
  - model: automerger/OgnoExperiment27-7B
    parameters:
      weight: 0.2
      density: 0.5
  - model: vanillaOVO/supermario_v4
    parameters:
      weight: 0.3
      density: 0.5
merge_method: dare_ties
base_model: CultriX/NeuralTrix-bf16

parameters:
  int8_mask: true
  normalize: true
dtype: bfloat16
💻 Usage - Stream
# Requirements
!pip install -qU transformers accelerate bitsandbytes

# Imports & settings
from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer
import warnings
import os
os.environ["TOKENIZERS_PARALLELISM"] = "false"
warnings.filterwarnings('ignore')

# Model & Tokenizer
MODEL_NAME = 'Kukedlc/NeuralTopBench-7B-ties'
model = AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map='cuda:0', load_in_4bit=True)
tok = AutoTokenizer.from_pretrained(MODEL_NAME)

# Inference
prompt = "I want you to generate a theory that unites quantum mechanics with the theory of relativity and cosmic consciousness\n"
inputs = tok([prompt], return_tensors="pt").to('cuda')
streamer = TextStreamer(tok)

# Despite returning the usual output, the streamer will also print the generated text to stdout.
_ = model.generate(**inputs, streamer=streamer, max_new_tokens=512, do_sample=True, num_beams=1, top_p=0.9, temperature=0.7)
💻 Usage - Clasic
!pip install -qU transformers bitsandbytes accelerate

from transformers import AutoTokenizer
import transformers
import torch

model = 'Kukedlc/NeuralTopBench-7B-ties'

tokenizer = AutoTokenizer.from_pretrained(model)
pipeline = transformers.pipeline(
    "text-generation",
    model=model,
    model_kwargs={"torch_dtype": torch.float16, "load_in_4bit": True},
)

messages = [{"role": "user", "content": "Explain what a Mixture of Experts is in less than 100 words."}]
prompt = pipeline.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
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"])

Runs of Kukedlc NeuralTopBench-7B-ties on huggingface.co

7
Total runs
0
24-hour runs
0
3-day runs
-1
7-day runs
-1
30-day runs

More Information About NeuralTopBench-7B-ties huggingface.co Model

NeuralTopBench-7B-ties huggingface.co

NeuralTopBench-7B-ties huggingface.co is an AI model on huggingface.co that provides NeuralTopBench-7B-ties's model effect (), which can be used instantly with this Kukedlc NeuralTopBench-7B-ties model. huggingface.co supports a free trial of the NeuralTopBench-7B-ties model, and also provides paid use of the NeuralTopBench-7B-ties. Support call NeuralTopBench-7B-ties model through api, including Node.js, Python, http.

NeuralTopBench-7B-ties huggingface.co Url

https://huggingface.co/Kukedlc/NeuralTopBench-7B-ties

Kukedlc NeuralTopBench-7B-ties online free

NeuralTopBench-7B-ties huggingface.co is an online trial and call api platform, which integrates NeuralTopBench-7B-ties's modeling effects, including api services, and provides a free online trial of NeuralTopBench-7B-ties, you can try NeuralTopBench-7B-ties online for free by clicking the link below.

Kukedlc NeuralTopBench-7B-ties online free url in huggingface.co:

https://huggingface.co/Kukedlc/NeuralTopBench-7B-ties

NeuralTopBench-7B-ties install

NeuralTopBench-7B-ties is an open source model from GitHub that offers a free installation service, and any user can find NeuralTopBench-7B-ties on GitHub to install. At the same time, huggingface.co provides the effect of NeuralTopBench-7B-ties install, users can directly use NeuralTopBench-7B-ties installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

NeuralTopBench-7B-ties install url in huggingface.co:

https://huggingface.co/Kukedlc/NeuralTopBench-7B-ties

Url of NeuralTopBench-7B-ties

NeuralTopBench-7B-ties huggingface.co Url

Provider of NeuralTopBench-7B-ties huggingface.co

Kukedlc
ORGANIZATIONS

Other API from Kukedlc

huggingface.co

Total runs: 13
Run Growth: 5
Growth Rate: 38.46%
Updated:December 15 2024