Simonlee711 commited on
Commit
d4a8be4
Β·
verified Β·
1 Parent(s): ca0765d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -1
README.md CHANGED
@@ -6,4 +6,60 @@ tags:
6
  - >-
7
  Multimodal Clinical Pseudo-notes for Emergency Department Prediction Tasks
8
  using Multiple Embedding Model for EHR (MEME)
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - >-
7
  Multimodal Clinical Pseudo-notes for Emergency Department Prediction Tasks
8
  using Multiple Embedding Model for EHR (MEME)
9
+ ---
10
+ [![arXiv](https://img.shields.io/badge/arXiv-2402.00160-red.svg)](https://arxiv.org/abs/2402.00160)
11
+
12
+ # Multimodal Clinical Pseudo-notes for Emergency Department Prediction Tasks using Multiple Embedding Model for EHR (MEME)
13
+
14
+ # Abstract
15
+
16
+ In this work, we introduce Multiple Embedding Model for EHR (MEME), an approach that views Electronic Health Records (EHR) as multimodal data. It uniquely represents tabular concepts like diagnoses and medications as structured natural language text using our "pseudo-notes" method. This approach allows us to effectively employ Large Language Models (LLMs) for individual EHR representation, proving beneficial in a variety of text-classification tasks. We demonstrate the effectiveness of MEME by applying it to diverse tasks within the Emergency Department across multiple hospital systems. Our findings show that MEME surpasses the performance of both single modality/embedding methods and traditional machine learning approaches, highlighting its effectiveness. Additionally, our tests on the model's generalizability reveal that training solely on the MIMIC-IV database does not guarantee effective application across different hospital institutions.
17
+
18
+ # Huggingface Repository
19
+
20
+ Below is the tree structure of the repository, listing all the model files and their respective functions:
21
+
22
+ ```
23
+ MEME-repository/
24
+ β”œβ”€β”€ .gitattributes
25
+ β”œβ”€β”€ README.md
26
+ β”œβ”€β”€ MEME-disposition-final.pth
27
+ β”œβ”€β”€ MEME-multitask-final.pth
28
+ β”œβ”€β”€ MSEM-disposition.pth
29
+ β”œβ”€β”€ MSEM-multitask.pth
30
+ β”œβ”€β”€ arrival-disposition-final.pth
31
+ β”œβ”€β”€ arrival-multitask-final.pth
32
+ β”œβ”€β”€ codes-disposition-final.pth
33
+ β”œβ”€β”€ codes-multitask-final.pth
34
+ β”œβ”€β”€ medrecon-disposition-final.pth
35
+ β”œβ”€β”€ medrecon-multitask-final.pth
36
+ β”œβ”€β”€ pyxis-disposition-final.pth
37
+ β”œβ”€β”€ pyxis-multitask-final.pth
38
+ β”œβ”€β”€ triage-disposition-final.pth
39
+ β”œβ”€β”€ triage-multitask-final.pth
40
+ β”œβ”€β”€ vitals-disposition-final.pth
41
+ └── vitals-multitask-final.pth
42
+ ```
43
+
44
+ ## Usage
45
+
46
+ The models are trained to perform specific tasks related to the emergency department using Multiple Embedding Model for EHR (MEME), Multimodal Single Embedding Model (MSEM), and modality specific single embedding models. They are designed to predict various outcomes and assist in multitask and disposition prediction tasks.
47
+
48
+ To use these models, load them into your PyTorch environment using the following example code:
49
+
50
+ ```python
51
+ import torch
52
+
53
+ # Example of loading the MEME disposition model
54
+ model = torch.load('MEME-disposition-final.pth')
55
+
56
+ # Your code to use the model goes here
57
+ ```
58
+
59
+ ## Contributing
60
+
61
+ If you wish to contribute to this repository, please fork it, make your changes, and submit a pull request.
62
+
63
+ For any questions or issues, please open an issue on this repository or reach out to [email protected]
64
+
65
+ Thank you for your interest in artificial intelligence within Healthcare.