Text Generation
Transformers
Safetensors
English
llama
rp
erp
chat
storywriting
text-generation-inference
Instructions to use MarsupialAI/KitchenSink_103b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MarsupialAI/KitchenSink_103b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MarsupialAI/KitchenSink_103b")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("MarsupialAI/KitchenSink_103b") model = AutoModelForCausalLM.from_pretrained("MarsupialAI/KitchenSink_103b") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use MarsupialAI/KitchenSink_103b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MarsupialAI/KitchenSink_103b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MarsupialAI/KitchenSink_103b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/MarsupialAI/KitchenSink_103b
- SGLang
How to use MarsupialAI/KitchenSink_103b 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 "MarsupialAI/KitchenSink_103b" \ --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": "MarsupialAI/KitchenSink_103b", "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 "MarsupialAI/KitchenSink_103b" \ --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": "MarsupialAI/KitchenSink_103b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use MarsupialAI/KitchenSink_103b with Docker Model Runner:
docker model run hf.co/MarsupialAI/KitchenSink_103b
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,8 +3,8 @@ license: llama2
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
tags:
|
| 6 |
-
-
|
| 7 |
-
-
|
| 8 |
- chat
|
| 9 |
- storywriting
|
| 10 |
---
|
|
@@ -14,7 +14,7 @@ tags:
|
|
| 14 |
This model is a rotating-stack merge of three 70b models in a 103b (120 layer) configuration inspired by Venus 103b. The result of
|
| 15 |
this "frankenmerge" is a large model that contains a little bit of everything - including the kitchen sink. RP, chat, storywriting,
|
| 16 |
and instruct are all well supported. It may or may not code well - I lack the expertise to test it in that capacity, but considering
|
| 17 |
-
the source models, it is unlikely.
|
| 18 |
|
| 19 |
Component models for the rotating stack are
|
| 20 |
- royallab/Aetheria-L2-70B
|
|
@@ -24,8 +24,13 @@ Component models for the rotating stack are
|
|
| 24 |
Components of those models are purported to include: Nous-Hermes-Llama2-70b, Xwin-LM-7B-V0.1, Mythospice-70b, Euryale-1.3-L2-70B,
|
| 25 |
tulu-2-dpo-70b, GOAT-70B-Storytelling, Platypus2-70B-instruct, Lila-70B, SunsetBoulevard, and some private LoRAs.
|
| 26 |
|
|
|
|
|
|
|
|
|
|
| 27 |
This model is uncensored and perfectly capable of generating objectionable material. However, it is not an explicitely-NSFW model,
|
| 28 |
-
and it has never "gone rogue" and tried to insert NSFW content into SFW prompts in my experience.
|
|
|
|
|
|
|
| 29 |
|
| 30 |
|
| 31 |
|
|
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
tags:
|
| 6 |
+
- rp
|
| 7 |
+
- erp
|
| 8 |
- chat
|
| 9 |
- storywriting
|
| 10 |
---
|
|
|
|
| 14 |
This model is a rotating-stack merge of three 70b models in a 103b (120 layer) configuration inspired by Venus 103b. The result of
|
| 15 |
this "frankenmerge" is a large model that contains a little bit of everything - including the kitchen sink. RP, chat, storywriting,
|
| 16 |
and instruct are all well supported. It may or may not code well - I lack the expertise to test it in that capacity, but considering
|
| 17 |
+
the source models, I suspect it is unlikely.
|
| 18 |
|
| 19 |
Component models for the rotating stack are
|
| 20 |
- royallab/Aetheria-L2-70B
|
|
|
|
| 24 |
Components of those models are purported to include: Nous-Hermes-Llama2-70b, Xwin-LM-7B-V0.1, Mythospice-70b, Euryale-1.3-L2-70B,
|
| 25 |
tulu-2-dpo-70b, GOAT-70B-Storytelling, Platypus2-70B-instruct, Lila-70B, SunsetBoulevard, and some private LoRAs.
|
| 26 |
|
| 27 |
+
As all components are based on Llama2 70b, native context length is 4k tokens. Coherency out to 8k is extremely good with rope scaling,
|
| 28 |
+
but starts to decline beyond that.
|
| 29 |
+
|
| 30 |
This model is uncensored and perfectly capable of generating objectionable material. However, it is not an explicitely-NSFW model,
|
| 31 |
+
and it has never "gone rogue" and tried to insert NSFW content into SFW prompts in my experience. As with any LLM, no factual claims
|
| 32 |
+
made by the model should be taken at face value. You know that boilerplate safety disclaimer that most professional models have?
|
| 33 |
+
Assume this has it too. This model is for entertainment purposes only.
|
| 34 |
|
| 35 |
|
| 36 |
|