Skip to content

Tutorial: Creating your own Deepgrow App

Vishwesh edited this page Jun 27, 2021 · 19 revisions

The simplest way to start off creating your own app is to clone a copy of any one of the sample-apps and then edit your way through. The below article will cover guidelines on what to modify for a smooth app creation experience.

We will be using the Deepgrow Spleen App as an example.

Line 20-39: These define the network structure and download a set of pre-trained weights for good initialization for training. They can be disabled by commenting out Line 67: resources = [(self.data[k]["path"][0], self.data[k]["url"]) for k in self.data.keys()]

However, we recommend to not disable it as a set of pre-trained weights allows for faster training, quicker convergence and better performance.

Both the models Deepgrow 2D & 3D have a specific input model size. For CT, Deepgrow 2D is not known have any effects with the model input size yet if the user wants they can modify it as per their need on Line 57.

For Deepgrow 3D a similar modification can be made at Line 45: model_size=(128, 192, 192)