Add paper and GitHub repository links to model card

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +18 -15
README.md CHANGED
@@ -1,20 +1,20 @@
1
  ---
2
- license: apache-2.0
3
  base_model: Qwen/Qwen3-VL-8B-Instruct
4
- pipeline_tag: image-text-to-text
 
 
 
 
5
  library_name: transformers
 
 
6
  tags:
7
- - multimodal
8
- - hallucination-detection
9
- - hallucination-classification
10
- - hallucination-diagnosis
11
- - mllm
12
- - qwen3-vl
13
- language:
14
- - en
15
- - zh
16
- datasets:
17
- - wkinglin/HalluScope-30K
18
  ---
19
 
20
  # HalluScope-8B
@@ -25,6 +25,8 @@ model-generated response, it detects hallucinated spans, classifies each into
25
  one of **12 fine-grained types**, and returns span-level annotations in a single
26
  pass. It is the larger, higher-accuracy variant of the HalluScope family.
27
 
 
 
28
  - **Base model:** Qwen3-VL-8B-Instruct
29
  - **Training data:** [HalluScope-30K](https://huggingface.co/datasets/wkinglin/HalluScope-30K)
30
  - **Task:** span-level hallucination detection + classification
@@ -65,7 +67,8 @@ messages = [{
65
  "role": "user",
66
  "content": [
67
  {"type": "image", "image": Image.open("example.jpg")},
68
- {"type": "text", "text": "Analyze the response and tag hallucinated spans:\n<response to diagnose>"},
 
69
  ],
70
  }]
71
  inputs = processor.apply_chat_template(
@@ -93,4 +96,4 @@ the OpenAI-compatible API.
93
  booktitle = {Proceedings of the 34th ACM International Conference on Multimedia (MM '26)},
94
  year = {2026}
95
  }
96
- ```
 
1
  ---
 
2
  base_model: Qwen/Qwen3-VL-8B-Instruct
3
+ datasets:
4
+ - wkinglin/HalluScope-30K
5
+ language:
6
+ - en
7
+ - zh
8
  library_name: transformers
9
+ license: apache-2.0
10
+ pipeline_tag: image-text-to-text
11
  tags:
12
+ - multimodal
13
+ - hallucination-detection
14
+ - hallucination-classification
15
+ - hallucination-diagnosis
16
+ - mllm
17
+ - qwen3-vl
 
 
 
 
 
18
  ---
19
 
20
  # HalluScope-8B
 
25
  one of **12 fine-grained types**, and returns span-level annotations in a single
26
  pass. It is the larger, higher-accuracy variant of the HalluScope family.
27
 
28
+ - **Paper:** [HalluScope: Fine-grained Hallucination Diagnosis for Multimodal Large Language Models](https://huggingface.co/papers/2607.21105)
29
+ - **Code:** [GitHub Repository](https://github.com/wkinglin/HalluScope)
30
  - **Base model:** Qwen3-VL-8B-Instruct
31
  - **Training data:** [HalluScope-30K](https://huggingface.co/datasets/wkinglin/HalluScope-30K)
32
  - **Task:** span-level hallucination detection + classification
 
67
  "role": "user",
68
  "content": [
69
  {"type": "image", "image": Image.open("example.jpg")},
70
+ {"type": "text", "text": "Analyze the response and tag hallucinated spans:
71
+ <response to diagnose>"},
72
  ],
73
  }]
74
  inputs = processor.apply_chat_template(
 
96
  booktitle = {Proceedings of the 34th ACM International Conference on Multimedia (MM '26)},
97
  year = {2026}
98
  }
99
+ ```