Image-Text-to-Text
Transformers
Safetensors
gemma4
heretic
uncensored
decensored
abliterated
ara
conversational
Instructions to use llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic") model = AutoModelForMultimodalLM.from_pretrained("llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic
- SGLang
How to use llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic 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 "llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic" \ --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": "llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic" \ --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": "llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic with Docker Model Runner:
docker model run hf.co/llmfan46/gemma-4-31B-it-qat-q4_0-unquantized-uncensored-heretic
Update README.md
Browse files
README.md
CHANGED
|
@@ -46,11 +46,11 @@ Your help will motivate me and would go into further improving my workflow and c
|
|
| 46 |
|
| 47 |
| Parameter | Value |
|
| 48 |
| :-------- | :---: |
|
| 49 |
-
| **start_layer_index** |
|
| 50 |
-
| **end_layer_index** |
|
| 51 |
-
| **preserve_good_behavior_weight** | 0.
|
| 52 |
-
| **steer_bad_behavior_weight** | 0.
|
| 53 |
-
| **overcorrect_relative_weight** |
|
| 54 |
| **neighbor_count** | 15 |
|
| 55 |
|
| 56 |
## Targeted components
|
|
@@ -61,8 +61,8 @@ Your help will motivate me and would go into further improving my workflow and c
|
|
| 61 |
|
| 62 |
| Metric | This model | Original model ([gemma-4-31B-it](https://huggingface.co/google/gemma-4-31B-it)) |
|
| 63 |
| :----- | :--------: | :---------------------------: |
|
| 64 |
-
| **KL divergence** | <span style="color:darkgoldenrod">0.
|
| 65 |
-
| **Refusals** | ✅ <span style="color:darkgreen">
|
| 66 |
|
| 67 |
Lower refusals indicate fewer content restrictions, while lower KL divergence indicates more closeness to the original model's baseline. Higher refusals cause more rejections, objections, pushbacks, lecturing, censorship, softening and deflections.
|
| 68 |
|
|
@@ -74,72 +74,72 @@ Lower refusals indicate fewer content restrictions, while lower KL divergence in
|
|
| 74 |
|
| 75 |
- Total questions: 7021
|
| 76 |
|
| 77 |
-
- Correct:
|
| 78 |
|
| 79 |
-
- **Accuracy: 0.
|
| 80 |
|
| 81 |
-
- Parse failures:
|
| 82 |
|
| 83 |
============================================================
|
| 84 |
|
| 85 |
**Tested subject scores:**
|
| 86 |
-
- professional_law: 0.
|
| 87 |
-
- moral_scenarios: 0.
|
| 88 |
-
- miscellaneous: 0.
|
| 89 |
-
- professional_psychology: 0.
|
| 90 |
-
- high_school_psychology: 0.
|
| 91 |
- high_school_macroeconomics: 0.9289 (183/197)
|
| 92 |
-
- elementary_mathematics: 0.
|
| 93 |
-
- moral_disputes: 0.
|
| 94 |
-
- prehistory: 0.
|
| 95 |
- philosophy: 0.8491 (135/159)
|
| 96 |
- high_school_biology: 0.9539 (145/152)
|
| 97 |
- professional_accounting: 0.8392 (120/143)
|
| 98 |
-
- clinical_knowledge: 0.
|
| 99 |
-
- high_school_microeconomics: 0.
|
| 100 |
-
- nutrition: 0.
|
| 101 |
-
- professional_medicine: 0.
|
| 102 |
- conceptual_physics: 0.9219 (118/128)
|
| 103 |
-
- high_school_mathematics: 0.
|
| 104 |
- human_aging: 0.8448 (98/116)
|
| 105 |
-
- security_studies: 0.
|
| 106 |
- high_school_statistics: 0.8739 (97/111)
|
| 107 |
-
- marketing: 0.
|
| 108 |
-
- high_school_world_history: 0.
|
| 109 |
-
- sociology: 0.
|
| 110 |
- high_school_government_and_politics: 0.9703 (98/101)
|
| 111 |
- high_school_geography: 0.9293 (92/99)
|
| 112 |
- high_school_chemistry: 0.7732 (75/97)
|
| 113 |
- high_school_us_history: 0.9368 (89/95)
|
| 114 |
-
- virology: 0.
|
| 115 |
- college_medicine: 0.8523 (75/88)
|
| 116 |
-
- world_religions: 0.
|
| 117 |
-
- high_school_physics: 0.
|
| 118 |
-
- electrical_engineering: 0.
|
| 119 |
-
- astronomy: 0.
|
| 120 |
-
- logical_fallacies: 0.
|
| 121 |
- high_school_european_history: 0.9041 (66/73)
|
| 122 |
-
- anatomy: 0.
|
| 123 |
- college_biology: 0.9688 (62/64)
|
| 124 |
- human_sexuality: 0.9219 (59/64)
|
| 125 |
- formal_logic: 0.7969 (51/64)
|
| 126 |
-
- public_relations: 0.
|
| 127 |
-
- international_law: 0.
|
| 128 |
-
- college_physics: 0.
|
| 129 |
-
- college_mathematics: 0.
|
| 130 |
-
- econometrics: 0.
|
| 131 |
-
- jurisprudence: 0.
|
| 132 |
-
- high_school_computer_science:
|
| 133 |
- machine_learning: 0.8462 (44/52)
|
| 134 |
- medical_genetics: 0.9608 (49/51)
|
| 135 |
-
- global_facts: 0.
|
| 136 |
- management: 0.9200 (46/50)
|
| 137 |
-
- us_foreign_policy: 0.
|
| 138 |
- college_chemistry: 0.5745 (27/47)
|
| 139 |
-
- abstract_algebra: 0.
|
| 140 |
-
- business_ethics: 0.
|
| 141 |
-
- college_computer_science: 0.
|
| 142 |
-
- computer_security: 0.
|
| 143 |
|
| 144 |
|
| 145 |
<span style="color:darkgreen">Heretic:</span>
|
|
@@ -148,78 +148,78 @@ Lower refusals indicate fewer content restrictions, while lower KL divergence in
|
|
| 148 |
|
| 149 |
- Total questions: 7021
|
| 150 |
|
| 151 |
-
- Correct:
|
| 152 |
|
| 153 |
-
- **Accuracy: 0.
|
| 154 |
|
| 155 |
-
- Parse failures:
|
| 156 |
|
| 157 |
============================================================
|
| 158 |
|
| 159 |
**Tested subject scores:**
|
| 160 |
-
- professional_law: 0.
|
| 161 |
-
- moral_scenarios: 0.
|
| 162 |
-
- miscellaneous: 0.
|
| 163 |
-
- professional_psychology: 0.
|
| 164 |
-
- high_school_psychology: 0.
|
| 165 |
-
- high_school_macroeconomics: 0.
|
| 166 |
-
- elementary_mathematics: 0.
|
| 167 |
-
- moral_disputes: 0.
|
| 168 |
-
- prehistory: 0.
|
| 169 |
-
- philosophy: 0.
|
| 170 |
- high_school_biology: 0.9539 (145/152)
|
| 171 |
-
- professional_accounting: 0.
|
| 172 |
-
- clinical_knowledge: 0.
|
| 173 |
-
- high_school_microeconomics: 0.
|
| 174 |
-
- nutrition: 0.
|
| 175 |
-
- professional_medicine: 0.
|
| 176 |
- conceptual_physics: 0.8984 (115/128)
|
| 177 |
-
- high_school_mathematics: 0.
|
| 178 |
-
- human_aging: 0.
|
| 179 |
-
- security_studies: 0.
|
| 180 |
-
- high_school_statistics: 0.
|
| 181 |
-
- marketing: 0.
|
| 182 |
-
- high_school_world_history: 0.
|
| 183 |
-
- sociology: 0.
|
| 184 |
-
- high_school_government_and_politics: 0.
|
| 185 |
-
- high_school_geography: 0.
|
| 186 |
-
- high_school_chemistry: 0.
|
| 187 |
-
- high_school_us_history: 0.
|
| 188 |
- virology: 0.5056 (45/89)
|
| 189 |
-
- college_medicine: 0.
|
| 190 |
-
- world_religions: 0.
|
| 191 |
-
- high_school_physics: 0.
|
| 192 |
-
- electrical_engineering: 0.
|
| 193 |
- astronomy: 0.9494 (75/79)
|
| 194 |
-
- logical_fallacies: 0.
|
| 195 |
- high_school_european_history: 0.8767 (64/73)
|
| 196 |
-
- anatomy: 0.
|
| 197 |
- college_biology: 0.9688 (62/64)
|
| 198 |
-
- human_sexuality: 0.
|
| 199 |
-
- formal_logic: 0.
|
| 200 |
- public_relations: 0.7541 (46/61)
|
| 201 |
- international_law: 0.9167 (55/60)
|
| 202 |
- college_physics: 0.7018 (40/57)
|
| 203 |
-
- college_mathematics: 0.
|
| 204 |
- econometrics: 0.7778 (42/54)
|
| 205 |
-
- jurisprudence: 0.
|
| 206 |
- high_school_computer_science: 0.9808 (51/52)
|
| 207 |
-
- machine_learning: 0.
|
| 208 |
-
- medical_genetics: 0.
|
| 209 |
-
- global_facts: 0.
|
| 210 |
-
- management: 0.
|
| 211 |
-
- us_foreign_policy: 0.
|
| 212 |
-
- college_chemistry: 0.
|
| 213 |
-
- abstract_algebra: 0.
|
| 214 |
- business_ethics: 0.8478 (39/46)
|
| 215 |
-
- college_computer_science: 0.
|
| 216 |
-
- computer_security: 0.
|
| 217 |
|
| 218 |
MMLU - Massive Multitask Language Understanding, multiple-choice questions across 57 subjects (math, history, law, medicine, etc.).
|
| 219 |
|
| 220 |
## GGUF Version
|
| 221 |
|
| 222 |
-
GGUF quantizations available here [llmfan46/gemma-4-31B-it-uncensored-heretic-GGUF](https://huggingface.co/llmfan46/gemma-4-31B-it-uncensored-heretic-GGUF).
|
| 223 |
|
| 224 |
-----
|
| 225 |
|
|
|
|
| 46 |
|
| 47 |
| Parameter | Value |
|
| 48 |
| :-------- | :---: |
|
| 49 |
+
| **start_layer_index** | 9 |
|
| 50 |
+
| **end_layer_index** | 36 |
|
| 51 |
+
| **preserve_good_behavior_weight** | 0.4826 |
|
| 52 |
+
| **steer_bad_behavior_weight** | 0.0002 |
|
| 53 |
+
| **overcorrect_relative_weight** | 1.0491 |
|
| 54 |
| **neighbor_count** | 15 |
|
| 55 |
|
| 56 |
## Targeted components
|
|
|
|
| 61 |
|
| 62 |
| Metric | This model | Original model ([gemma-4-31B-it](https://huggingface.co/google/gemma-4-31B-it)) |
|
| 63 |
| :----- | :--------: | :---------------------------: |
|
| 64 |
+
| **KL divergence** | <span style="color:darkgoldenrod">0.0365</span> | 0 *(by definition)* |
|
| 65 |
+
| **Refusals** | ✅ <span style="color:darkgreen">11/100</span> | ❌ <span style="color:blue">99/100</span> |
|
| 66 |
|
| 67 |
Lower refusals indicate fewer content restrictions, while lower KL divergence indicates more closeness to the original model's baseline. Higher refusals cause more rejections, objections, pushbacks, lecturing, censorship, softening and deflections.
|
| 68 |
|
|
|
|
| 74 |
|
| 75 |
- Total questions: 7021
|
| 76 |
|
| 77 |
+
- Correct: 6050
|
| 78 |
|
| 79 |
+
- **Accuracy: 0.8617 (86.17%)**
|
| 80 |
|
| 81 |
+
- Parse failures: 61
|
| 82 |
|
| 83 |
============================================================
|
| 84 |
|
| 85 |
**Tested subject scores:**
|
| 86 |
+
- professional_law: 0.7618 (598/785)
|
| 87 |
+
- moral_scenarios: 0.8281 (366/442)
|
| 88 |
+
- miscellaneous: 0.9217 (353/383)
|
| 89 |
+
- professional_psychology: 0.8924 (282/316)
|
| 90 |
+
- high_school_psychology: 0.9667 (261/270)
|
| 91 |
- high_school_macroeconomics: 0.9289 (183/197)
|
| 92 |
+
- elementary_mathematics: 0.9457 (174/184)
|
| 93 |
+
- moral_disputes: 0.8621 (150/174)
|
| 94 |
+
- prehistory: 0.9302 (160/172)
|
| 95 |
- philosophy: 0.8491 (135/159)
|
| 96 |
- high_school_biology: 0.9539 (145/152)
|
| 97 |
- professional_accounting: 0.8392 (120/143)
|
| 98 |
+
- clinical_knowledge: 0.9214 (129/140)
|
| 99 |
+
- high_school_microeconomics: 0.9559 (130/136)
|
| 100 |
+
- nutrition: 0.9185 (124/135)
|
| 101 |
+
- professional_medicine: 0.9104 (122/134)
|
| 102 |
- conceptual_physics: 0.9219 (118/128)
|
| 103 |
+
- high_school_mathematics: 0.5276 (67/127)
|
| 104 |
- human_aging: 0.8448 (98/116)
|
| 105 |
+
- security_studies: 0.8929 (100/112)
|
| 106 |
- high_school_statistics: 0.8739 (97/111)
|
| 107 |
+
- marketing: 0.9633 (105/109)
|
| 108 |
+
- high_school_world_history: 0.9623 (102/106)
|
| 109 |
+
- sociology: 0.9029 (93/103)
|
| 110 |
- high_school_government_and_politics: 0.9703 (98/101)
|
| 111 |
- high_school_geography: 0.9293 (92/99)
|
| 112 |
- high_school_chemistry: 0.7732 (75/97)
|
| 113 |
- high_school_us_history: 0.9368 (89/95)
|
| 114 |
+
- virology: 0.4944 (44/89)
|
| 115 |
- college_medicine: 0.8523 (75/88)
|
| 116 |
+
- world_religions: 0.8977 (79/88)
|
| 117 |
+
- high_school_physics: 0.7619 (64/84)
|
| 118 |
+
- electrical_engineering: 0.8148 (66/81)
|
| 119 |
+
- astronomy: 0.9620 (76/79)
|
| 120 |
+
- logical_fallacies: 0.8947 (68/76)
|
| 121 |
- high_school_european_history: 0.9041 (66/73)
|
| 122 |
+
- anatomy: 0.8873 (63/71)
|
| 123 |
- college_biology: 0.9688 (62/64)
|
| 124 |
- human_sexuality: 0.9219 (59/64)
|
| 125 |
- formal_logic: 0.7969 (51/64)
|
| 126 |
+
- public_relations: 0.7541 (46/61)
|
| 127 |
+
- international_law: 0.9000 (54/60)
|
| 128 |
+
- college_physics: 0.7193 (41/57)
|
| 129 |
+
- college_mathematics: 0.6909 (38/55)
|
| 130 |
+
- econometrics: 0.8148 (44/54)
|
| 131 |
+
- jurisprudence: 0.8868 (47/53)
|
| 132 |
+
- high_school_computer_science: 1.0000 (52/52)
|
| 133 |
- machine_learning: 0.8462 (44/52)
|
| 134 |
- medical_genetics: 0.9608 (49/51)
|
| 135 |
+
- global_facts: 0.5882 (30/51)
|
| 136 |
- management: 0.9200 (46/50)
|
| 137 |
+
- us_foreign_policy: 0.9400 (47/50)
|
| 138 |
- college_chemistry: 0.5745 (27/47)
|
| 139 |
+
- abstract_algebra: 0.7234 (34/47)
|
| 140 |
+
- business_ethics: 0.7826 (36/46)
|
| 141 |
+
- college_computer_science: 0.9111 (41/45)
|
| 142 |
+
- computer_security: 0.8140 (35/43)
|
| 143 |
|
| 144 |
|
| 145 |
<span style="color:darkgreen">Heretic:</span>
|
|
|
|
| 148 |
|
| 149 |
- Total questions: 7021
|
| 150 |
|
| 151 |
+
- Correct: 5930
|
| 152 |
|
| 153 |
+
- **Accuracy: 0.8446 (84.46%)**
|
| 154 |
|
| 155 |
+
- Parse failures: 26
|
| 156 |
|
| 157 |
============================================================
|
| 158 |
|
| 159 |
**Tested subject scores:**
|
| 160 |
+
- professional_law: 0.7210 (566/785)
|
| 161 |
+
- moral_scenarios: 0.7398 (327/442)
|
| 162 |
+
- miscellaneous: 0.9164 (351/383)
|
| 163 |
+
- professional_psychology: 0.8766 (277/316)
|
| 164 |
+
- high_school_psychology: 0.9593 (259/270)
|
| 165 |
+
- high_school_macroeconomics: 0.9289 (183/197)
|
| 166 |
+
- elementary_mathematics: 0.9457 (174/184)
|
| 167 |
+
- moral_disputes: 0.8448 (147/174)
|
| 168 |
+
- prehistory: 0.9186 (158/172)
|
| 169 |
+
- philosophy: 0.8113 (129/159)
|
| 170 |
- high_school_biology: 0.9539 (145/152)
|
| 171 |
+
- professional_accounting: 0.7902 (113/143)
|
| 172 |
+
- clinical_knowledge: 0.9071 (127/140)
|
| 173 |
+
- high_school_microeconomics: 0.9559 (130/136)
|
| 174 |
+
- nutrition: 0.8741 (118/135)
|
| 175 |
+
- professional_medicine: 0.8881 (119/134)
|
| 176 |
- conceptual_physics: 0.8984 (115/128)
|
| 177 |
+
- high_school_mathematics: 0.6220 (79/127)
|
| 178 |
+
- human_aging: 0.8362 (97/116)
|
| 179 |
+
- security_studies: 0.8304 (93/112)
|
| 180 |
+
- high_school_statistics: 0.8468 (94/111)
|
| 181 |
+
- marketing: 0.9633 (105/109)
|
| 182 |
+
- high_school_world_history: 0.9623 (102/106)
|
| 183 |
+
- sociology: 0.9223 (95/103)
|
| 184 |
+
- high_school_government_and_politics: 0.9802 (99/101)
|
| 185 |
+
- high_school_geography: 0.9394 (93/99)
|
| 186 |
+
- high_school_chemistry: 0.7732 (75/97)
|
| 187 |
+
- high_school_us_history: 0.9158 (87/95)
|
| 188 |
- virology: 0.5056 (45/89)
|
| 189 |
+
- college_medicine: 0.8409 (74/88)
|
| 190 |
+
- world_religions: 0.9205 (81/88)
|
| 191 |
+
- high_school_physics: 0.7619 (64/84)
|
| 192 |
+
- electrical_engineering: 0.8025 (65/81)
|
| 193 |
- astronomy: 0.9494 (75/79)
|
| 194 |
+
- logical_fallacies: 0.8816 (67/76)
|
| 195 |
- high_school_european_history: 0.8767 (64/73)
|
| 196 |
+
- anatomy: 0.8592 (61/71)
|
| 197 |
- college_biology: 0.9688 (62/64)
|
| 198 |
+
- human_sexuality: 0.8594 (55/64)
|
| 199 |
+
- formal_logic: 0.7812 (50/64)
|
| 200 |
- public_relations: 0.7541 (46/61)
|
| 201 |
- international_law: 0.9167 (55/60)
|
| 202 |
- college_physics: 0.7018 (40/57)
|
| 203 |
+
- college_mathematics: 0.8000 (44/55)
|
| 204 |
- econometrics: 0.7778 (42/54)
|
| 205 |
+
- jurisprudence: 0.8302 (44/53)
|
| 206 |
- high_school_computer_science: 0.9808 (51/52)
|
| 207 |
+
- machine_learning: 0.7500 (39/52)
|
| 208 |
+
- medical_genetics: 0.9020 (46/51)
|
| 209 |
+
- global_facts: 0.6275 (32/51)
|
| 210 |
+
- management: 0.8800 (44/50)
|
| 211 |
+
- us_foreign_policy: 0.9400 (47/50)
|
| 212 |
+
- college_chemistry: 0.5957 (28/47)
|
| 213 |
+
- abstract_algebra: 0.7872 (37/47)
|
| 214 |
- business_ethics: 0.8478 (39/46)
|
| 215 |
+
- college_computer_science: 0.8667 (39/45)
|
| 216 |
+
- computer_security: 0.8605 (37/43)
|
| 217 |
|
| 218 |
MMLU - Massive Multitask Language Understanding, multiple-choice questions across 57 subjects (math, history, law, medicine, etc.).
|
| 219 |
|
| 220 |
## GGUF Version
|
| 221 |
|
| 222 |
+
GGUF quantizations available here [llmfan46/gemma-4-31B-it-qat-q4_0-uncensored-heretic-GGUF](https://huggingface.co/llmfan46/gemma-4-31B-it-qat-q4_0-uncensored-heretic-GGUF).
|
| 223 |
|
| 224 |
-----
|
| 225 |
|