Text Generation
Transformers
Safetensors
mistral
mergekit
Merge
Not-For-All-Audiences
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use bamec66557/VICIOUS_MESH-12B-BETA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bamec66557/VICIOUS_MESH-12B-BETA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bamec66557/VICIOUS_MESH-12B-BETA") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("bamec66557/VICIOUS_MESH-12B-BETA") model = AutoModelForCausalLM.from_pretrained("bamec66557/VICIOUS_MESH-12B-BETA", device_map="auto") 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 Settings
- vLLM
How to use bamec66557/VICIOUS_MESH-12B-BETA with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bamec66557/VICIOUS_MESH-12B-BETA" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bamec66557/VICIOUS_MESH-12B-BETA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bamec66557/VICIOUS_MESH-12B-BETA
- SGLang
How to use bamec66557/VICIOUS_MESH-12B-BETA 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 "bamec66557/VICIOUS_MESH-12B-BETA" \ --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": "bamec66557/VICIOUS_MESH-12B-BETA", "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 "bamec66557/VICIOUS_MESH-12B-BETA" \ --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": "bamec66557/VICIOUS_MESH-12B-BETA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use bamec66557/VICIOUS_MESH-12B-BETA with Docker Model Runner:
docker model run hf.co/bamec66557/VICIOUS_MESH-12B-BETA
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,6 +4,7 @@ library_name: transformers
|
|
| 4 |
tags:
|
| 5 |
- mergekit
|
| 6 |
- merge
|
|
|
|
| 7 |
base_model:
|
| 8 |
- bamec66557/VICIOUS_MESH-12B-ALPHA
|
| 9 |
- Infermatic/MN-12B-Inferor-v0.1
|
|
@@ -24,7 +25,8 @@ model-index:
|
|
| 24 |
value: 67.21
|
| 25 |
name: strict accuracy
|
| 26 |
source:
|
| 27 |
-
url:
|
|
|
|
| 28 |
name: Open LLM Leaderboard
|
| 29 |
- task:
|
| 30 |
type: text-generation
|
|
@@ -39,7 +41,8 @@ model-index:
|
|
| 39 |
value: 31.36
|
| 40 |
name: normalized accuracy
|
| 41 |
source:
|
| 42 |
-
url:
|
|
|
|
| 43 |
name: Open LLM Leaderboard
|
| 44 |
- task:
|
| 45 |
type: text-generation
|
|
@@ -54,7 +57,8 @@ model-index:
|
|
| 54 |
value: 12.08
|
| 55 |
name: exact match
|
| 56 |
source:
|
| 57 |
-
url:
|
|
|
|
| 58 |
name: Open LLM Leaderboard
|
| 59 |
- task:
|
| 60 |
type: text-generation
|
|
@@ -69,7 +73,8 @@ model-index:
|
|
| 69 |
value: 8.84
|
| 70 |
name: acc_norm
|
| 71 |
source:
|
| 72 |
-
url:
|
|
|
|
| 73 |
name: Open LLM Leaderboard
|
| 74 |
- task:
|
| 75 |
type: text-generation
|
|
@@ -84,7 +89,8 @@ model-index:
|
|
| 84 |
value: 14.34
|
| 85 |
name: acc_norm
|
| 86 |
source:
|
| 87 |
-
url:
|
|
|
|
| 88 |
name: Open LLM Leaderboard
|
| 89 |
- task:
|
| 90 |
type: text-generation
|
|
@@ -101,8 +107,19 @@ model-index:
|
|
| 101 |
value: 29.76
|
| 102 |
name: accuracy
|
| 103 |
source:
|
| 104 |
-
url:
|
|
|
|
| 105 |
name: Open LLM Leaderboard
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
---
|
| 107 |
# merge
|
| 108 |
|
|
@@ -154,5 +171,4 @@ Detailed results can be found [here](https://huggingface.co/datasets/open-llm-le
|
|
| 154 |
|MATH Lvl 5 (4-Shot)|12.08|
|
| 155 |
|GPQA (0-shot) | 8.84|
|
| 156 |
|MuSR (0-shot) |14.34|
|
| 157 |
-
|MMLU-PRO (5-shot) |29.76|
|
| 158 |
-
|
|
|
|
| 4 |
tags:
|
| 5 |
- mergekit
|
| 6 |
- merge
|
| 7 |
+
- not-for-all-audiences
|
| 8 |
base_model:
|
| 9 |
- bamec66557/VICIOUS_MESH-12B-ALPHA
|
| 10 |
- Infermatic/MN-12B-Inferor-v0.1
|
|
|
|
| 25 |
value: 67.21
|
| 26 |
name: strict accuracy
|
| 27 |
source:
|
| 28 |
+
url: >-
|
| 29 |
+
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=bamec66557/VICIOUS_MESH-12B-BETA
|
| 30 |
name: Open LLM Leaderboard
|
| 31 |
- task:
|
| 32 |
type: text-generation
|
|
|
|
| 41 |
value: 31.36
|
| 42 |
name: normalized accuracy
|
| 43 |
source:
|
| 44 |
+
url: >-
|
| 45 |
+
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=bamec66557/VICIOUS_MESH-12B-BETA
|
| 46 |
name: Open LLM Leaderboard
|
| 47 |
- task:
|
| 48 |
type: text-generation
|
|
|
|
| 57 |
value: 12.08
|
| 58 |
name: exact match
|
| 59 |
source:
|
| 60 |
+
url: >-
|
| 61 |
+
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=bamec66557/VICIOUS_MESH-12B-BETA
|
| 62 |
name: Open LLM Leaderboard
|
| 63 |
- task:
|
| 64 |
type: text-generation
|
|
|
|
| 73 |
value: 8.84
|
| 74 |
name: acc_norm
|
| 75 |
source:
|
| 76 |
+
url: >-
|
| 77 |
+
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=bamec66557/VICIOUS_MESH-12B-BETA
|
| 78 |
name: Open LLM Leaderboard
|
| 79 |
- task:
|
| 80 |
type: text-generation
|
|
|
|
| 89 |
value: 14.34
|
| 90 |
name: acc_norm
|
| 91 |
source:
|
| 92 |
+
url: >-
|
| 93 |
+
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=bamec66557/VICIOUS_MESH-12B-BETA
|
| 94 |
name: Open LLM Leaderboard
|
| 95 |
- task:
|
| 96 |
type: text-generation
|
|
|
|
| 107 |
value: 29.76
|
| 108 |
name: accuracy
|
| 109 |
source:
|
| 110 |
+
url: >-
|
| 111 |
+
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=bamec66557/VICIOUS_MESH-12B-BETA
|
| 112 |
name: Open LLM Leaderboard
|
| 113 |
+
datasets:
|
| 114 |
+
- open-llm-leaderboard/bamec66557__VICIOUS_MESH-12B-BETA-details
|
| 115 |
+
- open-llm-leaderboard/bamec66557__VICIOUS_MESH-12B-ALPHA-details
|
| 116 |
+
language:
|
| 117 |
+
- en
|
| 118 |
+
- ja
|
| 119 |
+
- ru
|
| 120 |
+
- zh
|
| 121 |
+
- ko
|
| 122 |
+
- es
|
| 123 |
---
|
| 124 |
# merge
|
| 125 |
|
|
|
|
| 171 |
|MATH Lvl 5 (4-Shot)|12.08|
|
| 172 |
|GPQA (0-shot) | 8.84|
|
| 173 |
|MuSR (0-shot) |14.34|
|
| 174 |
+
|MMLU-PRO (5-shot) |29.76|
|
|
|