Text Generation
Transformers
Safetensors
English
mistral
mergekit
Merge
Eval Results (legacy)
text-generation-inference
How to use from
SGLangUse 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 "ResplendentAI/Paradigm_7B" \
--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": "ResplendentAI/Paradigm_7B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'Quick Links
Paradigm
An incredibly effective and intelligent RP model designed to be the best bot you've ever used. I hope you like it!
GGUF available here: https://huggingface.co/Lewdiculous/Paradigm_7B-GGUF-IQ-Imatrix
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 75.47 |
| AI2 Reasoning Challenge (25-Shot) | 73.63 |
| HellaSwag (10-Shot) | 88.66 |
| MMLU (5-Shot) | 64.02 |
| TruthfulQA (0-shot) | 75.19 |
| Winogrande (5-shot) | 84.53 |
| GSM8k (5-shot) | 66.79 |
Configuration
The following YAML configuration was used to produce this model:
merge_method: dare_ties
base_model: ChaoticNeutrals/Eris_Remix_7B
parameters:
normalize: true
models:
- model: ChaoticNeutrals/Eris_Remix_7B
parameters:
weight: 1
- model: ResplendentAI/Datura_7B
parameters:
weight: 1
- model: liminerity/Multiverse-Experiment-slerp-7b+jeiku/Alpaca_NSFW_Shuffled_Mistral
parameters:
weight: 0.33
dtype: float16
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 75.47 |
| AI2 Reasoning Challenge (25-Shot) | 73.63 |
| HellaSwag (10-Shot) | 88.66 |
| MMLU (5-Shot) | 64.02 |
| TruthfulQA (0-shot) | 75.19 |
| Winogrande (5-shot) | 84.53 |
| GSM8k (5-shot) | 66.79 |
- Downloads last month
- 86
Model tree for ResplendentAI/Paradigm_7B
Merge model
this model
Datasets used to train ResplendentAI/Paradigm_7B
Evaluation results
- normalized accuracy on AI2 Reasoning Challenge (25-Shot)test set Open LLM Leaderboard73.630
- normalized accuracy on HellaSwag (10-Shot)validation set Open LLM Leaderboard88.660
- accuracy on MMLU (5-Shot)test set Open LLM Leaderboard64.020
- mc2 on TruthfulQA (0-shot)validation set Open LLM Leaderboard75.190
- accuracy on Winogrande (5-shot)validation set Open LLM Leaderboard84.530
- accuracy on GSM8k (5-shot)test set Open LLM Leaderboard66.790

Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ResplendentAI/Paradigm_7B" \ --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": "ResplendentAI/Paradigm_7B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'