awacke1 commited on
Commit
d6f0ca9
β€’
1 Parent(s): 73c6b23

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +453 -0
app.py ADDED
@@ -0,0 +1,453 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ st.markdown("""
5
+
6
+ ## FHIR - CT - Graph
7
+
8
+ # FHIR:
9
+ https://huggingface.co/spaces/awacke1/Clinical-Terminology-FHIR-Assessment
10
+ https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Observation-SDKs
11
+ https://huggingface.co/spaces/awacke1/SMART-FHIR-Kits-SDC-HL7
12
+ https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Blood-Pressure
13
+ https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Exercise
14
+
15
+ # Clinical Terminology:
16
+ https://huggingface.co/spaces/awacke1/Ontology-Gradio
17
+ https://huggingface.co/spaces/awacke1/Biomed-NLP-AI-Clinical-Terminology
18
+ https://huggingface.co/spaces/awacke1/ClinicalTerminologyNER-Refactored
19
+ https://huggingface.co/spaces/awacke1/ClinicalTerminologyAISearch
20
+ https://huggingface.co/spaces/awacke1/ClinicalTerminologyAISearch1215
21
+
22
+ # Graph, Clinical Terminology, FHIR Apps and Services:
23
+ https://huggingface.co/spaces/awacke1/Git-GPG-Git-Actions-01-GraphViz
24
+ https://huggingface.co/spaces/awacke1/Dice-Roll-Treemap-Plotly
25
+ https://huggingface.co/spaces/awacke1/GraphVis3
26
+ https://huggingface.co/spaces/awacke1/GraphViz-Demo
27
+ https://huggingface.co/spaces/awacke1/StreamlitGraphViz
28
+ https://huggingface.co/spaces/awacke1/CardGameActivity-GraphViz
29
+
30
+ # CP Matplotlib, NetworkX, Streamlit, PyVis, st-click0detector, graphviz:
31
+ https://huggingface.co/spaces/awacke1/CPVisGraph
32
+
33
+ # OMS and LOCUS:
34
+ https://huggingface.co/spaces/awacke1/NLPGraphOMSandLOCUS
35
+
36
+ # Technical Architecture - Open Source Graph ML Libraries:
37
+ NetworkX: https://networkx.org/
38
+ PyTorch GNN: https://github.com/microsoft/ptgnn
39
+ Jraph: https://github.com/deepmind/jraph
40
+ Spektral: https://graphneural.network/
41
+ Graph Nets: https://github.com/deepmind/graph_nets
42
+ Deep Graph Library (DGL): https://github.com/dmlc
43
+ PyTorch Geometric: https://github.com/pyg-team/pytorch_geometric
44
+
45
+ # Provider Graph - Maps of Hospitals
46
+
47
+ https://huggingface.co/spaces/awacke1/MN.Map.Hospitals.Top.Five
48
+ ![image](https://user-images.githubusercontent.com/30595158/226150906-65fcdb27-b234-4500-8cd8-c6b88d1afa05.png)
49
+
50
+
51
+
52
+ # Graph, Clinical Terminology, FHIR Apps and Services:
53
+
54
+ CP Matplotlib, NetworkX, Streamlit, PyVis, st-click0detector, graphviz:
55
+ https://huggingface.co/spaces/awacke1/CPVisGraph
56
+
57
+ OMS and LOCUS:
58
+ https://huggingface.co/spaces/awacke1/NLPGraphOMSandLOCUS
59
+
60
+ https://huggingface.co/spaces/awacke1/Git-GPG-Git-Actions-01-GraphViz
61
+ https://huggingface.co/spaces/awacke1/Dice-Roll-Treemap-Plotly
62
+ https://huggingface.co/spaces/awacke1/GraphVis3
63
+ https://huggingface.co/spaces/awacke1/GraphViz-Demo
64
+ https://huggingface.co/spaces/awacke1/StreamlitGraphViz
65
+ https://huggingface.co/spaces/awacke1/CardGameActivity-GraphViz
66
+
67
+ Technical Architecture - Open Source Graph ML Libraries:
68
+
69
+ NetworkX: https://networkx.org/
70
+ PyTorch GNN: https://github.com/microsoft/ptgnn
71
+ Jraph: https://github.com/deepmind/jraph
72
+ Spektral: https://graphneural.network/
73
+ Graph Nets: https://github.com/deepmind/graph_nets
74
+ Deep Graph Library (DGL): https://github.com/dmlc
75
+ PyTorch Geometric: https://github.com/pyg-team/pytorch_geometric
76
+
77
+
78
+
79
+ # Clinical Terminology:
80
+ # FHIR:
81
+ https://huggingface.co/spaces/awacke1/Clinical-Terminology-FHIR-Assessment
82
+ https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Observation-SDKs
83
+ https://huggingface.co/spaces/awacke1/SMART-FHIR-Kits-SDC-HL7
84
+ https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Blood-Pressure
85
+ https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Exercise
86
+
87
+
88
+ # Clinical Terminology:
89
+ https://huggingface.co/spaces/awacke1/Ontology-Gradio
90
+ https://huggingface.co/spaces/awacke1/Biomed-NLP-AI-Clinical-Terminology
91
+ https://huggingface.co/spaces/awacke1/ClinicalTerminologyNER-Refactored
92
+ https://huggingface.co/spaces/awacke1/ClinicalTerminologyAISearch
93
+ https://huggingface.co/spaces/awacke1/ClinicalTerminologyAISearch1215
94
+
95
+
96
+
97
+
98
+ # Saturday Evening:
99
+ https://huggingface.co/spaces/awacke1/MN.Map.Hospitals.Top.Five
100
+ ![image](https://user-images.githubusercontent.com/30595158/226150906-65fcdb27-b234-4500-8cd8-c6b88d1afa05.png)
101
+
102
+
103
+ # Iceland Myths - Places to See - https://huggingface.co/spaces/awacke1/Maps.Markers.Honor.Iceland
104
+ ![image](https://user-images.githubusercontent.com/30595158/226151615-71d82400-b849-419e-833c-e8632676bc49.png)
105
+
106
+ Ásbyrgi: Thor, trying to prove his strength, challenged Sleipnir to a race. Odin agreed, but secretly fed Sleipnir his favorite snack, lightning bolts. With each step, Sleipnir left a massive print, and thus, Ásbyrgi was formed.
107
+
108
+ ![image](https://user-images.githubusercontent.com/30595158/226151903-2298f479-f829-48bb-83e5-546677da85ac.png)
109
+
110
+
111
+
112
+ # Saturday
113
+ write a streamlit python program that uses functions and user interface elements of a textbox, a dial, a four direction button array for up down left right and display a folium map with the data in python list dictionaries with these values: Aurora Spottings, Notifications on Nerthern Lights, Northern lights map location cities and countries for Iceland on a map written with folium for latitude and longitude of top ten places to view Northern Lights. Cite References as urls.
114
+
115
+ # Maps
116
+
117
+ Space | URL
118
+ -------------------------------------------------------------------------------------------------------------------------------------------
119
+ awacke1/VizLib-TopLargeHospitalsNewJersey-03-09-2023 | https://huggingface.co/spaces/awacke1/VizLib-TopLargeHospitalsNewJersey-03-09-2023
120
+ awacke1/Bird-Species-Migration-Month-Map | https://huggingface.co/spaces/awacke1/Bird-Species-Migration-Month-Map
121
+ βš—οΈπŸ§ πŸ”¬πŸ§¬ Clinical Terminology Auto Mapper AI πŸ‘©β€βš•οΈπŸ©Ίβš•οΈπŸ™‹ | https://huggingface.co/spaces/awacke1/SNOMED-LOINC-eCQM
122
+ awacke1/Visualization-Plotly-Sunbursts-Treemaps-and-WebGL | https://huggingface.co/spaces/awacke1/Visualization-Plotly-Sunbursts-Treemaps-and-WebGL
123
+ awacke1/HTML5-Aframe-3D-Maps | https://huggingface.co/spaces/awacke1/HTML5-Aframe-3D-Maps
124
+ awacke1/HTML5-Aframe-3dMap-Flight | https://huggingface.co/spaces/awacke1/HTML5-Aframe-3dMap-Flight
125
+
126
+ Figures:
127
+ ![image](https://user-images.githubusercontent.com/30595158/226116055-25b8c900-bc10-472d-8b5f-61c7b8b5452b.png)
128
+
129
+
130
+
131
+ # Top Ten Board Games
132
+ ## Map-Making-Strategy
133
+ https://huggingface.co/spaces/awacke1/Top-Ten-Board-Games-Map-Making-Strategy
134
+
135
+
136
+
137
+ # MediaPipe
138
+ ### A cross language SDK for AI that is real time, 3d, camera responsive, and on any device for nearly any language
139
+ #### Vision
140
+ #### Natural Language
141
+ #### Audio
142
+
143
+ Mediapipe has fast and flexible AI/ML pipelines.
144
+ Examples with Javascript Links!
145
+
146
+ 1. Image Classifier: https://mediapipe-studio.webapps.google.com/demo/image_classifier
147
+ 2. Object Detector: https://mediapipe-studio.webapps.google.com/demo/object_detector
148
+ 3. Text Classification: https://mediapipe-studio.webapps.google.com/demo/text_classifier
149
+ 4. Gesture Recognizer: https://mediapipe-studio.webapps.google.com/demo/gesture_recognizer
150
+ 5. Hand Landmark Detection: https://mediapipe-studio.webapps.google.com/demo/hand_landmarker
151
+ 6. Audio Classifier: https://mediapipe-studio.webapps.google.com/demo/audio_classifier
152
+
153
+
154
+ Get started with just Javascript!!
155
+ Getting Started: https://google.github.io/mediapipe/getting_started/javascript.html
156
+
157
+ Javascript Solutions - Ready to Demo:
158
+ 1. Face Mesh: https://codepen.io/mediapipe/full/KKgVaPJ
159
+ 2. Face Detection: https://codepen.io/mediapipe/full/dyOzvZM
160
+ 3. Hands: https://codepen.io/mediapipe/full/RwGWYJw
161
+ 4. Face, Hands, Body: https://codepen.io/mediapipe/full/LYRRYEw
162
+ 5. Objectron: https://codepen.io/mediapipe/full/BaWvzdY
163
+ 6. Full Skeletal Pose: https://codepen.io/mediapipe/full/jOMbvxw
164
+ 7. Self Segmentation From Background: https://codepen.io/mediapipe/full/wvJyQpq
165
+
166
+ Demonstration in Action with Screenshots:
167
+
168
+ Self Segmentation From Background:
169
+ ![image](https://user-images.githubusercontent.com/30595158/225767564-786928a3-7c91-4df1-babb-0cc4c2b71460.png)
170
+
171
+ Full Skeletal Pose:
172
+ ![image](https://user-images.githubusercontent.com/30595158/225767721-6f088349-3f56-41b3-85d4-98f2456dc165.png)
173
+
174
+ Hands - Both in 3D Projection even hidden surface vertices - Mahalo:
175
+ ![image](https://user-images.githubusercontent.com/30595158/225767970-0e1000e8-72a8-4276-a6f0-ccfcd3ac6d72.png)
176
+
177
+ Holistic - Face, Hands, Body:
178
+ ![image](https://user-images.githubusercontent.com/30595158/225768092-2cb4a144-7033-46b1-a476-3e0ec376eb36.png)
179
+
180
+ Face Detection:
181
+ ![image](https://user-images.githubusercontent.com/30595158/225768256-c97c0f62-6ef9-4c7e-aa41-8eaf4f344a3d.png)
182
+
183
+ Face Mesh Real Time - 30 Frames per second!
184
+ ![image](https://user-images.githubusercontent.com/30595158/225768360-c64197ff-919f-47a9-8cc0-c6d5e73e5853.png)
185
+
186
+
187
+
188
+ # ASR Voice and Virtual Assistants With Avatars
189
+ 1. https://huggingface.co/spaces/awacke1/ASR-openai-whisper-large
190
+ 2. https://huggingface.co/spaces/awacke1/ASR-voidful-wav2vec2-xlsr-multilingual-56
191
+ 3. https://huggingface.co/spaces/awacke1/ASR-nvidia-stt_en_conformer_ctc_large
192
+ 4. https://huggingface.co/spaces/awacke1/ASR-facebook-hubert-large-ls960-ft
193
+ 5. https://huggingface.co/spaces/awacke1/ASR-openai-whisper-tiny.en
194
+ 6. https://huggingface.co/spaces/awacke1/ASR-openai-whisper-tiny
195
+ 7. https://huggingface.co/spaces/awacke1/ASR-openai-whisper-medium
196
+ 8. https://huggingface.co/spaces/awacke1/ASR-nvidia-stt_en_conformer_transducer_xlarge
197
+ 9. https://huggingface.co/spaces/awacke1/ASR-openai-whisper-base
198
+ 10. https://huggingface.co/spaces/awacke1/ASR-facebook-wav2vec2-large-960h-lv60-self
199
+ 11. https://huggingface.co/spaces/awacke1/ASR-facebook-wav2vec2-base-960h
200
+ 12. https://huggingface.co/spaces/awacke1/ASR-High-Accuracy-Test
201
+ 13. https://huggingface.co/spaces/awacke1/ASRGenerateStory
202
+ 14. https://huggingface.co/spaces/awacke1/TTS-STT-Blocks
203
+ 15. https://huggingface.co/spaces/awacke1/2-LiveASR
204
+ 16. https://huggingface.co/spaces/awacke1/CloneAnyVoice
205
+ 17. https://huggingface.co/spaces/awacke1/ASR-SOTA-NvidiaSTTMozilla
206
+ 18. https://huggingface.co/spaces/awacke1/ASRSpeechRecognition1
207
+ 19. https://huggingface.co/spaces/awacke1/1110-ASRLiveExample
208
+ 20. https://huggingface.co/spaces/awacke1/Z1-ASRLiveSpeechRecognition-GR
209
+ 21. https://huggingface.co/spaces/awacke1/PrivateASRWithMemory
210
+ 22. https://huggingface.co/spaces/awacke1/TimerASRLive
211
+
212
+ # Best Voice Apps - HF:
213
+ 1. https://huggingface.co/spaces/BilalSardar/Voice-Cloning
214
+ 2. https://huggingface.co/spaces/RamAnanth1/chatGPT_voice
215
+ 3. https://huggingface.co/spaces/Voicemod/speech-synthesis-demo
216
+ 4. https://huggingface.co/spaces/ysharma/Voice-to-Youtube
217
+ 5. https://huggingface.co/spaces/ramkamal2000/voice-conversion-yourtts
218
+ 6. https://huggingface.co/spaces/RamAnanth1/co_chat_voice
219
+ 7. https://huggingface.co/spaces/ysharma/Voice-to-jokes
220
+ 8. https://huggingface.co/spaces/jayesh95/Voice-QA
221
+
222
+
223
+
224
+ # Supervised Learning (SL) for ML and Reinforcement Learning with Human Feedback (RLHF):
225
+
226
+ For human imitation we use reinforcement learning for fine tuning since feedback based on rewards shapes the quality of output where an agent completes a task and then observes a result. SL works on ranks not responses so is good for modifying elements at the token level however RLHF is trained to estimate the quality of the response with cumulative rewards for coherent conversation. RLHF considers context and coherence of entire conversation. Supervised learning is used to teach the model initially where the model learns basic structure and content. In the RLHF stage the model is refined with responses that represent improved accuracy.
227
+
228
+
229
+
230
+
231
+
232
+ # Mermaid Model for Core NLP Tasks:
233
+
234
+ ```mermaid
235
+ graph LR;
236
+ A[Reader]-->B[Classifier];
237
+ A-->C[Retriever];
238
+ A-->D[Summarizer];
239
+ B-->E[Ranker];
240
+ B-->F[Query Classifier];
241
+ D-->G[Generator];
242
+ F-->H[Question Generator];
243
+ H-->G;
244
+ I[File Converter]-->J[Preprocessor];
245
+ J-->A;
246
+ I-->C;
247
+ K[Snowflake]-->B;
248
+ L[Oracle]-->B;
249
+ M[Pandas CSV]-->A;
250
+ N[Index]-->C;
251
+ N-->E;
252
+ O[Query with Filters]-->F;
253
+ P[Evaluation]-->E;
254
+ P-->F;
255
+ Q[Retraining]-->B;
256
+ Q-->E;
257
+ R[Annotation]-->B;
258
+ ```
259
+
260
+ # Core NLP Task Model for QA
261
+
262
+ Tasks:
263
+ 1. Reader
264
+ 2. Summarizer
265
+ 3. Classifier
266
+ 4. Retriever
267
+ 5. Ranker
268
+ 6. Query Classifier
269
+ 7. Question Generator
270
+ 8. Generator
271
+
272
+ Connectors:
273
+ 1. File Converter
274
+ 2. Preprocessor
275
+ 3. Snowflake
276
+ 4. Oracle
277
+ 5. Pandas CSV
278
+
279
+ Supported Workflow:
280
+ 1. Index
281
+ 2. Query with Filters
282
+ 3. Evaluation
283
+ 4. Retraining
284
+ 5. Annotation
285
+
286
+ # QA Model Spaces:
287
+
288
+ QA use cases include QA, Semantic Document and FAQ Search.
289
+
290
+ 1. Streamlit Question Answering w Hugging Face: https://huggingface.co/spaces/awacke1/Question-answering
291
+ 2. Seq2Seq:
292
+ - https://huggingface.co/spaces/awacke1/4-Seq2SeqQAT5
293
+ - https://huggingface.co/spaces/awacke1/AW-04-GR-Seq-2-Seq-QA-Auto-Gen
294
+ -
295
+ 3. BioGPT: https://huggingface.co/spaces/awacke1/microsoft-BioGPT-Large-PubMedQA
296
+ 4. NLP QA Context: https://huggingface.co/spaces/awacke1/NLPContextQATransformersRobertaBaseSquad2
297
+ - https://huggingface.co/spaces/awacke1/SOTA-Plan
298
+ 5. https://huggingface.co/spaces/awacke1/Question-answering
299
+ 6. QA MLM: https://huggingface.co/spaces/awacke1/SOTA-MedEntity
300
+
301
+ # πŸ€– QA Models and Datasets:
302
+
303
+ - Reader model extracts answers from text using QA pairs. SQuAD is the primary dataset.
304
+ - Transformers (huggingface) has research momentum and solves real business problems.
305
+
306
+ ## πŸ’» Process:
307
+
308
+ 1. Best practices for QA systems: https://www.youtube.com/playlist?list=PLHgX2IExbFotW6WgDZ-cMzpDBUNKCMBbF
309
+ 2. Optimize Question/Answer Heads for SQuAD.
310
+ 3. QA search to ask questions to textual kb.
311
+ 4. Return text sections as answers.
312
+ 5. Organize text collection.
313
+ 6. Find similar documents to given input.
314
+ 7. Perform semantic and comprehensive word matching.
315
+ 8. Match incoming questions to FAQ KB dataset.
316
+
317
+ ## πŸ“‹ Tasks:
318
+
319
+ 1. Visual,
320
+ 2. Document, and
321
+ 3. Table QA.
322
+ 4. Zero Shot Classification.
323
+ 5. Translation.
324
+ 6. Conversational/Chat.
325
+ 7. Text2Text Generation.
326
+ 8. ASR/TTS.
327
+
328
+ # Mermaid model
329
+
330
+ ```mermaid
331
+ graph LR;
332
+ A[Reader model]-->B[SQuAD];
333
+ C[Transformers from Huggingface]-->D[Real Business Problems];
334
+ E[Best practices for QA systems]-->F[Optimize Question/Answer Heads for SQuAD];
335
+ G[QA search]-->H[Textual KB];
336
+ H-->I[Return text sections as answers];
337
+ J[Organize text collection]-->K[Find similar documents to given input];
338
+ K-->I;
339
+ L[Perform semantic and comprehensive word matching]-->I;
340
+ M[Match incoming questions to FAQ KB dataset]-->I;
341
+ N[Visual QA]-->O[Document QA];
342
+ N-->P[Table QA];
343
+ Q[Zero Shot Classification]-->I;
344
+ R[Translation]-->I;
345
+ S[Conversational/Chat]-->I;
346
+ T[Text2Text Generation]-->I;
347
+ U[ASR/TTS]-->I;
348
+
349
+ ```
350
+
351
+ # Top 50 Assessments in Physical and Mental Health
352
+
353
+ Below are the top 50 mental and physical health assessments.
354
+ 1. **Patient Health Questionnaire (PHQ-9)** 🧠 - Major depressive disorder (ICD-10: F32)
355
+ 2. **Generalized Anxiety Disorder 7-item Scale (GAD-7)** 😰 - Generalized anxiety disorder (ICD-10: F41.1)
356
+ 3. **Hamilton Rating Scale for Depression (HRSD)** 🧠 - Major depressive disorder (ICD-10: F32)
357
+ 4. **World Health Organization Disability Assessment Schedule 2.0 (WHODAS 2.0)** 🧠πŸ’ͺ - Physical and mental disability (ICD-10: Z73.1)
358
+ 5. **Short Form-36 Health Survey (SF-36)** πŸ’ͺ🧠 - Health-related quality of life (CPT: 99499)
359
+ 6. **Health Assessment Questionnaire (HAQ)** πŸ’ͺ - Functional status assessment (CPT: 97750)
360
+ 7. **EuroQol-5D (EQ-5D)** πŸ’ͺ🧠 - Health-related quality of life (LOINC: 83792-6)
361
+ 8. **Geriatric Depression Scale (GDS)** πŸ§‘β€πŸ¦³πŸ§  - Depression in older adults (ICD-10: F32.1)
362
+ 9. **Mini-Mental State Examination (MMSE)** πŸ§‘β€πŸ¦³πŸ’­ - Cognitive impairment (ICD-10: F06.7)
363
+ 10. **Pain Catastrophizing Scale (PCS)** πŸ’” - Chronic pain (LOINC: 86351-6)
364
+ 11. **Oswestry Disability Index (ODI)** πŸ’ͺπŸ’” - Back pain (CPT: 97750)
365
+ 12. **Fibromyalgia Impact Questionnaire (FIQ)** πŸ’”πŸ˜© - Fibromyalgia (SNOMED: 316962002)
366
+ 13. **Beck Depression Inventory (BDI)** 🧠 - Depression (ICD-10: F32)
367
+ 14. **Posttraumatic Stress Disorder Checklist (PCL)** 😰😞 - Posttraumatic stress disorder (ICD-10: F43.1)
368
+ 15. **Alcohol Use Disorders Identification Test (AUDIT)** 🍻 - Alcohol use disorder (ICD-10: F10)
369
+ 16. **Drug Abuse Screening Test (DAST)** πŸ’Š - Substance use disorder (ICD-10: F19)
370
+ 17. **Eating Attitudes Test (EAT)** 🍴 - Eating disorders (ICD-10: F50)
371
+ 18. **Adolescent Eating Disorder Examination (ADE)** πŸ΄πŸ‘©β€πŸ¦° - Eating disorders in adolescents (ICD-10: F50)
372
+ 19. **Child Behavior Checklist (CBCL)** πŸ‘§πŸ§’ - Child behavior problems (ICD-10: F90)
373
+ 20. **Autism Spectrum Quotient (AQ)** πŸ§‘β€πŸ¦± - Autism spectrum disorder (ICD-10: F84.0)
374
+ 21. **Columbia-Suicide Severity Rating Scale (C-SSRS)** 🩸 - Suicide risk (ICD-10: Z65.8)
375
+ 22. **Perceived Stress Scale (PSS)** 😩 - Stress (LOINC: 75217-3)
376
+ 23. **Satisfaction with Life Scale (SWLS)** 😊 - Life satisfaction (LOINC: 69406-9)
377
+ 24. **Health Belief Model Scale (HBM)** πŸ’ŠπŸ’‰ - Health beliefs (LOINC: 88018)
378
+ 25. **Multidimensional Health Locus of Control Scale (MHLC)** πŸ’ŠπŸ’‰ - Health locus of control (LOINC: 87561-7)
379
+ 26. **Life Orientation Test-Revised (LOT-R)** πŸ˜ƒ - Optimism (LOINC: 75315-5)
380
+ 27. **State-Trait Anxiety Inventory (STAI)** 😰 - Anxiety (LOINC: 71092-3)
381
+ 28. **Multidimensional Scale of Perceived Social Support (MSPSS)** πŸ‘₯ - Social support (LOINC: 86649-4)
382
+ 29. **Job Content Questionnaire (JCQ)** πŸ’Ό - Job stress (LOINC: 76554-9)
383
+ 30. **Burnout Measure (BO)** πŸ”₯ - Burnout (LOINC: 89049-8)
384
+ 31. **Family Assessment Device (FAD)** πŸ‘¨β€πŸ‘©β€πŸ‘§ - Family functioning (LOINC: 84113-2)
385
+ 32. **Perceived Control Scale (PCS)** πŸ’ͺ - Perceived control (LOINC: 86447-0)
386
+ 33. **General Self-Efficacy Scale (GSES)** πŸ’ͺ - Self-efficacy (LOINC: 76563-0)
387
+ 34. **Coping Strategies Inventory (CSI)** πŸ˜“ - Coping strategies (LOINC: 89057-1)
388
+ 35. **Acceptance and Action Questionnaire (AAQ-II)** 🧘 - Acceptance and commitment therapy (LOINC: 88027-2)
389
+ 36. **Attention Deficit Hyperactivity Disorder Self-Report Scale (ASRS)** πŸ‘§πŸ§’ - ADHD (ICD-10: F90)
390
+ 37. **Impact of Event Scale-Revised (IES-R)** πŸ˜”πŸ˜ž - Trauma (LOINC: 86237-7)
391
+ 38. **Insomnia Severity Index (ISI)** πŸ’€ - Insomnia (LOINC: 82451-5)
392
+ 39. **Social Phobia Inventory (SPIN)** 😰 - Social anxiety disorder (ICD-10: F40.1)
393
+ 40. **Panic Disorder Severity Scale (PDSS)** 😰 - Panic disorder (ICD-10: F41.0)
394
+ 41. **Yale-Brown Obsessive Compulsive Scale (Y-BOCS)** πŸ€” - Obsessive-compulsive disorder (ICD-10: F42)
395
+ 42. **Social Interaction Anxiety Scale (SIAS)** 😰 - Social anxiety disorder (ICD-10: F40.1)
396
+ 43. **Generalized Anxiety Disorder Scale (GADS)** 😰 - Generalized anxiety disorder (ICD-10: F41.1)
397
+ 44. **Postpartum Depression Screening Scale (PDSS)** 🀱🧠 - Postpartum depression (ICD-10: F53.0)
398
+ 45. **Child and Adolescent Symptom Inventory (CASI)** πŸ‘§πŸ§’πŸ§  - Child and adolescent mental health (ICD-10: F90)
399
+ 46. **Strengths and Difficulties Questionnaire (SDQ)** πŸ‘§πŸ§’πŸ§  - Child and adolescent mental health (ICD-10: F90)
400
+ 47. **Kessler Psychological Distress Scale (K10)** 🧠 - Psychological distress (LOINC: 76550-6)
401
+ 48. **World Health Organization Quality of Life Scale (WHOQOL)** πŸ’ͺ🧠 - Quality of life (LOINC: 88055-2)
402
+ 49. **Multidimensional Pain Inventory (MPI)** πŸ’” - Chronic pain (LOINC: 71808-8)
403
+ 50. **Cornell Scale for Depression in Dementia (CSDD)** πŸ‘΄πŸ‘΅πŸ§  - Depression in dementia patients (ICD-10: F03.90)
404
+
405
+
406
+ # SMART/FHIR/SDC Survey-Assess-Plan
407
+
408
+ These SMART/FHIR/SDC compatible Surveys demonstrate how to build and conducct surveys with EMR/EHR Compliance Standards
409
+
410
+ 1. Smart FHIR Connect and Test BMI Calculator: https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-BMI
411
+ 2. Smart FHIR Kits SDC HL7: https://huggingface.co/spaces/awacke1/SMART-FHIR-Kits-SDC-HL7
412
+ 3. Smart FHIR Assessment Exercise: https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Exercise
413
+ 4. Smart FHIR Assessment Blood Pressure: https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Blood-Pressure
414
+ 5. Smart FHIR - Observations-Assessments-Rules-Referrals-Providers-Programs-Fulfillment-Alerrts-Notes-SDOH: https://huggingface.co/spaces/awacke1/SMART-FHIR-Assessment-Observation-SDKs
415
+
416
+
417
+ # Graphs Survey-Assess-Plan-Goals
418
+
419
+ These top 5 graph examples introduce visual ideas to use to survey, assess, plan and reach goals.
420
+
421
+ 1. Graph OMS and LOCUS Standards and Quality Metrics: https://huggingface.co/spaces/awacke1/NLPGraphOMSandLOCUS
422
+ 2. Graph Pain and High Medium Low Confidence: https://huggingface.co/spaces/awacke1/VISNLP-Graph
423
+ 3. Graph Action Mechanics: https://huggingface.co/spaces/awacke1/CardGameActivity-GraphViz
424
+ 4. Graph - OMS, MH, Charts, Maps, DOT lang for Pyvis VisJS: https://huggingface.co/spaces/awacke1/CPVisGraph
425
+ 5. Graph - Plan and Assess: https://huggingface.co/spaces/awacke1/Git-GPG-Git-Actions-01-GraphViz
426
+
427
+ # ICD10, CPT, LOINC, SNOMED, HCPCS, OMS Codes for Top Health Conditions and Treatment Preferences Assessment
428
+
429
+ Assess Topic| Assess Metric | Code Emoji | Code Topic | Code Type | Code
430
+ ------------|---------------|------------|------------|------------|-----------
431
+ Childhood Immunization| % of children immunized by age two |πŸ§’πŸ’‰ | Clinical Code| ICD10 | Z28.2
432
+ Breast Cancer Screening| % of women with mammogram in past 2 yrs |πŸ©ΊπŸŽ€ | Clinical Code| CPT| 77067
433
+ Colorectal Cancer Screening| % of adults screened for colorectal cancer| πŸ©ΊπŸ’© | Clinical Code| CPT| 82274
434
+ Comprehensive Diabetes Care| % of diabetic patients who had all recommended tests| 🩺🩹 | Clinical Code| LOINC| 4548-4
435
+ Controlling High Blood Pressure| % of patients with controlled blood pressure| πŸ©ΊπŸ’Š | Clinical Code| ICD10|I10
436
+ Medication Management for Asthma| % of asthma patients with proper meds| πŸ’ŠπŸŒ¬οΈ | Clinical Code| SNOMED|195967001
437
+ Follow-up After Mental Illness Hospitalization| % of patients with follow-up care| 🩺πŸ₯ | Clinical Code| HCPCS|G0181
438
+ Prenatal & Postpartum Care| % of pregnant women with proper care |🀰🩺 | Clinical Code| ICD10|Z34
439
+ Comprehensive Eye Exam| % of diabetic patients with eye exam |πŸ©ΊπŸ‘€ | Clinical Code| CPT| 92014
440
+ Childhood Weight Assessment| % of children with BMI assessment |πŸ§’πŸ“ | Clinical Code| ICD10| Z00.121
441
+ Chlamydia Screening in Women| % of sexually active women screened| πŸ©ΊπŸ‘© | Clinical Code| CPT|87491
442
+ Avoidance of Antibiotic Treatment for Acute Bronchitis| % of patients without antibiotics |πŸ©ΊπŸ’Š | Clinical Code| ICD10|J20.9
443
+ Osteoporosis Management in Women|% of women with bone density test |🩺πŸ’ͺ | Clinical Code| CPT|77080
444
+ Use of High-Risk Medications in the Elderly| % of elderly with safe meds |πŸ’ŠπŸ‘΄πŸ‘΅ | Clinical Code| HCPCS |G9612
445
+ Diabetes Screening for Schizophrenia or Bipolar Disorder| % of patients with mental illness screened |🧠🩺 | Clinical Code| SNOMED| 169609005
446
+ All-Cause Readmissions| % of patients readmitted within 30 days |🩺πŸ₯ | Clinical Code| ICD10| Z51.5
447
+ Antidepressant Medication Management| % of depressed patients with proper meds & follow-up |🩺🧠 | Clinical Code| CPT|96127
448
+ Follow-up Care for Children Prescribed ADHD Medication|% of children with follow-up care |πŸ©ΊπŸ§’ | Clinical Code| ICD10|F90
449
+ Imaging Studies for Low Back Pain| % of patients without imaging studies|πŸ©ΊπŸ“Š | Clinical Code| ICD10|M54.5
450
+ Spirometry Testing for COPD|% of COPD patients with spirometry testing |🩺🫁 | Clinical Code|CPT|94010
451
+
452
+
453
+ """)