Text Generation
Transformers
Safetensors
qwen2
mergekit
Merge
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use allknowingroger/QwenStock2-14B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use allknowingroger/QwenStock2-14B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="allknowingroger/QwenStock2-14B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("allknowingroger/QwenStock2-14B") model = AutoModelForCausalLM.from_pretrained("allknowingroger/QwenStock2-14B") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use allknowingroger/QwenStock2-14B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "allknowingroger/QwenStock2-14B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "allknowingroger/QwenStock2-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/allknowingroger/QwenStock2-14B
- SGLang
How to use allknowingroger/QwenStock2-14B 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 "allknowingroger/QwenStock2-14B" \ --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": "allknowingroger/QwenStock2-14B", "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 "allknowingroger/QwenStock2-14B" \ --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": "allknowingroger/QwenStock2-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use allknowingroger/QwenStock2-14B with Docker Model Runner:
docker model run hf.co/allknowingroger/QwenStock2-14B
Adding Evaluation Results
Browse filesThis is an automated PR created with https://huggingface.co/spaces/Weyaxi/open-llm-leaderboard-results-pr
The purpose of this PR is to add evaluation results from the Open LLM Leaderboard to your model card.
If you encounter any issues, please report them to https://huggingface.co/spaces/Weyaxi/open-llm-leaderboard-results-pr/discussions
README.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
- allknowingroger/Qwenslerp2-14B
|
| 4 |
- CultriX/Qwen2.5-14B-MegaMerge-pt2
|
|
@@ -8,11 +13,101 @@ base_model:
|
|
| 8 |
- allknowingroger/Qwenslerp3-14B
|
| 9 |
- CultriX/SeQwence-14Bv1
|
| 10 |
- CultriX/Qwen2.5-14B-Wernicke
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
-
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
# merge
|
| 18 |
|
|
@@ -55,4 +150,17 @@ parameters:
|
|
| 55 |
dtype: bfloat16
|
| 56 |
tokenizer_source: CultriX/SeQwence-14Bv1
|
| 57 |
|
| 58 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: transformers
|
| 4 |
+
tags:
|
| 5 |
+
- mergekit
|
| 6 |
+
- merge
|
| 7 |
base_model:
|
| 8 |
- allknowingroger/Qwenslerp2-14B
|
| 9 |
- CultriX/Qwen2.5-14B-MegaMerge-pt2
|
|
|
|
| 13 |
- allknowingroger/Qwenslerp3-14B
|
| 14 |
- CultriX/SeQwence-14Bv1
|
| 15 |
- CultriX/Qwen2.5-14B-Wernicke
|
| 16 |
+
model-index:
|
| 17 |
+
- name: QwenStock2-14B
|
| 18 |
+
results:
|
| 19 |
+
- task:
|
| 20 |
+
type: text-generation
|
| 21 |
+
name: Text Generation
|
| 22 |
+
dataset:
|
| 23 |
+
name: IFEval (0-Shot)
|
| 24 |
+
type: HuggingFaceH4/ifeval
|
| 25 |
+
args:
|
| 26 |
+
num_few_shot: 0
|
| 27 |
+
metrics:
|
| 28 |
+
- type: inst_level_strict_acc and prompt_level_strict_acc
|
| 29 |
+
value: 55.63
|
| 30 |
+
name: strict accuracy
|
| 31 |
+
source:
|
| 32 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=allknowingroger/QwenStock2-14B
|
| 33 |
+
name: Open LLM Leaderboard
|
| 34 |
+
- task:
|
| 35 |
+
type: text-generation
|
| 36 |
+
name: Text Generation
|
| 37 |
+
dataset:
|
| 38 |
+
name: BBH (3-Shot)
|
| 39 |
+
type: BBH
|
| 40 |
+
args:
|
| 41 |
+
num_few_shot: 3
|
| 42 |
+
metrics:
|
| 43 |
+
- type: acc_norm
|
| 44 |
+
value: 50.6
|
| 45 |
+
name: normalized accuracy
|
| 46 |
+
source:
|
| 47 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=allknowingroger/QwenStock2-14B
|
| 48 |
+
name: Open LLM Leaderboard
|
| 49 |
+
- task:
|
| 50 |
+
type: text-generation
|
| 51 |
+
name: Text Generation
|
| 52 |
+
dataset:
|
| 53 |
+
name: MATH Lvl 5 (4-Shot)
|
| 54 |
+
type: hendrycks/competition_math
|
| 55 |
+
args:
|
| 56 |
+
num_few_shot: 4
|
| 57 |
+
metrics:
|
| 58 |
+
- type: exact_match
|
| 59 |
+
value: 29.91
|
| 60 |
+
name: exact match
|
| 61 |
+
source:
|
| 62 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=allknowingroger/QwenStock2-14B
|
| 63 |
+
name: Open LLM Leaderboard
|
| 64 |
+
- task:
|
| 65 |
+
type: text-generation
|
| 66 |
+
name: Text Generation
|
| 67 |
+
dataset:
|
| 68 |
+
name: GPQA (0-shot)
|
| 69 |
+
type: Idavidrein/gpqa
|
| 70 |
+
args:
|
| 71 |
+
num_few_shot: 0
|
| 72 |
+
metrics:
|
| 73 |
+
- type: acc_norm
|
| 74 |
+
value: 17.23
|
| 75 |
+
name: acc_norm
|
| 76 |
+
source:
|
| 77 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=allknowingroger/QwenStock2-14B
|
| 78 |
+
name: Open LLM Leaderboard
|
| 79 |
+
- task:
|
| 80 |
+
type: text-generation
|
| 81 |
+
name: Text Generation
|
| 82 |
+
dataset:
|
| 83 |
+
name: MuSR (0-shot)
|
| 84 |
+
type: TAUR-Lab/MuSR
|
| 85 |
+
args:
|
| 86 |
+
num_few_shot: 0
|
| 87 |
+
metrics:
|
| 88 |
+
- type: acc_norm
|
| 89 |
+
value: 19.28
|
| 90 |
+
name: acc_norm
|
| 91 |
+
source:
|
| 92 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=allknowingroger/QwenStock2-14B
|
| 93 |
+
name: Open LLM Leaderboard
|
| 94 |
+
- task:
|
| 95 |
+
type: text-generation
|
| 96 |
+
name: Text Generation
|
| 97 |
+
dataset:
|
| 98 |
+
name: MMLU-PRO (5-shot)
|
| 99 |
+
type: TIGER-Lab/MMLU-Pro
|
| 100 |
+
config: main
|
| 101 |
+
split: test
|
| 102 |
+
args:
|
| 103 |
+
num_few_shot: 5
|
| 104 |
+
metrics:
|
| 105 |
+
- type: acc
|
| 106 |
+
value: 48.95
|
| 107 |
+
name: accuracy
|
| 108 |
+
source:
|
| 109 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=allknowingroger/QwenStock2-14B
|
| 110 |
+
name: Open LLM Leaderboard
|
| 111 |
---
|
| 112 |
# merge
|
| 113 |
|
|
|
|
| 150 |
dtype: bfloat16
|
| 151 |
tokenizer_source: CultriX/SeQwence-14Bv1
|
| 152 |
|
| 153 |
+
```
|
| 154 |
+
# [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)
|
| 155 |
+
Detailed results can be found [here](https://huggingface.co/datasets/open-llm-leaderboard/details_allknowingroger__QwenStock2-14B)
|
| 156 |
+
|
| 157 |
+
| Metric |Value|
|
| 158 |
+
|-------------------|----:|
|
| 159 |
+
|Avg. |36.93|
|
| 160 |
+
|IFEval (0-Shot) |55.63|
|
| 161 |
+
|BBH (3-Shot) |50.60|
|
| 162 |
+
|MATH Lvl 5 (4-Shot)|29.91|
|
| 163 |
+
|GPQA (0-shot) |17.23|
|
| 164 |
+
|MuSR (0-shot) |19.28|
|
| 165 |
+
|MMLU-PRO (5-shot) |48.95|
|
| 166 |
+
|