Text Generation
Transformers
PyTorch
llama
alpaca
vicuna
uncensored
cot
chain of thought
story
adventure
roleplay
rp
Merge
mix
instruct
wizardlm
superhot
supercot
manticore
hippogriff
text-generation-inference
Instructions to use CalderaAI/30B-Epsilon with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CalderaAI/30B-Epsilon with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CalderaAI/30B-Epsilon")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("CalderaAI/30B-Epsilon") model = AutoModelForCausalLM.from_pretrained("CalderaAI/30B-Epsilon") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use CalderaAI/30B-Epsilon with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CalderaAI/30B-Epsilon" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CalderaAI/30B-Epsilon", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/CalderaAI/30B-Epsilon
- SGLang
How to use CalderaAI/30B-Epsilon 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/30B-Epsilon" \ --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/30B-Epsilon", "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/30B-Epsilon" \ --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/30B-Epsilon", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use CalderaAI/30B-Epsilon with Docker Model Runner:
docker model run hf.co/CalderaAI/30B-Epsilon
Upload 4 files
Browse files
pytorch_model-00001-of-00007.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea8822b27bc39420e01a59e5a7adfe4daa2d4463dbf7fd63195df89f3927cb74
|
| 3 |
+
size 9818324627
|
pytorch_model-00002-of-00007.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f803fcb2db00ef83bc0eae8fb8268d91cc6ff414008eee3424ac22589523399e
|
| 3 |
+
size 9958102743
|
pytorch_model-00003-of-00007.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c55d21f73c7e0a8c3544dce58359fdf30078410c7fec8f149d866a219a8eb6e1
|
| 3 |
+
size 9896734715
|
pytorch_model-00004-of-00007.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9631db40ae372af49caeefdc67e41cede972d99077dd3189ee9b14a9e462922c
|
| 3 |
+
size 9869470481
|