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
This example integration may be modified to fit any existing MONAI app, however, there may be caveats.
138
+
This example integration may be modified to fit any existing MONAI app by tailoring the files within the `app/` directory, however, there may be caveats.
140
139
141
140
Nuance PIN requires all artifacts present in the output folder to be also added into the `resultManifest.json` output file
142
141
to consider the run successful. To see what this means in practical terms, check the `resultManifest.json` output from the
143
142
example app we ran the in previous sections. You will notice an entry in `resultManifest.json` that corresponds to the DICOM
@@ -153,17 +152,16 @@ SEG output generated by the underlying MONAI app
153
152
{
154
153
"documentType": "application/dicom",
155
154
"groupCode": "default",
156
-
"name": "dicom_seg-DICOMSEG.dcm",
155
+
"name": "gsps.dcm",
157
156
"trackingUids": []
158
157
}
159
158
]
160
159
}
161
160
]
162
161
},
163
162
```
164
-
This entry is generated by `app_wrapper.py`, which takes care of adding any DICOM present in the output folder in the `resultManifest.json`
165
-
to ensure that existing MONAI apps complete successfully when deployed in Nuance. In general, however, the developer may need to tailor some
166
-
of the code in `app_wrapper.py` to provide more insight to Nuance's network, such as adding findings, conclusions, etc. and generating more insight
163
+
This entry is generated automatically by Nuance's `ai_service` library as a result of uploading the DICOM GSPS object in `app/post_inference_ops.py`.
164
+
In general, however, the developer may need to tailor some of the code in `app_wrapper.py` to provide more insight to Nuance's network, such as adding findings, conclusions, etc. and generating more insight
167
165
using SNOMED codes. All of this is handled within the Nuance PIN SDK libraries - for more information please consult Nuance PIN [documentation](https://www.nuance.com/healthcare/diagnostics-solutions/precision-imaging-network.html).
168
166
169
167
In simpler cases, the developer will need to place their code and model under `nuance_pin`. Placing the model under `model` is optional as the model may be placed
0 commit comments