saidabizi commited on
Commit
5e1936e
·
verified ·
1 Parent(s): 63d23b5

Upload 32 files

Browse files
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ACI-BENCH
2
+
3
+ ## Introduction
4
+
5
+ This repository contains the data and source code for:
6
+
7
+ **Aci-bench: a Novel Ambient Clinical Intelligence Dataset for Benchmarking Automatic Visit Note Generation". Wen-wai Yim, Yujuan Fu, Asma Ben Abacha, Neal Snider, Thomas Lin, Meliha Yetisgen. Submitted to Nature Scientific Data, 2023.**
8
+ https://www.nature.com/articles/s41597-023-02487-3
9
+
10
+ ```
11
+ @article{aci-bench,
12
+   author = {Wen{-}wai Yim and
13
+                 Yujuan Fu and
14
+                 Asma {Ben Abacha} and
15
+                 Neal Snider and Thomas Lin and Meliha Yetisgen},
16
+   title = {ACI-BENCH: a Novel Ambient Clinical Intelligence Dataset for Benchmarking Automatic Visit Note Generation},
17
+   journal = {Nature Scientific Data},
18
+   year = {2023}
19
+ }
20
+ ```
21
+
22
+ ## Data statistics
23
+
24
+ The ACI-BENCH collection consists of full doctor-patient conversations and associated clinical notes and includes the data splits from the [MEDIQA-CHAT 2023](https://sites.google.com/view/mediqa2023/clinicalnlp-mediqa-chat-2023) and [MEDIQA-SUM 2023](https://www.imageclef.org/2023/medical/mediqa) challenges:
25
+ ```
26
+ TRAIN: 67
27
+ VALID: 20
28
+ TEST1: 40 ( MEDIQA-CHAT TASK B test set )
29
+ TEST2: 40 ( MEDIQA-CHAT TASK C test set )
30
+ TEST3: 40 ( MEDIQA-SUM TASK C test set )
31
+ ```
32
+
33
+ ## License
34
+
35
+ The data here is published under a Creative Commons Attribution 4.0 International Licence (CC BY).
36
+ https://creativecommons.org/licenses/by/4.0/
37
+
38
+
39
+ ## Contact
40
+
41
+ - Asma Ben abacha (abenabacha at microsoft dot com)
42
+ - Wen-wai Yim (yimwenwai at microsoft dot com)
43
+
clef_taskC_test3.json ADDED
The diff for this file is too large to render. See raw diff
 
clef_taskC_test3_assessment_and_plan.json ADDED
The diff for this file is too large to render. See raw diff
 
clef_taskC_test3_full.json ADDED
The diff for this file is too large to render. See raw diff
 
clef_taskC_test3_objective_exam.json ADDED
The diff for this file is too large to render. See raw diff
 
clef_taskC_test3_objective_results.json ADDED
The diff for this file is too large to render. See raw diff
 
clef_taskC_test3_subjective.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskB_test1.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskB_test1_assessment_and_plan.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskB_test1_full.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskB_test1_objective_exam.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskB_test1_objective_results.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskB_test1_subjective.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskC_test2.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskC_test2_assessment_and_plan.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskC_test2_full.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskC_test2_objective_exam.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskC_test2_objective_results.json ADDED
The diff for this file is too large to render. See raw diff
 
clinicalnlp_taskC_test2_subjective.json ADDED
The diff for this file is too large to render. See raw diff
 
requirements.txt ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ quickumls
2
+ evaluate==0.4.0
3
+ nltk==3.8.1
4
+ rouge-score==0.1.2
5
+ bert-score==0.3.12
6
+ git+https://github.com/google-research/bleurt.git
7
+ spacy==3.4.4
8
+ scispacy==0.5.1
9
+ https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.5.1/en_core_sci_lg-0.5.1.tar.gz
10
+ https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.5.1/en_ner_bc5cdr_md-0.5.1.tar.gz
11
+ https://github.com/explosion/spacy-models/releases/download/en_core_web_md-3.5.0/en_core_web_md-3.5.0-py3-none-any.whl
12
+ chardet
13
+ cchardet
14
+ accelerate==0.15.0
15
+ datasets==2.9.0
16
+ nlp
train.json ADDED
The diff for this file is too large to render. See raw diff
 
train_assessment_and_plan.json ADDED
The diff for this file is too large to render. See raw diff
 
train_full.json ADDED
The diff for this file is too large to render. See raw diff
 
train_objective_exam.json ADDED
The diff for this file is too large to render. See raw diff
 
train_objective_results.json ADDED
The diff for this file is too large to render. See raw diff
 
train_subjective.json ADDED
The diff for this file is too large to render. See raw diff
 
valid.json ADDED
The diff for this file is too large to render. See raw diff
 
valid_assessment_and_plan.json ADDED
The diff for this file is too large to render. See raw diff
 
valid_full.json ADDED
The diff for this file is too large to render. See raw diff
 
valid_objective_exam.json ADDED
The diff for this file is too large to render. See raw diff
 
valid_objective_results.json ADDED
The diff for this file is too large to render. See raw diff
 
valid_subjective.json ADDED
The diff for this file is too large to render. See raw diff