Bryan Mildort
commited on
Commit
·
f8f1cfb
1
Parent(s):
a872d0f
handling bigger model for inference
Browse files- app.py +16 -2
- requirements.txt +0 -1
app.py
CHANGED
@@ -13,10 +13,24 @@ st.markdown("<h1 style='text-align: center; color: #489DDB;'>GPT Clinical Notes
|
|
13 |
st.markdown("<h6 style='text-align: center; color: #489DDB;'>by Bryan Mildort</h1>", unsafe_allow_html=True)
|
14 |
|
15 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
16 |
-
import torch
|
17 |
|
18 |
tokenizer = AutoTokenizer.from_pretrained("bryanmildort/gpt-clinical-notes-summarizer")
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
prompt = """Edie Whelan is a 26 yo female who is here for follow-up following an ED visit for palpitations 2 weeks ago. She had a normal workup in the ED consisting of CBC, metabolic panel, cardiac enzymes and and ECG. She states that she has a 5 yr hx of palpitations with SOB, throat tightening, nause and clamminess. these have been increasing in frequency in the past few weeks to 1-2x a day until 2 weeks ago when she had associated numbness in her fingers. She states that there are no precipitating events and these stop on their own. She endorses recent life stressors having bought a condo 3 months ago and lost her job 2 months ago. She denies fevers, chills, changes in skin/hair/nails or chest pain/tightness. She denies vision or hearing changes.
|
22 |
PMH: none, Meds: none, Allergies: none, Surgeries: None, Family hx: none
|
|
|
13 |
st.markdown("<h6 style='text-align: center; color: #489DDB;'>by Bryan Mildort</h1>", unsafe_allow_html=True)
|
14 |
|
15 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
|
|
16 |
|
17 |
tokenizer = AutoTokenizer.from_pretrained("bryanmildort/gpt-clinical-notes-summarizer")
|
18 |
+
from accelerate import init_empty_weights
|
19 |
+
from transformers import AutoConfig, AutoModelForCausalLM
|
20 |
+
|
21 |
+
checkpoint = "bryanmildort/gpt-notes-summarizer-demo"
|
22 |
+
config = AutoConfig.from_pretrained(checkpoint)
|
23 |
+
|
24 |
+
with init_empty_weights():
|
25 |
+
model = AutoModelForCausalLM.from_config(config)
|
26 |
+
|
27 |
+
from accelerate import load_checkpoint_and_dispatch
|
28 |
+
|
29 |
+
model = load_checkpoint_and_dispatch(
|
30 |
+
model, checkpoint, device_map="auto", no_split_module_classes=["GPTJBlock"]
|
31 |
+
)
|
32 |
+
|
33 |
+
# model = AutoModelForCausalLM.from_pretrained("bryanmildort/gpt-clinical-notes-summarizer", low_cpu_mem_usage=True, load_in_8bit=True, device_map="auto")
|
34 |
|
35 |
prompt = """Edie Whelan is a 26 yo female who is here for follow-up following an ED visit for palpitations 2 weeks ago. She had a normal workup in the ED consisting of CBC, metabolic panel, cardiac enzymes and and ECG. She states that she has a 5 yr hx of palpitations with SOB, throat tightening, nause and clamminess. these have been increasing in frequency in the past few weeks to 1-2x a day until 2 weeks ago when she had associated numbness in her fingers. She states that there are no precipitating events and these stop on their own. She endorses recent life stressors having bought a condo 3 months ago and lost her job 2 months ago. She denies fevers, chills, changes in skin/hair/nails or chest pain/tightness. She denies vision or hearing changes.
|
36 |
PMH: none, Meds: none, Allergies: none, Surgeries: None, Family hx: none
|
requirements.txt
CHANGED
@@ -2,6 +2,5 @@ transformers
|
|
2 |
pandas
|
3 |
numpy
|
4 |
datasets
|
5 |
-
torch
|
6 |
accelerate
|
7 |
bitsandbytes
|
|
|
2 |
pandas
|
3 |
numpy
|
4 |
datasets
|
|
|
5 |
accelerate
|
6 |
bitsandbytes
|