HAO-AI commited on
Commit
7d76dc0
·
verified ·
1 Parent(s): e4a224a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -4
README.md CHANGED
@@ -10,7 +10,6 @@ tags:
10
  - medical-ai
11
  - healthcare
12
  ---
13
-
14
  # CD-Tron: Cognitive Decline Detection from EHR using Large Clinical Language Model
15
 
16
  **Model Name:** CD-Tron
@@ -24,7 +23,6 @@ CD-Tron is a fine-tuned large clinical language model based on [GatorTron](https
24
  The model was fine-tuned on real-world clinical data, and synthetic data can be used for demonstration.
25
 
26
  ---
27
-
28
  ## Intended Use
29
 
30
  - Task: Cognitive decline detection / screening
@@ -36,7 +34,6 @@ The model was fine-tuned on real-world clinical data, and synthetic data can be
36
  This model is for research purposes and proof-of-concept demonstration.
37
 
38
  ---
39
-
40
  ## How to Use
41
 
42
  Example code to load and run inference:
@@ -53,10 +50,14 @@ outputs = model(**inputs)
53
  prediction = outputs.logits.argmax(dim=1).item()
54
  print("Predicted label:", prediction)
55
 
 
 
 
56
  ## Citation
57
 
58
- If you find the work is useful, please cite our paper. Your support is greatly appreciated!
59
 
 
60
  @article{guan2025cd,
61
  title={CD-Tron: Leveraging large clinical language model for early detection of cognitive decline from electronic health records},
62
  author={Guan, Hao and Novoa-Laurentiev, John and Zhou, Li},
@@ -65,3 +66,4 @@ If you find the work is useful, please cite our paper. Your support is greatly a
65
  year={2025},
66
  publisher={Elsevier}
67
  }
 
 
10
  - medical-ai
11
  - healthcare
12
  ---
 
13
  # CD-Tron: Cognitive Decline Detection from EHR using Large Clinical Language Model
14
 
15
  **Model Name:** CD-Tron
 
23
  The model was fine-tuned on real-world clinical data, and synthetic data can be used for demonstration.
24
 
25
  ---
 
26
  ## Intended Use
27
 
28
  - Task: Cognitive decline detection / screening
 
34
  This model is for research purposes and proof-of-concept demonstration.
35
 
36
  ---
 
37
  ## How to Use
38
 
39
  Example code to load and run inference:
 
50
  prediction = outputs.logits.argmax(dim=1).item()
51
  print("Predicted label:", prediction)
52
 
53
+ ```
54
+
55
+ ---
56
  ## Citation
57
 
58
+ If you find this work useful, please cite:
59
 
60
+ ```bibtex
61
  @article{guan2025cd,
62
  title={CD-Tron: Leveraging large clinical language model for early detection of cognitive decline from electronic health records},
63
  author={Guan, Hao and Novoa-Laurentiev, John and Zhou, Li},
 
66
  year={2025},
67
  publisher={Elsevier}
68
  }
69
+