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 "prithivMLmods/Calme-Ties3-78B" \
    --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": "prithivMLmods/Calme-Ties3-78B",
		"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 "prithivMLmods/Calme-Ties3-78B" \
        --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": "prithivMLmods/Calme-Ties3-78B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Calme-Ties3-78B

This model is a result of merging pre-trained language models using the TIES merge method, with prithivMLmods/Calme-Ties2-78B as the base model. The merged model includes MaziyarPanahi/calme-2.4-rys-78b, with both models contributing equally in terms of weight and density. The configuration features parameters such as normalization, int8 masking, and the use of a bfloat16 data type to enhance performance.

Merge

This is a merge of pre-trained language models created using mergekit.

Merge Method

This model was merged using the TIES merge method using prithivMLmods/Calme-Ties2-78B as a base.

Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: MaziyarPanahi/calme-2.4-rys-78b
    parameters:
      weight: 1
      density: 1
merge_method: ties
base_model: prithivMLmods/Calme-Ties2-78B
parameters:
  weight: 1
  density: 1
  normalize: true
  int8_mask: true
dtype: bfloat16
Downloads last month
4
Safetensors
Model size
78B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for prithivMLmods/Calme-Ties3-78B

Paper for prithivMLmods/Calme-Ties3-78B