How to use from
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 "Josephgflowers/TinyLlama-3T-Cinder-v1.3" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "Josephgflowers/TinyLlama-3T-Cinder-v1.3",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
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 "Josephgflowers/TinyLlama-3T-Cinder-v1.3" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "Josephgflowers/TinyLlama-3T-Cinder-v1.3",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Overview Cinder is an AI chatbot tailored for engaging users in scientific and educational conversations, offering companionship, and sparking imaginative exploration. It is built on the TinyLlama 1.1B parameter model and trained on a unique combination of datasets.

image/png

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 37.23
AI2 Reasoning Challenge (25-Shot) 33.96
HellaSwag (10-Shot) 58.14
MMLU (5-Shot) 25.41
TruthfulQA (0-shot) 38.13
Winogrande (5-shot) 63.93
GSM8k (5-shot) 3.79
Downloads last month
185
Safetensors
Model size
1B params
Tensor type
F16
·
Inference Providers NEW
Input a message to start chatting with Josephgflowers/TinyLlama-3T-Cinder-v1.3.

Model tree for Josephgflowers/TinyLlama-3T-Cinder-v1.3

Merges
1 model
Quantizations
2 models

Space using Josephgflowers/TinyLlama-3T-Cinder-v1.3 1

Evaluation results