Text Generation
Transformers
Safetensors
English
llama
Eval Results (legacy)
text-generation-inference
Instructions to use Sharathhebbar24/ssh_1.8B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Sharathhebbar24/ssh_1.8B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Sharathhebbar24/ssh_1.8B")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Sharathhebbar24/ssh_1.8B") model = AutoModelForCausalLM.from_pretrained("Sharathhebbar24/ssh_1.8B") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Sharathhebbar24/ssh_1.8B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Sharathhebbar24/ssh_1.8B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Sharathhebbar24/ssh_1.8B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Sharathhebbar24/ssh_1.8B
- SGLang
How to use Sharathhebbar24/ssh_1.8B 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 "Sharathhebbar24/ssh_1.8B" \ --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": "Sharathhebbar24/ssh_1.8B", "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 "Sharathhebbar24/ssh_1.8B" \ --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": "Sharathhebbar24/ssh_1.8B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Sharathhebbar24/ssh_1.8B with Docker Model Runner:
docker model run hf.co/Sharathhebbar24/ssh_1.8B
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Sharathhebbar24/ssh_1.8B")
model = AutoModelForCausalLM.from_pretrained("Sharathhebbar24/ssh_1.8B")Quick Links
Sharathhebbar24/ssh_1.8B is a 1.8B model
The model is a modified version of qnguyen3/quan-1.8b-chat
Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 2e-05
- train_batch_size: 2
- eval_batch_size: 2
- seed: 42
- distributed_type: multi-GPU
- num_devices: 4
- gradient_accumulation_steps: 4
- total_train_batch_size: 32
- total_eval_batch_size: 8
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: cosine
- lr_scheduler_warmup_steps: 100
- num_epochs: 4
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 45.91 |
| AI2 Reasoning Challenge (25-Shot) | 39.08 |
| HellaSwag (10-Shot) | 62.37 |
| MMLU (5-Shot) | 44.09 |
| TruthfulQA (0-shot) | 43.15 |
| Winogrande (5-shot) | 59.27 |
| GSM8k (5-shot) | 27.52 |
- Downloads last month
- 94
Evaluation results
- normalized accuracy on AI2 Reasoning Challenge (25-Shot)test set Open LLM Leaderboard39.080
- normalized accuracy on HellaSwag (10-Shot)validation set Open LLM Leaderboard62.370
- accuracy on MMLU (5-Shot)test set Open LLM Leaderboard44.090
- mc2 on TruthfulQA (0-shot)validation set Open LLM Leaderboard43.150
- accuracy on Winogrande (5-shot)validation set Open LLM Leaderboard59.270
- accuracy on GSM8k (5-shot)test set Open LLM Leaderboard27.520
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Sharathhebbar24/ssh_1.8B")