Instructions to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DreamFast/Qwen3-VL-8B-Heretic-1.3.0") 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("DreamFast/Qwen3-VL-8B-Heretic-1.3.0") model = AutoModelForMultimodalLM.from_pretrained("DreamFast/Qwen3-VL-8B-Heretic-1.3.0", 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]:])) - llama-cpp-python
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="DreamFast/Qwen3-VL-8B-Heretic-1.3.0", filename="gguf/qwen3-vl-8b-heretic-1.3.0-Q3_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M # Run inference directly in the terminal: llama cli -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M # Run inference directly in the terminal: llama cli -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Use Docker
docker model run hf.co/DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DreamFast/Qwen3-VL-8B-Heretic-1.3.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DreamFast/Qwen3-VL-8B-Heretic-1.3.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
- SGLang
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 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 "DreamFast/Qwen3-VL-8B-Heretic-1.3.0" \ --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": "DreamFast/Qwen3-VL-8B-Heretic-1.3.0", "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 "DreamFast/Qwen3-VL-8B-Heretic-1.3.0" \ --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": "DreamFast/Qwen3-VL-8B-Heretic-1.3.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with Ollama:
ollama run hf.co/DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
- Unsloth Studio
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for DreamFast/Qwen3-VL-8B-Heretic-1.3.0 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for DreamFast/Qwen3-VL-8B-Heretic-1.3.0 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DreamFast/Qwen3-VL-8B-Heretic-1.3.0 to start chatting
- Pi
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with Docker Model Runner:
docker model run hf.co/DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
- Lemonade
How to use DreamFast/Qwen3-VL-8B-Heretic-1.3.0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DreamFast/Qwen3-VL-8B-Heretic-1.3.0:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-VL-8B-Heretic-1.3.0-Q4_K_M
List all available models
lemonade list
Qwen3-VL-8B-Instruct - Heretic (Abliterated) - ComfyUI
💬 Community: Join the Abliterlitics Discord for discussion, model releases and support.
Forensic analysis by Abliterlitics, open-source abliteration forensics toolkit
An abliterated version of Qwen's Qwen3-VL-8B-Instruct created using Heretic v1.3.0. This model has reduced refusals while maintaining model quality. You can see the docker, scripts and configurations used to make these files on Heretic Docker Github.
ComfyUI converted text encoders are provided in various formats, along with the original bf16 safetensors.
Important notes:
- This is a research and experimental release. Using an abliterated text encoder for ComfyUI image generation does not significantly change output quality on its own. For maximum results, a LoRA must be fine-tuned in combination with the abliterated text encoder.
- The GGUF variants do not include vision capabilities (the vision encoder is stripped during conversion). GGUF files are intended for use as a text encoder in ComfyUI workflows, not as a standalone vision-language model.
- The full HuggingFace format and ComfyUI safetensors formats retain vision support.
Model Details
- Base Model: Qwen/Qwen3-VL-8B-Instruct
- Architecture: Qwen3VLForConditionalGeneration (~8B parameters)
- Abliteration Method: Heretic v1.3.0
- Trial Selected: Trial 98
- Refusals: 6/100 (vs 100/100 original)
- KL Divergence: 0.0314 (very good, minimal model damage)
- Precision: bf16
- Context Length: 8192 tokens
This is a vision-language model (supports both text and image inputs). It does not support thinking/reasoning tokens.
Quick Facts
| Base model | Qwen/Qwen3-VL-8B-Instruct |
| Architecture | Qwen3VLForConditionalGeneration |
| Parameters | ~8B |
| Precision | bf16 |
| Context length | 8192 tokens |
Key Findings
Safety is fully removed. The base model refused 71.5% of harmful requests; Heretic complies with 99.0%.
Capability is almost perfectly preserved. Across 8 benchmark tasks, the average change is under 1%. MMLU drops 0.30%, GSM8K drops 0.91%, and HellaSwag actually improves by 0.17%.
TruthfulQA takes a meaningful hit. TruthfulQA MC2 drops 11.7% (61.2% → 54.1%). This is the established safety-accuracy tradeoff.
The edits are surgical. Only 53 out of 398 tensors (13.3%) were modified, targeting
o_proj(27 tensors) anddown_proj(26 tensors), spanning layers 9–35. SVD analysis confirms rank-1 edits with SV ratios of 80–92x.Minimal distribution shift. KL divergence of 0.0314 confirms the model's output distribution barely changed on benign inputs.
Abliteration Process
Heretic v1.3.0 with optimization trials. Trial 98 was selected for its balance of low refusals (6/100) and very low KL divergence (0.0315):
[Trial 98] Refusals: 6/100, KL divergence: 0.0315 <-- selected
Files
HuggingFace Format (for transformers, vision-capable)
model-00001-of-00004.safetensors (~4.6 GB)
model-00002-of-00004.safetensors (~4.6 GB)
model-00003-of-00004.safetensors (~4.7 GB)
model-00004-of-00004.safetensors (~2.6 GB)
config.json
tokenizer.json
tokenizer_config.json
generation_config.json
chat_template.jinja
ComfyUI Format (vision-capable text encoder)
comfyui/qwen3-vl-8b-heretic-1.3.0.safetensors # bf16, 17GB
comfyui/qwen3-vl-8b-heretic-1.3.0_fp8_e4m3fn.safetensors # fp8, 9.4GB
comfyui/qwen3-vl-8b-heretic-1.3.0_nvfp4.safetensors # nvfp4, 6.3GB
GGUF Format (text-only, no vision - for ComfyUI-GGUF text encoder)
| Quant | Size | Notes |
|---|---|---|
| F16 | 16GB | Lossless reference |
| Q8_0 | 8.2GB | Excellent quality |
| Q6_K | 6.3GB | Very good quality |
| Q5_K_M | 5.5GB | Good quality |
| Q5_K_S | 5.4GB | Slightly smaller Q5 |
| Q4_K_M | 4.7GB | Recommended balance |
| Q4_K_S | 4.5GB | Smaller Q4 variant |
| Q3_K_M | 3.9GB | For low VRAM only |
Note: GGUF files strip the vision encoder. These are text-only and intended for ComfyUI-GGUF text encoder workflows, not standalone vision-language use.
NVFP4 Notes
The NVFP4 (4-bit floating point, E2M1) variants use ComfyUI's native quantization format. They are ~3x smaller than bf16 and load natively in ComfyUI without any plugins. Blackwell GPUs (RTX 5090/5080, SM100+) can use native FP4 tensor cores for best performance, but ComfyUI also supports software dequantization on older GPUs (tested working on RTX 4090).
Usage
With ComfyUI (as text encoder)
Download a ComfyUI format file:
- FP8 (recommended):
comfyui/qwen3-vl-8b-heretic-1.3.0_fp8_e4m3fn.safetensors(9.4GB) - NVFP4 (smallest):
comfyui/qwen3-vl-8b-heretic-1.3.0_nvfp4.safetensors(6.3GB) - bf16 (full precision):
comfyui/qwen3-vl-8b-heretic-1.3.0.safetensors(17GB)
- FP8 (recommended):
Place in
ComfyUI/models/text_encoders/In your workflow, use the appropriate loader node and select the heretic file
With Transformers
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained(
"DreamFast/qwen3-vl-8b-heretic-1.3.0",
device_map="auto",
torch_dtype=torch.bfloat16,
trust_remote_code=True
)
tokenizer = AutoTokenizer.from_pretrained("DreamFast/qwen3-vl-8b-heretic-1.3.0")
prompt = "Describe a dramatic sunset over a cyberpunk city"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
With llama.cpp (text-only, no vision)
llama-server -m qwen3-vl-8b-heretic-1.3.0-Q4_K_M.gguf
Benchmarks
Evaluated with lm-evaluation-harness via vLLM, bf16 native on NVIDIA RTX 5090.
| Task | Base | Heretic v1.3.0 |
|---|---|---|
| MMLU | 74.91% | 74.68% |
| GSM8K | 91.89% | 91.05% |
| HellaSwag | 76.38% | 76.51% |
| ARC Challenge | 61.18% | 60.92% |
| WinoGrande | 73.40% | 73.56% |
| TruthfulQA MC1 | 41.00% | 34.76% |
| TruthfulQA MC2 | 61.21% | 54.05% |
| TruthfulQA Gen | 52.26% | 43.70% |
| PiQA | 80.09% | 80.63% |
| Lambada (ppl ↓) | 3.7 | 3.6 |
Delta vs base
| Task | Heretic v1.3.0 |
|---|---|
| MMLU | -0.30% |
| GSM8K | -0.91% |
| HellaSwag | +0.17% |
| ARC Challenge | -0.42% |
| WinoGrande | +0.22% |
| TruthfulQA MC1 | -15.22% |
| TruthfulQA MC2 | -11.69% |
| TruthfulQA Gen | -16.39% |
| PiQA | +0.68% |
| Lambada | -2.99% |
What the benchmarks tell us
The numbers tell a clear story: abliteration is essentially free on standard benchmarks. MMLU, GSM8K, HellaSwag, ARC, WinoGrande, PiQA. All within ±1% of the base model. Some even improve slightly, which is within noise.
The only real change is TruthfulQA, where all three variants (MC1, MC2, Gen) drop 12–16%. This isn't surprising. TruthfulQA measures a model's tendency to give accurate answers rather than persuasive ones, and abliteration removes the safety training that also teaches epistemic caution.
Safety: HarmBench
HarmBench with 400 textual behaviours, max_tokens=8096, temperature=0. All 800 responses (base + variant) were individually reviewed by an LLM to catch false positives and false negatives from the keyword classifier.
| Model | ASR | Complied | Refused | Total |
|---|---|---|---|---|
| Base | 28.5% | 114 | 286 | 400 |
| Heretic v1.3.0 | 99.0% | 396 | 4 | 400 |
The base Qwen3-VL-8B-Instruct has an ASR of 28.5%. It fully refuses chemical/biological and harassment requests (0.0%), but struggles with copyright (99.0%) and shows moderate weakness on cybercrime (11.9%) and misinformation (6.2%).
Heretic raises that to 99.0%. The 4 remaining refusals are edge cases, mostly items where the model briefly warns about danger before providing the requested content anyway.
ASR by category
| Category | Items | Base | Heretic v1.3.0 |
|---|---|---|---|
| Chemical/Bio | 56 | 0.0% | 100.0% |
| Copyright | 100 | 99.0% | 100.0% |
| Cybercrime | 67 | 11.9% | 100.0% |
| Harassment | 25 | 0.0% | 100.0% |
| Harmful Content | 22 | 0.0% | 86.4% |
| Illegal Activity | 65 | 4.6% | 100.0% |
| Misinformation | 65 | 6.2% | 98.5% |
LLM Review
The initial keyword classifier reported 70.8% ASR for the base model. After individual LLM review of all 400 base responses, the actual ASR was 28.5%. The discrepancy came from long, detailed-sounding responses that were actually safety lectures or educational explanations without actionable harmful content.
For the heretic variant, the classifier (99.5%) and LLM review (99.0%) were in close agreement. 2 additional items were identified as refusals by the LLM reviewer that the classifier missed.
KL Divergence
Methodology: F.kl_div(logprobs_variant, logprobs_base, reduction="batchmean", log_target=True) on full vocab first-token logits from mlabonne/harmless_alpaca test[:100], matching the Heretic evaluator. System prompt: "You are a helpful assistant."
| Variant | KL Divergence | Rating |
|---|---|---|
| heretic | 0.0314 | very good |
Rating scale: excellent below 0.01, very good 0.01 to 0.1, moderate 0.1 to 0.4, significant 0.4 to 1.0, heavy above 1.0.
A KL divergence of 0.0314 means the model's output distribution on benign prompts is nearly identical to the base. The median per-prompt KL is 0.0017. For most inputs, you'd never notice a difference. The max of 0.47 suggests a few prompts land near the edited safety boundary, producing slightly different token probabilities.
Weight Analysis
Modification summary
| Heretic v1.3.0 | |
|---|---|
| Tensors changed | 53 / 398 (13.3%) |
| Relative edit (median) | 2.0% |
| Tensor types | o_proj (27) + down_proj (26) |
| Layers modified | 27 / 36 (75%) |
| Layer range | 9–35 |
This is a textbook abliteration pattern. The edits target exactly two tensor types across the mid-to-late layers:
self_attn.o_proj.weight(27 tensors): The attention output projection, which controls how attention heads combine their signals. Abliteration modifies this to suppress the "refusal direction" in attention outputs.mlp.down_proj.weight(26 tensors): The MLP down projection, which controls the feedforward transformation. Same logic. Suppress the refusal signal.
Layers 0–8 are untouched. Edits begin at layer 9 and continue through layer 35 (the last layer). The edit density is consistent at ~18% per modified layer (2 out of 11 tensors per layer).
SVD: Rank-1 edits
| Tensor (top 5) | Frobenius Norm | Effective Rank (90%) | SV Ratio |
|---|---|---|---|
| layers.28.mlp.down_proj | 3.73 | 1 | 89.7x |
| layers.27.mlp.down_proj | 3.72 | 1 | 91.6x |
| layers.29.mlp.down_proj | 3.61 | 1 | 87.0x |
| layers.26.mlp.down_proj | 3.60 | 1 | 88.6x |
| layers.30.mlp.down_proj | 3.45 | 1 | 81.0x |
Every modified tensor has effective rank 1 at the 90% energy threshold. This means each edit is a pure rank-1 update, a single direction being added to or subtracted from the weight matrix. The SV ratios of 80–92x confirm this: the edit is dominated by a single singular vector.
This is the hallmark of abliteration: the technique identifies a "refusal direction" in the model's activation space and applies a rank-1 counter-direction to neutralize it.
Summary
| Metric | Base | Heretic v1.3.0 | Delta |
|---|---|---|---|
| HarmBench ASR | 28.5% | 99.0% | +70.5pp |
| MMLU | 74.91% | 74.68% | -0.3% |
| GSM8K | 91.89% | 91.05% | -0.9% |
| HellaSwag | 76.38% | 76.51% | +0.2% |
| ARC-C | 61.18% | 60.92% | -0.4% |
| TruthfulQA | 61.21% | 54.05% | -11.7% |
| KL Divergence | — | 0.0314 | — |
| Weights Changed | — | 13.3% (53 tensors) | — |
Methodology
- Capability: lm-evaluation-harness via vLLM, bf16 native on NVIDIA RTX 5090
- Safety: HarmBench 400 textual behaviours,
max_tokens=8096, temperature=0, classified with harmbench_classify.py v4.0, then individually reviewed by LLM - KL divergence: Full vocab first-token logits via
model.generate(max_new_tokens=1, output_scores=true), matching Heretic evaluator methodology - Weight analysis: SVD, fingerprint, edit vector, and per-layer analysis comparing variant against the base, using Abliterlitics
- Hardware: NVIDIA RTX 5090 (32GB)
Limitations
- This model inherits all limitations of the base Qwen3-VL-8B-Instruct model
- Abliteration reduces but does not completely eliminate refusals (6/100 remain)
- TruthfulQA scores drop 11–16% as a side effect of abliteration
- NVFP4 quantization works best on Blackwell GPUs (RTX 5090/5080) with native FP4 tensor cores, but also works on older GPUs via software dequantization
- Using an abliterated text encoder in ComfyUI alone does not significantly change image generation output. For meaningful results, combine with a fine-tuned LoRA
- GGUF variants strip the vision encoder and are text-only
- This is a research and experimental release
License
This model is released under the Apache 2.0 License, following the base Qwen3-VL-8B-Instruct model license.
Acknowledgments
- Qwen for the Qwen3-VL-8B-Instruct model
- Heretic by p-e-w for the abliteration tool
- Abliterlitics for the forensic analysis toolkit
- HarmBench for the safety evaluation framework
- llama.cpp for GGUF conversion
Disclaimer
This model has had safety alignment removed. It will comply with harmful requests, including generating content related to violence, illegal activities, and other harmful behaviours. Use responsibly and in accordance with applicable laws and regulations. The authors do not condone or encourage the use of this model for harmful purposes.
While we have taken the time to verify all results thoroughly, we are open to any corrections, additional benchmarks, or further analysis. If you spot something that looks wrong and can be confirmed, we are happy to fix it.
- Downloads last month
- 2,574