--- title: deepflash2 keywords: fastai sidebar: home_sidebar summary: "A deep learning pipeline for segmentation of fluorescent labels in microscopy images." description: "A deep learning pipeline for segmentation of fluorescent labels in microscopy images." nb_path: "nbs/deepflash2.ipynb" ---
#@markdown Please run this cell to get started.
try:
import deepflash2
except ImportError:
!pip install -Uqq deepflash2
from deepflash2.gui import GUI, _connect_to_drive
%xmode Plain
path=_connect_to_drive()
#@markdown Start UI. If something goes wrong, click
#@markdown Click "Runtime" -> "Factory Reset Runtime" (on Colab) or
#@markdown "Kernel" -> "Restart Kernel" (Jupyter) and start over!
t = GUI(path);
try:
while True: pass
except:
pass