Datasets:

Modalities:
Text
Formats:
json
ArXiv:
License:

Improve dataset card: add paper link, code link, and task category

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +20 -1
README.md CHANGED
@@ -1,5 +1,9 @@
1
  ---
2
  license: mit
 
 
 
 
3
  configs:
4
  - config_name: default
5
  data_files:
@@ -7,4 +11,19 @@ configs:
7
  path: OmanicSynth.jsonl
8
  - split: OmanicBench
9
  path: OmanicBench.jsonl
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - question-answering
5
+ language:
6
+ - en
7
  configs:
8
  - config_name: default
9
  data_files:
 
11
  path: OmanicSynth.jsonl
12
  - split: OmanicBench
13
  path: OmanicBench.jsonl
14
+ ---
15
+
16
+ # Omanic
17
+
18
+ Omanic is an open-domain multi-hop question-answering (QA) resource designed for the step-wise evaluation of reasoning in Large Language Models (LLMs). It provides decomposed sub-questions and intermediate answers as structural annotations to help diagnose where reasoning failures occur.
19
+
20
+ - **Paper:** [Omanic: Towards Step-wise Evaluation of Multi-hop Reasoning in Large Language Models](https://huggingface.co/papers/2603.16654)
21
+ - **Repository:** [https://github.com/XiaojieGu/Omanic](https://github.com/XiaojieGu/Omanic)
22
+
23
+ ### Dataset Summary
24
+
25
+ The dataset consists of two main components:
26
+ - **OmanicSynth**: A training set containing 10,296 machine-generated examples with structural reasoning chains, intended for supervised fine-tuning.
27
+ - **OmanicBench**: A high-quality evaluation benchmark containing 967 expert-reviewed, human-annotated examples for systematic assessment of multi-hop reasoning.
28
+
29
+ By providing intermediate steps rather than just final answers, Omanic allows researchers to analyze factual completeness and error propagation in the reasoning process of LLMs.