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
The perplexity is bad.
i finally can test the model for loss when extending context. It's like the superhot lora didn't take.
Normal PTB should be smaller than that. And I did RP with it for a while. It has trouble to play characters and not just itself. It's not bad to talk to and it writes so long. It's just inherently flawed I think. On longer context after a while it got very repetitive. With compressed pos emb of 4 it actually started gibberish. Tests show why.
Thank you for the feedback; it's a bit of a misnomer, and my fault as well since I took as long to clarify with a model card; the LoRA used was the SuperHOT-prototype13b-8192 [which has been removed from HF] - not the actual 8K ctx working LoRA. As far as perplexity, I am looking into assembling a toolset to [potentially] mix-tune models based on user-decided datasets. A bit of a meta way of merging and auto-exploring ideal ratios on a per-layer basis π€. [PTB is my go-to until I modularize the script.]
It may be interesting to see how this hold up as a springboard for merges with other finetunes. Some do a lot better with extended ctx, so I can see it piggybacking onto that.
