You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-health-insights/radiology-insights/model-configuration.md
+44-15Lines changed: 44 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,16 @@ To interact with the Radiology Insights model, you can provide several model con
28
28
},
29
29
"findingOptions": {
30
30
"provideFocusedSentenceEvidence": false
31
+
},
32
+
"GuidanceOptions": {
33
+
"showGuidanceInHistory": true
34
+
},
35
+
"QualityMeasureOptions": {
36
+
"measureTypes": [
37
+
"mips364",
38
+
"mips360",
39
+
"mips436"
40
+
]
31
41
}
32
42
},
33
43
"locale": "en-US",
@@ -52,6 +62,8 @@ false | No Evidence is returned
52
62
- type: boolean
53
63
- Provide a single focused sentence as evidence for the finding, default is true.
54
64
65
+
See [finding inference](finding-inference.md)
66
+
55
67
**FollowupRecommendationOptions**
56
68
- includeRecommendationsWithNoSpecifiedModality
57
69
- type: boolean
@@ -66,6 +78,22 @@ false | No Evidence is returned
66
78
- type: boolean
67
79
- description: Provide a single focused sentence as evidence for the recommendation, default is true.
68
80
81
+
See [recommendation inference](recommendation-inference.md)
82
+
83
+
**GuidanceOptions**
84
+
- showGuidanceInHistory:
85
+
- type: boolean
86
+
- description: If this is true, also show guidance from a clinical history section, i.e. if the first token of the associated finding's clinical indicator is in this section. Default is false.
87
+
88
+
See [guidance inference](guidance-inference.md)
89
+
90
+
**QualityMeasureOptions**
91
+
- measureTypes:
92
+
- type: array of strings
93
+
- description: the quality measure kinds that a result will be made for.
94
+
The possible values of this array are: "mips76", "mips147", "mips195", "mips360", "mips364", "mips405", "mips406", "mips436", "mips145", "acrad36", "acrad37", "acrad38", "acrad39", "acrad40", "acrad41", "acrad42", "mednax55", "msn13", "msn15", "qmm26", "qmm17", "qmm18", "qmm19". (These values can also be found in the open api specification under "QualityMeasureType".)
95
+
96
+
See [quality measure inference](quality-measure-inference.md)
69
97
70
98
IncludeEvidence
71
99
@@ -78,56 +106,57 @@ IncludeEvidence
78
106
## Examples
79
107
80
108
81
-
**Example 1**
109
+
**Example 1 (with recommendation inferences)**
82
110
83
111
followupRecommendationOptions:
84
112
- includeRecommendationsWithNoSpecifiedModality is true
85
-
- includeRecommendationsInReferences are false
113
+
- includeRecommendationsInReferences is false
86
114
- provideFocusedSentenceEvidence for recommendations is false
87
115
116
+
The options for quality measures and guidance aren't set, because findings and quality measures aren't in the inference types for this document.
117
+
88
118
89
119
90
120
As a result:
91
121
92
122
The model checks for follow-up recommendations with a specified modality (such as DIAGNOSTIC ULTRASONOGRAPHY)
93
123
and for recommendations with no specific radiologic modality (such as RADIOGRAPHIC IMAGING PROCEDURE).
94
-
The model does not check for a recommendation in a guideline.
95
-
The model does not provide a single focused sentence as evidence for the recommendation.
124
+
The model doesn't check for a recommendation in a guideline.
125
+
The model doesn't provide a single focused sentence as evidence for the recommendations.
96
126
97
127
98
128
- includeEvidence is true. (The model includes evidence for all inferences.)
0 commit comments