• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

imodpasteur/ANNA-PALM: Accelerating Single Molecule Localization Microscopy with ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

imodpasteur/ANNA-PALM

开源软件地址(OpenSource Url):

https://github.com/imodpasteur/ANNA-PALM

开源编程语言(OpenSource Language):

Python 100.0%

开源软件介绍(OpenSource Introduction):

ANNA-PALM

Accelerating Single Molecule Localization Microscopy with Deep Learning.

For more details, please checkout https://annapalm.pasteur.fr/

TRY ANNA-PALM WITH IMJOY.IO

  1. Download and Install the ImJoy App;
  2. Install the ANNA-PALM plugin;
  3. Use it from the ImJoy plugin menu.

MANUAL INSTALLATION

ANNA-PALM has the following dependencies:

  • Python 3.6
  • Pillow
  • numpy
  • scipy
  • matplotlib
  • scikit-image
  • tensorflow==1.12.0
  • imreg_dft
  • pytest

The recommended way to get python3.6 is to use ANACONDA, go the website: https://www.continuum.io/downloads , and download Anaconda(Python 3.6), then install it.

The next step is to install the dependencies, mainly for tensorflow. Open a terminal, switch to the ANNA-PALM source code folder.

git clone https://github.com/imodpasteur/ANNA-PALM
cd ANNA-PALM

Create a virtual environment:

conda create -n anna-palm python=3.6.8 -y
conda activate anna-palm

For a quick test running on CPU or you don't have a cuda compatible GPU, run the following command:

pip install -r requirements.txt

Or if you have an tensorflow compatible GPU, and you want to use GPU for training, run the following command:

conda install cudatoolkit=9.0 cudnn -y
pip install -r requirements-gpu.txt

To test your installation, you can run the following code:

cd ANNA-PALM
python run.py --workdir=./tmp_test --ngf=1 --ndf=1

Once it starts to print . without any error, you can terminate it with CTRL-C, otherwise, it will take a long time to actually finish the training.

You can also run the following command to see all the arguments.

# for example
python run.py --help

ImageJ plugin

Besides the python code, an ImageJ plugin for applying trained model can be downloaded from the Anet-ImageJ repository.

USAGE

Train with simulated images

Two types of simulated images are available, simulated microtubules and nuclear pores.

You can train a new ANNA-PALM model with the following command:

python run.py --workdir=./training_simulated_exp1 --phase=train

Train with localization tables

  • In order to train an ANNA-PALM model with your own data, you need to prepare your localization tables. Currently, the script requires csv tables produced with ThunderSTORM. If you don't have any data for now, you can download our microtubule data we used in the paper.
  • Create a folder as your working directory(for example training_workdir_exp1), then create a folder named train inside training_workdir_exp1.
  • Then, place all your csv files into the train folder. Optionally, you could reserve one or two files for validation purpose. In such case, you can create another folder named test and place your validation csv files into it. If you have widefield images, you need to export them as .png images (16bit or 8bit grayscale), and then rename then such they will have the same name as the corresponding csv file except the .png extension.
  • Now run the following command to train on your data:
python run_csv.py --workdir=./training_workdir_exp1 --phase=train

With the above code, it will first render histogram images with a subset of the full frame of each csv file. The rendered images will be saved into __images__. You need to check the files inside this folder is rendered correctly. You should be able to see images starts with A_ and B_, they will be used as input and target image when training your A-net. If you have your widefield image placed correctly, you should also see images starts with LR_. You should check all these images with the help of contrast stretching in ImageJ for example.

When it's done, the training will start. It will produce some interim images in the outputs folder which you can used to check whether the training goes well. The model will be saved into __model__ after a certain epochs of training. Please also notice that If you are running on a cpu, it can be very slow.

Train with other type of images

You can also use ANNA-PALM to work with other type of images which are not localization table. In such case, follow these steps:

  • Create a folder as your working directory(for example training_workdir_exp2) , inside your training_workdir_exp2, you need to create a folder named train and test (optional).

  • Then, place all your images into the train folder, optionally place a few images into test. Similar to what you would get in __images__ folder from the above example. Images must organized within subfolders, one subfolder contains files for one sample(the same field of view), labeled with A_, B_ and/or LR_.

  • Now run the following command as in the above example:

python run_img.py --workdir=./training_workdir_exp2 --phase=train

Monitor your training

If you want to monitor the training progress, you should use the tensorboard interface which provides plots in the browser. In order to launch that, type the following command:

cd training_workdir_exp1/__model__
tensorboard --logdir=./

Then you can open your browser, and go to http://localhost:6006 to see the loss and outputs etc. At the begining, you will only see the A-net graph. As the training goes, you will see a tab with loss curve etc.

Pretrained models

Here you can find 3 pretrained models: https://www.dropbox.com/sh/dc5l64n7apsgjdo/AABWH9PpfPHAzpbG8zwalIHZa?dl=0

Do prediction with trained model

Specify the trained model directory with load_dir and use phase=test to switch to testing mode.

mkdir test_workdir_exp1
python run.py --workdir=./test_workdir_exp1 --load_dir=./training_simulated_exp1 --phase=test

Start a training from a previously trained model

use load_dir to specify the directory where your trained model is stored, and add continue_train.

mkdir test_workdir_exp1
python run.py --workdir=./test_workdir_exp1 --load_dir=./training_simulated_exp1 --continue_train --phase=train

Freeze trained models

In order to use your trained model in the Anet-ImageJ plugin, you need to first train a model, and then run the following script to get a frozen model:

python freeze.py --workdir=./frozen_model_sim --load_dir=./results/simulated_model
  • use --load_dir to specify the directory contains your trained model
  • use --workdir to specify where you want to save the exported directory, you will find the frozen model file named tensorflow_model.pb

Then you can copy the .pb file into ImageJ according to the instructions described in Anet-ImageJ.

License

There are two licenses for different part of the ANNA-PALM code: a MIT license is applied to files inside the AnetLib folder. A Non-commercial License Agreement is applied to all other files.

Citation

Please cite our paper: Ouyang et al., Nat. Biotechnol. 2018, doi:10.1038/nbt.4106

FAQ

  • How to train faster? You will need tensorflow compatible GPU, and setup the corresponding drivers and pacakges.

The other option is to reduce the size of the current neural network, you can add --ngf=16 --ndf=16 to your command, or add the following options in your script:

opt.ngf = 16 # this is the base number of filters for the generator, default value: 64
opt.ndf = 16 # this is the base number of filters for the discriminator, default value: 64



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap