Translating Text to Structured Concepts
Overview
There are many use cases that involve a free text narrative or clinical summary to begin the documentation process. But then what? The clinical information in that text is needed for quality measures, HCC analysis, billing, and making sense of a patient’s chart or the history of a chronic disease.
Quippe has the ability to generate structured and coded notes from a plain text summary by utilizing NLP engines, the MEDCIN knowledge graph, and the Quippe Clinical Engine.
How Text Translation Works
The best way to explain this process is to use the Quippe demo application.
In the Quippe Ambient UI, start a note for Seymour Patients.

Step 1: Record the conversation
In this version of the Quippe application, we have incorporated ambient listening capabilities. Feel free to click the Start Recording button to generate your own example or click the Recent Activity icon at the bottom left of the window to load a canned transcript.
Step 2: Create a clinical summary of the transcript.
Click Summary to send the transcript off to the ambient listening tool and receive a text clinical summary back.
Step 3: Translate the free text clinical summary to structured MEDCIN concepts
The final step in the process is to click Merge. This action sends the clinical summary to an NLP engine to convert the text to structured concepts.

Now with the structured concepts, everything downstream in the clinical workflow is possible. Each MEDCIN concept is mapped to the reference terminologies like ICD-10, CPT, RxNorm, SNOMED, DSM5…so billing and compliance are more efficient.
Text Translation Use Cases
Translate the Whole Note
Use Case: You are a clinician and have just had a conversation with your patient. Your ambient listening provider has provided you with a free text clinical summary and now you want to translate that to structured clinical concepts.
API: /Quippe/TextRecognition/Recognize
Documentation: POST /Quippe/TextRecognition/Recognize
Parameters:
-
Text: The full free text clinical summary -
ResolveFindings: true
This API returns a taggedText object that includes the original source text and all of the findings that were discovered with their locations in the text. The API makes use of one or more configured NLP engines to do the initial translation to MEDCIN. It then makes several refinements using the MEDCIN knowledge graph to remove spurious results and verify proper translation to the MEDCIN data model. The resulting MEDCIN data can then be translated into various other coding systems, rendered as a FHIR bundle or CDA document, or used in a variety of analysis tasks.
Response:
At this point, you can organize the returned MEDCIN findings in a note suing the various concept properties like term type and section and group ID, or retrieve the necessary external codes for each finding (ICD-10, Rx Norm, CPT…) via the POST /Quippe/Coding/ChartMap API.
Translate a Portion of a Note
You may only be interested in translating a portion of the free text note into structured concepts or limiting it to concepts within a specific external vocabulary. In this case, we’ll just translate the diagnoses in the free text note.
API: /Quippe/TextRecognition/Recognize
Documentation: POST /Quippe/TextRecognition/Recognize
Parameters:
-
Text: Only send a portion or section of the note; ex: Assessment Section. -
ResolveFindings: true
Response:
Resources
API Documentation: POST /Quippe/TextRecognition/Recognize