michaelsyao commited on
Commit
d9b5f65
1 Parent(s): 9e15e58

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -3
README.md CHANGED
@@ -1,3 +1,48 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - feature-extraction
5
+ - question-answering
6
+ - zero-shot-classification
7
+ language:
8
+ - en
9
+ tags:
10
+ - medical
11
+ pretty_name: ACR Appropriateness Criteria
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # Dataset Card for the ACR Appropriateness Criteria Corpus
17
+
18
+ This dataset contains chunked guidelines and narratives from the [ACR Appropriateness Criteria](https://acsearch.acr.org/list), an set of societal guidelines from the American College of Radiology (ACR) to help clinicians order appropriate diagnostic imaging studies for patients. The corpus is formatted similarly to the corpuses introduced in [MedRAG](https://huggingface.co/datasets/MedRAG/wikipedia) by [Xiong et al. (2024)](https://doi.org/10.48550/arXiv.2402.13178), and can therefore be similarly used for medical Retrieval-Augmented Generation (RAG).
19
+
20
+ Please abide by the [ACR Terms and Conditions](https://www.acr.org/Clinical-Resources/ACR-Appropriateness-Criteria/Terms-and-Conditions) when using this dataset.
21
+
22
+ ## Dataset Structure
23
+
24
+ Each row of the dataset contains the following fields:
25
+
26
+ ```
27
+ {
28
+ "id": "A unique identifier for each chunk in the corpus",
29
+ "title": "The title of the main document from which the chunk was extracted",
30
+ "content": "The content of the chunk",
31
+ "contents": "The title and content concatenated together into a single field",
32
+ "ACRID": "The ACR topic identifier"
33
+ }
34
+ ```
35
+
36
+ Of note, the `contents` field for each row does not exceed a maximum of 2048 characters in our implementation.
37
+
38
+ ## Dataset Curation
39
+
40
+ This dataset was curated by scraping the ACR Appropriateness Criteria website, downloading all the relevant PDF narratives, and using [unstructured](https://unstructured.io/)'s open-source tooling to extract the content into chunks. The original source code used for the dataset curation can be found [here](https://github.com/michael-s-yao/radGPT/blob/main/scripts/build_acr_corpus.py). This dataset was constructed on July 17, 2024 - no updates to the ACR Appropriateness Criteria after this date are reflected in the most recent iteration.
41
+
42
+ ## Personal and Sensitive Information
43
+
44
+ The contents of this dataset consist of evidence-based guidelines written by a panel of experts for a medical audience. To our knowledge, no personal or sensitive information is contained in this dataset.
45
+
46
+ ## Dataset Card Contact
47
+
48
+ Please contact Michael Yao at [michael.yao@pennmedicine.upenn.edu](mailto:michael.yao@pennmedicine.upenn.edu) with any questions or comments.