So, I’ve been trying to run this Deep Nipple algorithm which is an algorithm that detects the areola and nipple from images with very high precision. The core is a convolutional neural network that solves a typical AI segmentation problem.
The results seems to be very expressive. However I’m having a bad time trying to run it in a Jupyter Notebook Environment, and inside the documentation of DeepNipple there is just a simple “running tutorial” that gives the following command to be used in the terminal:
$ python base_deepnipple.py --mode seg --img_path PATH --show True
Since I’m relatively new in programming with this kind of problem, I wanted to ask what is the best method to use it on a Jupyter notebook? Should I just copy the content of base_deepnipple.py inside a notebook cell and run it?
Thank you all in advance!