Datasets:

Modalities:
Text
Formats:
csv
Size:
< 1K
License:
Files changed (1) hide show
  1. README.md +83 -1
README.md CHANGED
@@ -9,4 +9,86 @@ tags:
9
  - medical
10
  size_categories:
11
  - n<1K
12
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  - medical
10
  size_categories:
11
  - n<1K
12
+ ---
13
+
14
+ # RadNLP 2024 main task: Document Classification for Lung Cancer Staging
15
+
16
+ <p align="center">
17
+ <a href="https://sociocom.naist.jp/radnlp-2024/">
18
+ <img src="https://sociocom.naist.jp/radnlp-2024/wp-content/uploads/sites/11/2024/06/radnlp_2024_top_img_small.png" alt="RadNLP 2024 logo" width="350"/>
19
+ </a>
20
+ </p>
21
+ <p align="center">
22
+ <a href="https://research.nii.ac.jp/ntcir/workshop/OnlineProceedings18/pdf/ntcir/01-NTCIR18-OV-RADNLP-NakamuraY.pdf">📜 Paper</a>
23
+ </p>
24
+
25
+ <p align="center">
26
+ English |
27
+ <!--<a href="https://huggingface.co/datasets/yutanakamura-tky/RadNLP2024_main_task/blob/main/README_JA.md">日本語</a>-->
28
+ </p>
29
+
30
+ ## 📚 Introduction
31
+
32
+ **RadNLP 2024 main task** is a shared task in the international conference NTCIR-18, organized by the National Institute of Informatics in Japan.
33
+
34
+ Management of lung cancer is based on the stage, and radiology reports provide various related information by describing medical images such as CT and MRI.
35
+
36
+ However, radiology reports do not always specify the stage explicitly¹. This imposes extra workload on human experts for careful manual information extraction, which can be aided by automation.
37
+
38
+ <img src="https://sociocom.naist.jp/radnlp-2024/wp-content/uploads/sites/11/2024/06/radnlp_2024_overview_en_96dpi.png" alt="RadNLP objective" width="350"/>
39
+
40
+ Main task is a multi-label document classification to correctly determine T, N, and M categories for each radiology report.
41
+
42
+ - T category - Assessment of the size and/or extension of the primary lesion. Available choices: T0, Tis, T1mi, T1a, T1b, T1c, T2a, T2b, T3, T4
43
+ - N category - Assessment of the extent of lymph node metastasis. Available choices: N0, N1, N2, N3
44
+ - M category - Assessment of the extent of distant metastasis. Available choices: M0, M1a, M1b, M1c
45
+
46
+ In RadNLP 2024, we follow the staging criteria by the Japan Lung Cancer Society (JLCS). Note that the JLCS criteria closely aligns the global standard, namely the 8th edition of the TNM Classification of Malignant Tumours by the Union for International Cancer Control (UICC).
47
+
48
+ All radiology reports in RadNLP 2024 diagnose lung cancer at the initial evaluation. There are no reports of lung cancer post-treatment evaluation or different cancer.
49
+
50
+ Our datasets contain **NO personal health information**. The radiology reports are not derived from real medical institutions but are created with crowdsourcing by diagnosing de-identified images on Radiopaedia. Task participants requires no complex applications to use our datasets.
51
+
52
+ ## 📊 Dataset Size & Format
53
+
54
+ This repository contains 6 files:
55
+
56
+ | Language | Split | Number of radiology reports |
57
+ |--------|------|-------------|-------------|
58
+ | English | Training | 108
59
+ | English | Validation | 54
60
+ | English | Test | 81
61
+ | English | Total | 243
62
+ | Japanese | Training | 108
63
+ | Japanese | Validation | 54
64
+ | Japanese | Test | 216
65
+ | Japanese | Total | 378
66
+
67
+ Each file contains 5 columns:
68
+
69
+ | Column | Type | Description |
70
+ |--------|------|-------------|
71
+ | `id` | int | Unique identifier |
72
+ | `text` | string | Radiology Report |
73
+ | `t` | string | Gold standard for the T category |
74
+ | `n` | string | Gold standard for the N category |
75
+ | `m` | string | Gold standard for the M category |
76
+
77
+
78
+ ## 📖 Citation
79
+
80
+ If you find our work useful, please consider citing:
81
+
82
+ ```bibtex
83
+ @inproceedings{radnlp2024,
84
+ title={NTCIR-18 RadNLP 2024 Overview: Dataset and Solutions for Automated Lung Cancer Staging},
85
+ author={Nakamura, Yuta and Fujimoto, Koji and Kluckert, Jonas and Krauthammer, Michael and Kanzawa, Jun and Katayama, Akira and Kikuchi, Tomohiro and Kurokawa, Ryo and Gonoi, Wataru and Tashiro, Yuki and Hanaoka, Shouhei and Yada, Shuntaro and Aramaki, Eiji},
86
+ year={2024},
87
+ booktitle={NTCIR-18: Proceedings of the 18th NTCIR Conference on Evaluation ofInformation Access Technologies},
88
+ doi={10.20736/0002002061}
89
+ }
90
+ ```
91
+
92
+ ## 📜 License
93
+
94
+ This project is licensed under the CC-BY-4.0 license.