manan commited on
Commit
50ea320
1 Parent(s): e69ca69

Create examples.py

Browse files
Files changed (1) hide show
  1. examples.py +25 -0
examples.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ example_input_11 = "Family-history-of-MI-OR-Family-history-of-myocardial-infarction"
2
+ example_input_12 = """HPI: 17yo M presents with palpitations. Patient reports 3-4 months of intermittent episodes of "heart beating/pounding out of my chest." 2 days ago during a soccer game had an episode, but this time had chest pressure and felt as if he were going to pass out (did not lose conciousness). Of note patient endorses abusing adderall, primarily to study (1-3 times per week). Before recent soccer game, took adderrall night before and morning of game. Denies shortness of breath, diaphoresis, fevers, chills, headache, fatigue, changes in sleep, changes in vision/hearing, abdominal paun, changes in bowel or urinary habits.
3
+ PMHx: none
4
+ Rx: uses friends adderrall
5
+ FHx: mom with "thyroid disease," dad with recent heart attcak
6
+ All: none
7
+ Immunizations: up to date
8
+ SHx: Freshmen in college. Endorses 3-4 drinks 3 nights / week (on weekends), denies tabacco, endorses trying marijuana. Sexually active with girlfriend x 1 year, uses condoms"""
9
+
10
+ example_input_21 = "Right-sided-LQ-abdominal-pain-OR-Right-lower-quadrant-abdominal-pain"
11
+ example_input_22 = """20 y/o F c/o abdominal pain
12
+ 5/10. from last 10 hours.
13
+ dull and ache.,cramping pain in the right lower quadrant .
14
+ no radiation.
15
+ walking makes it worse.took ibuprofen but not much help.
16
+ no fever chills,no discharge,no dysuria,no blood in the urine.
17
+ pat h/o of similar episodes 3-4 in the last 6 months..not allergic .no medicines other than ibuprofen..no hospitalisation trauma or surgeries .no past illness.
18
+ family h/o not significant..
19
+ lmp 2 weeks ago.regular 28 days lasts for 4 days.moderare flow.age of menarche 13.
20
+ last sexual encounter 9 months ago with boy friend always uses condoms."""
21
+
22
+ example = [
23
+ [example_input_11, example_input_12],
24
+ [example_input_21, example_input_22],
25
+ ]