Add task category and improve dataset card

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +35 -10
README.md CHANGED
@@ -1,4 +1,10 @@
1
  ---
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: field
@@ -34,25 +40,44 @@ configs:
34
  path: data/agriculture-*
35
  - split: environment
36
  path: data/environment-*
37
- license: mit
38
- language:
39
- - en
40
  ---
41
 
42
  # Manalyzer: End-to-end Automated Meta-analysis with Multi-agent System
43
 
 
 
44
  ## Overview
45
 
46
- Meta-analysis is a systematic research methodology that synthesizes data from multiple existing studies to derive comprehensive conclusions. This approach not only mitigates limitations inherent in individual studies but also facilitates novel discoveries through integrated data analysis. Traditional meta-analysis involves a complex multi-stage pipeline including literature retrieval, paper screening, and data extraction, which demands substantial human effort and time. However, while LLM-based methods can accelerate certain stages, they still face significant challenges, such as hallucinations in paper screening and data extraction. In this paper, we propose a multi-agent system, Manalyzer, which achieves end-to-end automated meta-analysis through tool calls. The hybrid review, hierarchical extraction, self-proving, and feedback checking strategies implemented in Manalyzer significantly alleviate these two hallucinations. To comprehensively evaluate the performance of meta-analysis, we construct a new benchmark comprising 729 papers across 3 domains, encompassing text, image, and table modalities, with over 10,000 data points. Extensive experiments demonstrate that Manalyzer achieves significant performance improvements over the LLM baseline in multi meta-analysis tasks.
 
 
 
 
47
 
48
- ## Paper
 
 
 
49
 
50
- https://arxiv.org/pdf/2505.20310
51
 
52
- ## Project Page
 
 
 
 
 
 
53
 
54
- https://black-yt.github.io/meta-analysis-page/
55
 
56
- ## GitHub Code
57
 
58
- https://github.com/black-yt/Manalyzer
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ task_categories:
6
+ - image-text-to-text
7
+ arxiv: 2505.20310
8
  dataset_info:
9
  features:
10
  - name: field
 
40
  path: data/agriculture-*
41
  - split: environment
42
  path: data/environment-*
 
 
 
43
  ---
44
 
45
  # Manalyzer: End-to-end Automated Meta-analysis with Multi-agent System
46
 
47
+ [**Project Page**](https://black-yt.github.io/meta-analysis-page/) | [**Paper**](https://huggingface.co/papers/2505.20310) | [**GitHub**](https://github.com/black-yt/Manalyzer)
48
+
49
  ## Overview
50
 
51
+ Meta-analysis is a systematic research methodology that synthesizes data from multiple existing studies to derive comprehensive conclusions. Traditional meta-analysis involves a complex multi-stage pipeline including literature retrieval, paper screening, and data extraction, which demands substantial human effort and time.
52
+
53
+ **Manalyzer** is a multi-agent system that achieves end-to-end automated meta-analysis through tool calls. This repository contains the benchmark constructed to evaluate meta-analysis performance, comprising 729 papers across 3 domains (Atmosphere, Agriculture, and Environment), encompassing text, image, and table modalities, with over 10,000 data points.
54
+
55
+ ## Dataset Structure
56
 
57
+ The benchmark consists of 729 papers across 3 scientific domains:
58
+ - **Atmosphere**: 1,196 examples
59
+ - **Agriculture**: 4,336 examples
60
+ - **Environment**: 1,125 examples
61
 
62
+ ### Data Fields
63
 
64
+ Each example in the dataset contains:
65
+ - `field`: The scientific domain (Atmosphere, Agriculture, or Environment).
66
+ - `paper_idx`: Unique index of the source paper.
67
+ - `doi`: Digital Object Identifier of the source paper.
68
+ - `type`: Category of the data point.
69
+ - `table_or_image`: Visual modality (extracted image of a table or figure).
70
+ - `text_or_caption`: Associated text or caption providing context for the visual content.
71
 
72
+ ## Citation
73
 
74
+ If you find this dataset or the Manalyzer system useful in your research, please cite:
75
 
76
+ ```bibtex
77
+ @article{xu2025manalyzer,
78
+ title={Manalyzer: End-to-end Automated Meta-analysis with Multi-agent System},
79
+ author={Xu, Wanghan and Zhang, Wenlong and Ling, Fenghua and Fei, Ben and Hu, Yusong and Ren, Fangxuan and Lin, Jintai and Ouyang, Wanli and Bai, Lei},
80
+ journal={arXiv preprint arXiv:2505.20310},
81
+ year={2025}
82
+ }
83
+ ```