Text Generation
Transformers
Safetensors
English
llama
Merge
frankenmerge
95b
text-generation-inference
Instructions to use llmixer/BigWeave-v28-96b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use llmixer/BigWeave-v28-96b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="llmixer/BigWeave-v28-96b")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("llmixer/BigWeave-v28-96b") model = AutoModelForCausalLM.from_pretrained("llmixer/BigWeave-v28-96b") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use llmixer/BigWeave-v28-96b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "llmixer/BigWeave-v28-96b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "llmixer/BigWeave-v28-96b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/llmixer/BigWeave-v28-96b
- SGLang
How to use llmixer/BigWeave-v28-96b 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 "llmixer/BigWeave-v28-96b" \ --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": "llmixer/BigWeave-v28-96b", "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 "llmixer/BigWeave-v28-96b" \ --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": "llmixer/BigWeave-v28-96b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use llmixer/BigWeave-v28-96b with Docker Model Runner:
docker model run hf.co/llmixer/BigWeave-v28-96b
BigWeave v28 96b
The BigWeave models aim to experimentally identify merge settings for increasing model performance. The version number merely tracks various attempts and is not a quality indicator. Only results demonstrating good performance are retained and shared.
Prompting Format
Chatml, Mistral, Vicuna.
Merge process
This is a self-merge of 152334H/miqu-1-70b-sf. The slices use a uniform size and only overlap with the adjacent sizes by one layer. See this discussion.
Merge configuration:
slices:
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [0,12]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [10,16]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [14,20]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [18,24]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [22,28]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [26,32]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [30,36]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [34,40]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [38,44]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [42,48]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [46,52]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [50,56]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [54,60]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [58,64]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [62,68]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [66,72]
- sources:
- model: 152334H/miqu-1-70b-sf
layer_range: [70,80]
merge_method: passthrough
dtype: float16
- Downloads last month
- 63