Text Generation
Transformers
Safetensors
PEFT
qwen3
adele
judge
conversational
text-generation-inference
Instructions to use adgomant/adele-judge-qwen3-14B-cre with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use adgomant/adele-judge-qwen3-14B-cre with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="adgomant/adele-judge-qwen3-14B-cre") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("adgomant/adele-judge-qwen3-14B-cre") model = AutoModelForCausalLM.from_pretrained("adgomant/adele-judge-qwen3-14B-cre", 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]:])) - PEFT
How to use adgomant/adele-judge-qwen3-14B-cre with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use adgomant/adele-judge-qwen3-14B-cre with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "adgomant/adele-judge-qwen3-14B-cre" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "adgomant/adele-judge-qwen3-14B-cre", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/adgomant/adele-judge-qwen3-14B-cre
- SGLang
How to use adgomant/adele-judge-qwen3-14B-cre 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 "adgomant/adele-judge-qwen3-14B-cre" \ --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": "adgomant/adele-judge-qwen3-14B-cre", "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 "adgomant/adele-judge-qwen3-14B-cre" \ --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": "adgomant/adele-judge-qwen3-14B-cre", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use adgomant/adele-judge-qwen3-14B-cre with Docker Model Runner:
docker model run hf.co/adgomant/adele-judge-qwen3-14B-cre
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,17 +6,19 @@ tags:
|
|
| 6 |
- adele
|
| 7 |
- judge
|
| 8 |
base_model: Qwen/Qwen3-14B
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# ADeLe Distilled Judge
|
| 12 |
|
| 13 |
-
This repository contains an ADeLe-suite-specific distilled judge. It scores a model response against a question and reference answer with an ordinal score from 1 to 5.
|
| 14 |
|
| 15 |
The repository root contains a merged Transformers model for standard loading. The original LoRA adapter is also included under `adapter/` for provenance and reuse.
|
| 16 |
|
| 17 |
## Intended Use
|
| 18 |
|
| 19 |
-
Use this model to score ADeLe-style examples where a question, reference answer, and model response are available. It is not a general-purpose evaluator.
|
| 20 |
|
| 21 |
## Input Format
|
| 22 |
|
|
@@ -38,6 +40,45 @@ Allowed scores: 1, 2, 3, 4, 5
|
|
| 38 |
|
| 39 |
Binary label: scores greater than or equal to 3 are `CORRECT`; lower scores are `INCORRECT`.
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
## Recommended Inference
|
| 42 |
|
| 43 |
Do not use free-form generation as the primary prediction method. The recommended path scores the restricted continuations `"1"`, `"2"`, `"3"`, `"4"`, and `"5"`.
|
|
@@ -91,11 +132,20 @@ model = AutoModelForCausalLM.from_pretrained("adgomant/adele-judge-qwen3-14-cre"
|
|
| 91 |
|
| 92 |
Training, filtering, split, tokenization, and metric artifacts available at packaging time are stored in `adele_judge_metadata.json`.
|
| 93 |
|
| 94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
|
| 96 |
## Limitations
|
| 97 |
|
| 98 |
- ADeLe-specific judge; not a general-purpose evaluator.
|
| 99 |
-
- Distilled from judge labels and inherits their noise and biases.
|
| 100 |
- Intended for scoring responses against a reference answer.
|
| 101 |
- It should not produce explanations; the expected output is a single score.
|
|
|
|
|
|
| 6 |
- adele
|
| 7 |
- judge
|
| 8 |
base_model: Qwen/Qwen3-14B
|
| 9 |
+
datasets:
|
| 10 |
+
- CFI-Kinds-of-Intelligence/ADeLe_battery_v1dot0
|
| 11 |
---
|
| 12 |
|
| 13 |
# ADeLe Distilled Judge
|
| 14 |
|
| 15 |
+
This repository contains an ADeLe-suite-specific distilled judge. It scores a model response against a question and reference answer with an ordinal score from 1 to 5, then derives binary correctness with the ADeLe threshold.
|
| 16 |
|
| 17 |
The repository root contains a merged Transformers model for standard loading. The original LoRA adapter is also included under `adapter/` for provenance and reuse.
|
| 18 |
|
| 19 |
## Intended Use
|
| 20 |
|
| 21 |
+
Use this model to score ADeLe-style examples where a question, reference answer, and model response are available. It is intended for out-of-model evaluation within the ADeLe benchmark suite, not as a general-purpose evaluator.
|
| 22 |
|
| 23 |
## Input Format
|
| 24 |
|
|
|
|
| 40 |
|
| 41 |
Binary label: scores greater than or equal to 3 are `CORRECT`; lower scores are `INCORRECT`.
|
| 42 |
|
| 43 |
+
## Training And Validation Data
|
| 44 |
+
|
| 45 |
+
| Split | Examples | Models |
|
| 46 |
+
| --- | --- | --- |
|
| 47 |
+
| train | 239,420 | 16 |
|
| 48 |
+
| validation | 45,738 | 3 |
|
| 49 |
+
|
| 50 |
+
- `train` models: `DK-R1-Dist-Qwen-1.5B`, `DK-R1-Dist-Qwen-32B`, `DK-R1-Dist-Qwen-7B`, `gemini-2.5-flash`, `gemini-3.1-pro`, `gpt-35-turbo`, `gpt-5.2`, `gpt4o`, `llama3d1-405b`, `llama3d2-11b`, `llama3d2-1b`, `llama3d2-90b`, `llama4-17B-128E`, `o1-mini`, `o1_re=low`, `o3-mini`
|
| 51 |
+
- `validation` models: `DK-R1-Dist-Qwen-14B`, `gemini-3-flash`, `llama3d2-3b`
|
| 52 |
+
|
| 53 |
+
## Data Quality And Label Construction
|
| 54 |
+
|
| 55 |
+
Training labels are distilled from two proprietary judge scores used by the ADeLe evaluation pipeline to derive the official correctness signal. The configured source columns are `score_gpt4o` and `score_sonnet`.
|
| 56 |
+
|
| 57 |
+
- Ordinal target: `floor(mean(score_gpt4o, score_sonnet))`.
|
| 58 |
+
- Binary target: `CORRECT` when the ordinal target is >= `3`.
|
| 59 |
+
- Judge-agreement filter: keep examples with `abs(score_gpt4o - score_sonnet) <= 1`.
|
| 60 |
+
- Response-length filter: keep responses with at most `4096` base-tokenizer tokens before prompt formatting.
|
| 61 |
+
- Sequence-length filter: keep full chat-formatted examples within `max_seq_length=8192`.
|
| 62 |
+
|
| 63 |
+
## Validation Results
|
| 64 |
+
|
| 65 |
+
Source artifact: `validation_trainer_metrics.json`.
|
| 66 |
+
|
| 67 |
+
| Metric | Value |
|
| 68 |
+
| --- | --- |
|
| 69 |
+
| Epoch | 1.0000 |
|
| 70 |
+
| Binary accuracy | 0.9894 |
|
| 71 |
+
| Binary macro F1 | 0.9880 |
|
| 72 |
+
| Precision, CORRECT | 0.9932 |
|
| 73 |
+
| Recall, CORRECT | 0.9909 |
|
| 74 |
+
| Precision, INCORRECT | 0.9817 |
|
| 75 |
+
| Recall, INCORRECT | 0.9863 |
|
| 76 |
+
| False negative rate, CORRECT | 0.0091 |
|
| 77 |
+
| False positive rate, CORRECT | 0.0137 |
|
| 78 |
+
| Ordinal accuracy | 0.9639 |
|
| 79 |
+
| Ordinal macro F1 | 0.7351 |
|
| 80 |
+
| Mean confidence | 0.9604 |
|
| 81 |
+
|
| 82 |
## Recommended Inference
|
| 83 |
|
| 84 |
Do not use free-form generation as the primary prediction method. The recommended path scores the restricted continuations `"1"`, `"2"`, `"3"`, `"4"`, and `"5"`.
|
|
|
|
| 132 |
|
| 133 |
Training, filtering, split, tokenization, and metric artifacts available at packaging time are stored in `adele_judge_metadata.json`.
|
| 134 |
|
| 135 |
+
The model is trained on distilled judge targets. These targets are useful for reproducing the ADeLe paper-style correctness signal at lower inference cost, but they should not be interpreted as independent human annotations.
|
| 136 |
+
|
| 137 |
+
## References
|
| 138 |
+
|
| 139 |
+
- ADeLe project page: [ADeLe v1.0](https://kinds-of-intelligence-cfi.github.io/ADELE/).
|
| 140 |
+
- ADeLe paper and official correctness definition: [General scales unlock AI evaluation with explanatory and predictive power](https://www.nature.com/articles/s41586-026-10303-2).
|
| 141 |
+
- Official ADeLe dataset: [CFI-Kinds-of-Intelligence/ADeLe_battery_v1dot0](https://huggingface.co/datasets/CFI-Kinds-of-Intelligence/ADeLe_battery_v1dot0).
|
| 142 |
+
- Official instance-level model-response data used for distillation: [https://github.com/Kinds-of-Intelligence-CFI/ADeLe-AIEvaluation/tree/main/ADeLe_battery_data/subject_specific_instance_level_data](https://github.com/Kinds-of-Intelligence-CFI/ADeLe-AIEvaluation/tree/main/ADeLe_battery_data/subject_specific_instance_level_data).
|
| 143 |
+
- Training and Hub packaging implementation: [https://github.com/adgomant/adele-judge](https://github.com/adgomant/adele-judge).
|
| 144 |
|
| 145 |
## Limitations
|
| 146 |
|
| 147 |
- ADeLe-specific judge; not a general-purpose evaluator.
|
| 148 |
+
- Distilled from proprietary judge labels and inherits their noise, calibration, and biases.
|
| 149 |
- Intended for scoring responses against a reference answer.
|
| 150 |
- It should not produce explanations; the expected output is a single score.
|
| 151 |
+
- Validation is out-of-model within the ADeLe suite, so transfer outside that suite should be measured before relying on it.
|