Chest X-ray Classification Pipeline

The Chest X-ray Classification pipeline is one of the reference pipelines provided with Clara Deploy SDK. A pre-trained model for classification of diseases from a chest x-ray 16-bit PNG image is used in the pipeline. This pipeline depends on the Clara Deploy CLI to send a PNG image and trigger a job.

Once the pipeline is started, the AI model classifies an input image and saves the output as a new image with the classification label with probability burnt-in on top of the image. The model supports 15 categories (‘Nodule’, ‘Mass’, ‘Distortion of Pulmonary Architecture’, ‘Pleural Based Mass’, ‘Granuloma’, ‘Fluid in Pleural Space’, ‘Right Hilar Abnormality’, ‘Left Hilar Abnormality’, ‘Major Atelectasis’, ‘Infiltrate’, ‘Scarring’, ‘Pleural Fibrosis’, ‘Bone/Soft Tissue Lesion’, ‘Cardiac Abnormality’, and ‘COPD’). The class categories with the probability are burnt to the upper left corner of the output image for top 3 categories. If the probability is high enough (0.5), the category is written out with red color, or yellow color is used. The name of each output file has the pattern “output-<original file name&gt;.png”. It also outputs a CSV file (“output-<original file name&gt;.csv”) including the input file path and top 3 classifications with probability (e.g., Granuloma:0.68,Nodule:0.22,COPD:0.02)

The output image can be downloaded by Clara CLI and viewed by any PNG image viewer such as GIMP.

The Chest X-ray Classification pipeline is defined in the Clara Deploy pipeline definition language. This pipeline utilizes built-in reference containers to construct the following operator:

  • The ai-app-chestxray operator performs AI inference against the NVIDIA TensorRT Inference server to generate an image for disease classifications from a chest x-ray image.

The following is the details of pipeline definition, with comments describing each operator’s functions as well as input and output.

Copy
Copied!
            

api-version: 0.3.0 name: chestxray-pipeline operators: - name: ai-app-chestxray description: Classifying Chest X-ray Images container: image: clara/ai-chestxray tag: latest input: - path: /input output: - path: /output services: - name: trtis container: image: nvcr.io/nvidia/tensorrtserver tag: 19.08-py3 command: ["trtserver", "--model-store=$(NVIDIA_CLARA_SERVICE_DATA_PATH)/models"] requests: gpu: 1 connections: http: - name: NVIDIA_CLARA_TRTISURI port: 8000

Please refer to the section <a href="/RunningReferencePipeline.html#run-reference-pipelines-using-local-input-files" target="_self">Run Reference Pipelines using Local Input Files</a> on How to run a Reference Pipeline.

© Copyright 2018-2019, NVIDIA Corporation. All rights reserved. Last updated on Feb 1, 2023.