Text Generation
Transformers
PyTorch
llama
alpaca
cot
vicuna
uncensored
Merge
mix
text-generation-inference
Instructions to use CalderaAI/13B-BlueMethod with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CalderaAI/13B-BlueMethod with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CalderaAI/13B-BlueMethod")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("CalderaAI/13B-BlueMethod") model = AutoModelForCausalLM.from_pretrained("CalderaAI/13B-BlueMethod") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use CalderaAI/13B-BlueMethod with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CalderaAI/13B-BlueMethod" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CalderaAI/13B-BlueMethod", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/CalderaAI/13B-BlueMethod
- SGLang
How to use CalderaAI/13B-BlueMethod 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 "CalderaAI/13B-BlueMethod" \ --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": "CalderaAI/13B-BlueMethod", "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 "CalderaAI/13B-BlueMethod" \ --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": "CalderaAI/13B-BlueMethod", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use CalderaAI/13B-BlueMethod with Docker Model Runner:
docker model run hf.co/CalderaAI/13B-BlueMethod
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,15 +20,21 @@ project.
|
|
| 20 |
[Tier One and Two Merges not released; internal naming convention]
|
| 21 |
|
| 22 |
Tier One Merges:
|
|
|
|
| 23 |
13B-Metharme+13B-Nous-Hermes=13B-Methermes
|
|
|
|
| 24 |
13B-Vicuna-cocktail+13B-Manticore=13B-Vicortia
|
|
|
|
| 25 |
13B-HyperMantis+13B-Alpacino=13B-PsychoMantis
|
| 26 |
|
| 27 |
Tier Two Merges:
|
|
|
|
| 28 |
13B-Methermes+13B-Vicortia=13B-Methphistopheles
|
|
|
|
| 29 |
13B-PsychoMantis+13B-BlueMoonRP=13B-BlueMantis
|
| 30 |
|
| 31 |
Tier Three Merge:
|
|
|
|
| 32 |
13B-Methphistopheles+13B-BlueMantis=13B-BlueMethod
|
| 33 |
|
| 34 |
## Use:
|
|
|
|
| 20 |
[Tier One and Two Merges not released; internal naming convention]
|
| 21 |
|
| 22 |
Tier One Merges:
|
| 23 |
+
|
| 24 |
13B-Metharme+13B-Nous-Hermes=13B-Methermes
|
| 25 |
+
|
| 26 |
13B-Vicuna-cocktail+13B-Manticore=13B-Vicortia
|
| 27 |
+
|
| 28 |
13B-HyperMantis+13B-Alpacino=13B-PsychoMantis
|
| 29 |
|
| 30 |
Tier Two Merges:
|
| 31 |
+
|
| 32 |
13B-Methermes+13B-Vicortia=13B-Methphistopheles
|
| 33 |
+
|
| 34 |
13B-PsychoMantis+13B-BlueMoonRP=13B-BlueMantis
|
| 35 |
|
| 36 |
Tier Three Merge:
|
| 37 |
+
|
| 38 |
13B-Methphistopheles+13B-BlueMantis=13B-BlueMethod
|
| 39 |
|
| 40 |
## Use:
|