Views
No views yet
git clone https://github.com/krentzd/ai4ab.git and navigate to the model folder. Models trained on different sets of plates, imaging channels or bacterial species can then be loaded as follows:1from models import AvgPoolCNN
2
3model = AvgPoolCNN.from_pretrained(
4 species='Ecoli', # Select bacterial species
5 channels=['BF', 'Hoechst'], # Select imaging channels
6 replicate=2, # Model replicate (different training/testing plates)
7 )E. coli ( Ecoli ) | K. pneumoniae ( Kpneumoniae ) | |
|---|---|---|
Brightfield ( BF ) | ✓ | ✓ |
FM4-64FX ( FM4 ) | ✓ | |
Hoechst 3334 ( Hoechst ) | ✓ | |
Brightfield ( BF )FM4-64FX ( FM4 ) | ✓ | |
Brightfield ( BF )Hoechst 3334 ( Hoechst ) | ✓ | |
FM4-64FX ( FM4 )Hoechst 3334 ( Hoechst ) | ✓ | |
Brightfield ( BF )FM4-64FX ( FM4 )Hoechst 3334 ( Hoechst ) | ✓ |
experiment='16bit'experiment='MoA'experiment='no-resize'experiment='no-data-aug'experiment argument as follows:1model = AvgPoolCNN.from_pretrained(
2 species='Ecoli',
3 channels=['BF'],
4 replicate=2,
5 experiment='MoA'
6 )
7