Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,16 @@ ICD_CODES = {
|
|
33 |
6: "J45.909 - Asthma, unspecified",
|
34 |
7: "K21.9 - GERD",
|
35 |
8: "E78.5 - Dyslipidemia",
|
36 |
-
9: "M17.9 - Osteoarthritis of knee"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
}
|
38 |
|
39 |
CPT_CODES = {
|
@@ -46,7 +55,14 @@ CPT_CODES = {
|
|
46 |
6: "71045 - Chest X-ray",
|
47 |
7: "99395 - Preventive visit, established patient",
|
48 |
8: "96127 - Brief emotional/behavioral assessment",
|
49 |
-
9: "99396 - Preventive visit, age 40-64"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
}
|
51 |
|
52 |
# Load models
|
@@ -117,4 +133,4 @@ iface = gr.Interface(
|
|
117 |
)
|
118 |
|
119 |
# Launch the interface
|
120 |
-
iface.launch()
|
|
|
33 |
6: "J45.909 - Asthma, unspecified",
|
34 |
7: "K21.9 - GERD",
|
35 |
8: "E78.5 - Dyslipidemia",
|
36 |
+
9: "M17.9 - Osteoarthritis of knee",
|
37 |
+
10: "E10.9 - Type 1 diabetes without complications",
|
38 |
+
11: "R51 - Headache",
|
39 |
+
12: "R50.9 - Fever, unspecified",
|
40 |
+
13: "R05 - Cough",
|
41 |
+
14: "S52.5 - Fracture of forearm",
|
42 |
+
15: "A49.9 - Bacterial infection, unspecified",
|
43 |
+
16: "R52 - Pain, unspecified",
|
44 |
+
17: "R11 - Nausea",
|
45 |
+
18: "S33.5 - Sprain and strain of lumbar spine"
|
46 |
}
|
47 |
|
48 |
CPT_CODES = {
|
|
|
55 |
6: "71045 - Chest X-ray",
|
56 |
7: "99395 - Preventive visit, established patient",
|
57 |
8: "96127 - Brief emotional/behavioral assessment",
|
58 |
+
9: "99396 - Preventive visit, age 40-64",
|
59 |
+
10: "96372 - Therapeutic injection",
|
60 |
+
11: "97110 - Therapeutic exercises",
|
61 |
+
12: "10060 - Incision and drainage of abscess",
|
62 |
+
13: "76700 - Abdominal ultrasound",
|
63 |
+
14: "87500 - Infectious agent detection",
|
64 |
+
15: "72100 - X-ray of lower spine",
|
65 |
+
16: "72148 - MRI of lumbar spine"
|
66 |
}
|
67 |
|
68 |
# Load models
|
|
|
133 |
)
|
134 |
|
135 |
# Launch the interface
|
136 |
+
iface.launch(share=True)
|