Snowflake Healthcare Demo using Cortex and Synthea
This git will enable you to create a demo enviornment with syntetic data. You can run BI reports, streamlit apps on top, or build AI solutions. This git also offers a Cortex Analyst python file and yaml file that allow you to run text to SQL / AI against this dataset.
This solution includes 17 tables with synthetic 5000 patients generated via Synthea More information about Synthea is located here: https://synthetichealth.github.io/synthea/ The data dictionary can be found here: https://github.com/synthetichealth/synthea/wiki/CSV-File-Data-Dictionary Two snapshots of the Entity Relationship Diagram have been uploaded
If required, you could generate a custom dataset yourself via their java program: https://github.com/synthetichealth/synthea/wiki/Basic-Setup-and-Running However, this produces CSV files and some columns were renamed and data types changed so it is better to simply receive a Snowflake data share into a Snowflake environment. The steps below assume you will ask for and receive a share.
If you've never built anything with Cortex Analyst, you are encouraged to first do this Quickstart which served as the starting point of this solution: https://quickstarts.snowflake.com/guide/getting_started_with_cortex_analyst/index.html?index=..%2F..index#0
Steps to deploy this demo:
-
Have the right Snowflake Account
a. Need ACCOUNTADMIN access b. It must be in a region where Cortex Analyst is available. Oregon AWS works well. c. There are two yaml files. One (synthea_joins_02.yaml) assumes that a new Private Preview feature which is "Cortex Joins" has been enabled in the account. d. A sales engineer can enable that preview feature. If not, you can use the other yaml file (synthea_model_04) and change that name in the python script accordingly. e. Note that as of 19 Sep the new joins feature works pretty well however some queries will fail out. Please share any errors with the PM team so they can fix the product
-
Find the Account Locator of that enviroment and email or slack it to [email protected] who will do a direct share of the dataset
-
After being informed the share is ready, then recieve it by
a. logging into your env as Accountadmin b. Click data products c. Click private sharing d. Click "Get" for the Synthea dataset e. Name this read only database as: SYNTHEA_5000_SHARE_READONLY and the schema should be SYNTHEA
-
Open a SQL worksheet and run the contents of the script: createdb.sql
a. (FYI... That script creates a copy of all those tables into a read / write database and schema (SYNTHEA.SYNTHEA) that you can change as you like. Note that the table and column data dictionary comments are not carried across but they have already been loaded into the yaml files)
-
Download the provided synthea_joins_02.yaml file to your laptop then load it into the SYNTHEA stage by doing the following:
a. Click on the databases icon on the left b. Click on Synthea database then Synthea Schema then Synthea Stage c. Click add file and upload the provided YAML file to that stage
-
Configure and run your Cortex Analyst python script by doing the following:
a. Start an anaconda (e.g. Install Anaconda Navigator, create a Python env.) (See the Quickstart above. If you've followed that lab, this is already done) b. Open a terminal in that environment and run the following command: pip install streamlit snowflake-snowpark-python (See the Quickstart above. If you've followed that lab, this is already done) c. Download the cortex_synthea.py to your laptop d. Configure the Snowflake environment details in that file. (i.e. Replace YOURACCOUNTLOCATOR, YOURUSER, YOURPASSWORD, YOURWAREHOUSE) e. Save the file and run the following command: streamlit run synthea_joins_02.yaml
-
Example questions you can ask: (or look at the csv data model link or at the tables to come up with ideas. Note that queries using joins are currently buggy as this is private preview)
a. What sort of questions can I ask? b. How many patients have a care plan vs how many don't? c. What are the top five allergies for female patients? d. List the patients who are female and have an allergy of mold. Use a case insensitive search for any term similar to mold. e. What are the top 5 highest cost conditions? f. What is the most common allergy for male patients, broken out by city, excluding the allergy of 'None'? g. What are the top 3 medications in terms of total cost for the 5 largest payers?
-
Work with the PM's to fix the occasional SQL join / SQL error with complex joins
-
The streamlit app attempts to make a chart but errors out sometimes when the dataset has too many columns to deal with. So, fix up the code of the streamlit app
-
Add in 160k PMC patient notes with cortex search. This is working with a Cortex RAG. Just merge the two
-
Add hints to the column descriptions / YAML file. Row by row, we need to provide guidance to do case intensitive, ilike, and / or similar terms. Maybe fix that with the streamlit app instead