Instructions to use abideen/NexoNimbus-7B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use abideen/NexoNimbus-7B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="abideen/NexoNimbus-7B")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("abideen/NexoNimbus-7B") model = AutoModelForCausalLM.from_pretrained("abideen/NexoNimbus-7B") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use abideen/NexoNimbus-7B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "abideen/NexoNimbus-7B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abideen/NexoNimbus-7B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/abideen/NexoNimbus-7B
- SGLang
How to use abideen/NexoNimbus-7B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "abideen/NexoNimbus-7B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abideen/NexoNimbus-7B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "abideen/NexoNimbus-7B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abideen/NexoNimbus-7B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use abideen/NexoNimbus-7B with Docker Model Runner:
docker model run hf.co/abideen/NexoNimbus-7B
NexoNimbus-7B
NexoNimbus-7B is a merge of the following models:
π Evaluation NexoNimbus-7B is the 5th best-performing 7B LLM on the Open LLM Leaderboard:
| Task | Version | Metric | Value | Stderr | |
|---|---|---|---|---|---|
| arc_challenge | 0 | acc | 68.25 | Β± | 1.36 |
| acc_norm | 70.81 | Β± | 1.38 | ||
| hellaswag | 0 | acc | 70.86 | Β± | 0.45 |
| acc_norm | 87.86 | Β± | 0.32 | ||
| gsm8k | 0 | acc | 70.35 | Β± | 1.25 |
| winogrande | 0 | acc | 84.84 | Β± | 1.00 |
| mmlu | 0 | acc | 64.69 | Β± | 1.00 |
Average: 73.5%
TruthfulQA
| Task | Version | Metric | Value | Stderr | |
|---|---|---|---|---|---|
| truthfulqa_mc | 1 | mc1 | 46.26 | Β± | 1.74 |
| mc2 | 62.42 | Β± | 1.54 |
π§© Configuration
slices:
- sources:
- model: abideen/DareVox-7B
layer_range: [0, 32]
- model: udkai/Garrulus
layer_range: [0, 32]
merge_method: slerp
base_model: abideen/DareVox-7B
parameters:
t:
- filter: self_attn
value: [0, 0.5, 0.3, 0.7, 1]
- filter: mlp
value: [1, 0.5, 0.7, 0.3, 0]
- value: 0.5
dtype: bfloat16
π» Usage
Here's a Colab notebook to run NexoNimbus-7B in 4-bit precision on a free T4 GPU.
!pip install -qU transformers accelerate
from transformers import AutoTokenizer
import transformers
import torch
model = "abideen/NexoNimbus-7B"
messages = [{"role": "user", "content": "Explain what is Machine learning."}]
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"])
"Machine learning is a subfield of artificial intelligence that focuses on developing algorithms and models that allow computers to learn and improve their performance over time, without being explicitly programmed. It involves the use of statistical techniques and data analysis to identify patterns and make predictions based on input data. In machine learning, data is fed into a model, which then adjusts its internal parameters to minimize the difference between the predicted output and the actual output. This process is called training, and as the model is exposed to more data, it becomes better at making predictions or classifications. Machine learning can be divided into several categories, including supervised learning, unsupervised learning, and reinforcement learning. Supervised learning involves using labeled data, where the desired output is known, and the model learns to map inputs to outputs. Unsupervised learning, on the other hand, does not have a predefined output, and the model learns to identify patterns or relationships within the data. Reinforcement learning involves learning through trial and error, with the model receiving feedback in the form of rewards or penalties based on its actions. Some common applications of machine learning include image recognition, natural language processing, recommendation systems, fraud detection, and self-driving."
- Downloads last month
- 195

