Instructions to use ChuckMcSneed/WinterGoliath-123b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ChuckMcSneed/WinterGoliath-123b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ChuckMcSneed/WinterGoliath-123b")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ChuckMcSneed/WinterGoliath-123b") model = AutoModelForCausalLM.from_pretrained("ChuckMcSneed/WinterGoliath-123b") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use ChuckMcSneed/WinterGoliath-123b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ChuckMcSneed/WinterGoliath-123b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ChuckMcSneed/WinterGoliath-123b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ChuckMcSneed/WinterGoliath-123b
- SGLang
How to use ChuckMcSneed/WinterGoliath-123b 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 "ChuckMcSneed/WinterGoliath-123b" \ --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": "ChuckMcSneed/WinterGoliath-123b", "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 "ChuckMcSneed/WinterGoliath-123b" \ --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": "ChuckMcSneed/WinterGoliath-123b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ChuckMcSneed/WinterGoliath-123b with Docker Model Runner:
docker model run hf.co/ChuckMcSneed/WinterGoliath-123b
This is a merge of Xwin and WinterGoddess. Made using mergekit.
Smarter than Goliath, but a bit more aligned. Sidegrade rather than upgrade. Sacrifices neutrality and fun for smartness(on an empty context).
Prompt format
Vicuna or Alpaca.
Quants
Thanks, TheBloke!
32k version
Benchmarks
NeoEvalPlusN_benchmark
| Test name | Goliath | WinterGoliath |
|---|---|---|
| B | 3 | 3 |
| C | 2 | 2 |
| D | 1 | 2 |
| S | 5 | 5.5 |
| P | 6 | 6 |
| Total | 17 | 18.5 |
Kanye Test
WinterGoliath kinda gets the rhyme, Goliath doesn't.

Politiscales test
| name | whacky | left/right |
|---|---|---|
| alpindale/goliath-120b | 1.066739456 | 1.544969782 |
| ChuckMcSneed/WinterGoliath-123b | 0.518277513 | 2.735962 |
| Xwin-LM/Xwin-LM-70B-V0.1 | 1.463521162 | 1.491684328 |
| Sao10K/WinterGoddess-1.4x-70B-L2 | 0.384151757 | 4.747980293 |
- Downloads last month
- 93