遇见数据集

Supporting information for "Few-Shot Learning Enables Population-Scale Analysis of Leaf Traits in Populus trichocarpa"

收藏
Zenodo2023-10-02 更新2026-05-26 收录
数据链接:
官方服务:

资源简介:

<strong>Description</strong> In this work, we use few-shot learning to segment the body and vein architecture of <em>P. trichocarpa</em> leaves from high-resolution scans obtained in the UC Davis common garden. Leaf and vein segmentation are formulated as separate tasks, in which convolutional neural networks (CNNs) are used to iteratively expand partial segmentations until reaching stopping criteria. Our leaf and vein segmentation approaches use just 50 and 8 manually traced images for training, respectively, and are applied to a set of 2,634 top and bottom leaf scans. We show that both methods achieve high segmentation accuracy and retain biologically realistic features. The leaf and vein segmentations are compared against a U-Net baseline model, and subsequently used to extract 68 morphological traits using traditional open-source image processing tools, which are validated using real-world physical measurements. For a biological perspective, we perform a genome-wide association study using the "vein density" trait to discover novel genetic architectures associated with multiple physiological processes relating to leaf development and function. In addition to sharing all of the few-shot learning code, we are releasing all images, manual segmentations, model predictions, 68 extracted leaf phenotypes, and a new set of SNPs called against the v4 <em>P. trichocarpa</em> genome for 1,419 genotypes. <strong>Directories:</strong> <pre><code>Few-shot learning for p. trichocarpa leaf traits ├── data │ ├── genomes │ │ ├── Ptri_V4_Nisq1.[...].bed │ │ ├── Ptri_V4_Nisq1.[...].bim │ │ └── Ptri_V4_Nisq1.[...].fam │ ├── images │ │ └── *.jpeg │ ├── leaf_masks │ │ └── *.png │ ├── leaf_preds │ │ └── *.png │ ├── leaf_unet_preds │ │ └── *.png │ ├── results │ │ ├── digital_traits.tsv │ │ ├── gwas_results.csv │ │ ├── manual_traits.tsv │ │ ├── vein_density_blups.tsv │ │ └── vein_density_tps_adj.tsv │ ├── vein_bce_preds │ │ └── *.png │ ├── vein_bce_probs │ │ └── *.png │ ├── vein_fl_preds │ │ └── *.png │ ├── vein_fl_probs │ │ └── *.png │ ├── vein_masks │ │ └── *.png │ ├── vein_unet_bce_preds │ │ └── *.png │ ├── vein_unet_bce_probs │ │ └── *.png │ ├── vein_unet_fl_preds │ │ └── *.png │ ├── vein_unet_fl_probs │ │ └── *.png ├── figures │ └── *.png ├── logs │ ├── leaf_tracer_256.txt │ ├── leaf_unet_256.txt │ ├── vein_grower_bce_128.txt │ ├── vein_grower_fl_128.txt │ ├── vein_unet_bce_128.txt │ └── vein_unet_fl_128.txt ├── models │ ├── BuildCNN.py │ ├── BuildUNet.py │ ├── LeafTracer.py │ └── VeinGrower.py ├── notebooks │ ├── Figures.ipynb │ ├── GrowerInference.ipynb │ ├── GrowerTraining.ipynb │ ├── TracerInference.ipynb │ ├── TracerTraining.ipynb │ ├── UNetLeafSegmentation.ipynb │ └── UNetVeinSegmentation.ipynb ├── utils │ ├── GetLowestGPU.py │ ├── ImageLoader.py │ ├── LeafGenerator.py │ ├── ModelWrapperGenerator.py │ ├── TimeRemaining.py │ ├── TraceInitializer.py │ ├── UNetTileGenerator.py │ └── VeinGenerator.py └── weights ├── leaf_tracer_256_best_val_model.save ├── leaf_unet_256_best_val_model.save ├── vein_grower_bce_128_best_val_model.save ├── vein_grower_fl_128_best_val_model.save ├── vein_unet_bce_128_best_val_model.save └── vein_unet_fl_128_best_val_model.save </code></pre> <strong>Data:</strong> The <code>data</code> folder includes all images, ground truth segmentations, predicted segmentations, and extracted leaf traits. All images encode the sample ID in the file name by indicating the treatment, block, row, position, and leaf side, respectively. For example, the file, <code>C_1_1_2_bot.jpeg</code>, indicates the control treatment, block 1, row 1, position 2, and the bottom side of the leaf. Tabulated results include position IDs as well as the corresponding genotype IDs. The <code>images</code> folder includes the 2,906 high-resolution leaf scans taken in the field. The <code>leaf_masks</code> folder includes 50 ground truth segmentations used for training the leaf tracing algorithm. The <code>leaf_preds</code> folder includes the 2,906 predicted segmentations from the leaf tracing algorithm. The <code>leaf_unet_preds</code> folder includes the 2,906 predicted segmentations from the U-Net model for leaf segmentation. The <code>vein_masks</code> folder includes 8 ground truth segmentations used for training the vein growing algorithm. The <code>vein_*_preds</code> folder includes the 1,453 predicted segmentations from the vein growing algorithm, where * specifies the loss function (bce: binary cross-entropy, fl: focal loss). The <code>vein_*_probs</code> folder includes the 1,453 predicted probability maps from the vein growing algorithm before thresholding, where * specifies the loss function (bce: binary cross-entropy, fl: focal loss). The <code>vein_unet_*_preds</code> folder includes the 1,453 predicted segmentations from the U-Net model for vein segmentation, where * specifies the loss function (bce: binary cross-entropy, fl: focal loss). The <code>vein_unet_*_probs</code> folder includes the 1,453 predicted probability maps from the U-Net model for vein segmentation before thresholding, where * specifies the loss function (bce: binary cross-entropy, fl: focal loss). The <code>genomes</code> folder includes the set of SNPs called against the v4 <em>P. trichocarpa</em> genome for 1,419 genotypes with a README file detailing the steps taken. The <code>results</code> folder includes Raw values of the 68 predicted leaf traits in <code>digital_traits.tsv</code> Manually measured values of petiole length and width in <code>manual_traits.tsv</code> Thin plate spline (TPS) adjusted values of the vein density trait in <code>vein_density_tps_adj.tsv</code> Best linear unbiased prediction (BLUP) adjusted values of the vein density trait in <code>vein_density_blups.tsv</code> GWAS results for the vein density trait, including chromosome positions and corresponding P values, in <code>gwas_results.csv</code> <strong>Figures:</strong> The <code>figures</code> folder includes all figures and videos used in the manuscript. See <code>notebooks/Figures.ipynb</code> for the methods used to generate these figures. <strong>Logs:</strong> The <code>logs</code> folder includes logs of CNN convergence for the training and validation sets during model training for the leaf tracing CNN vein growing CNN, and U-Net models. The file names include the model, loss function (bce: binary cross-entropy, fl: focal loss), and size of the input window for each method (e.g., 128 for the vein growing CNN). <strong>Models:</strong> The <code>models</code> folder includes the CNN implementations in PyTorch as well as the leaf tracing and vein growing algorithms at inference time. <code>BuildCNN.py</code> defines the CNN architecture for leaf tracing or vein growing, with user-specified input shape, output shape, layers, and output activation functions. <code>BuildUNet.py</code> defines the U-Net architecture for leaf and vein segmentation, with user-specified input/output shape, layers, and output activation functions. <code>LeafTracer.py</code> defines the leaf tracing algorithm at inference time. <code>VeinGrower.py</code> defines the vein growing algorithm at inference time. <strong>Notebooks:</strong> The <code>notebooks</code> folder includes Jupyter notebooks used for model training, model inference, and figure generation. <code>Figures.ipynb</code> is used to generate all of the manuscript figures. <code>GrowerTraining.ipynb</code> is used to train the vein growing CNN. <code>GrowerInference.ipynb</code> is used to apply the vein growing algorithm to the 1,453 leaf bottom images. <code>TracerTraining.ipynb</code> is used to train the leaf tracing CNN. <code>TracerInference.ipynb</code> is used to apply the leaf tracing algorithm to the 2,906 leaf top and bottom images. <code>UNetLeafSegmentation.ipynb</code> is used to train and apply U-Net for leaf segmentation. <code>UNetVeinSegmentation.ipynb</code> is used to train and apply U-Net for vein segmentation. <strong>Utils:</strong> The <code>utils</code> folder includes utility scripts implemented in Python that assist in model training and inference. <code>ImageLoader.py</code> loads image/mask pairs for sampling training/validation tiles. <code>LeafGenerator.py</code> generates inputs/outputs for the leaf tracing CNN. <code>VeinGenerator.py</code> generates inputs/outputs for the vein growing CNN. <code>UNetTileGenerator.py</code> generates inputs/outputs for the U-Net model. <code>GetLowestGPU.py</code> identifies available GPUs using the <code>nvidia-smi</code> command and selects the one with lowest memory usage, if none available the device is set to CPU. <code>ModelWrapperGenerator.py</code> wraps the PyTorch CNN and data loaders with similar functionality to the Keras Model class in TensorFlow (e.g., model.fit(...)). <code>TimeRemaining.py</code> is used by the model wrapper to estimate remaining time left per epoch. <code>TraceInitializer.py</code> is used by the tracing algorithm at inference time to initialize the leaf trace using automatic thresholding. <strong>Weights:</strong> The <code>weights</code> folder includes the CNN parameters from the epoch resulting in the best validation error. The file names include the model, loss function (bce: binary cross-entropy, fl: focal loss), and size of the input window for each method (e.g., 128 for the vein growing CNN). The weights are loaded into the CNN models for inference. <strong>Citation:</strong> <pre><code>@article{ doi:10.34133/plantphenomics.0072, author = {John Lagergren and Mirko Pavicic and Hari B. Chhetri and Larry M. York and Doug Hyatt and David Kainer and Erica M. Rutter and Kevin Flores and Jack Bailey-Bale and Marie Klein and Gail Taylor and Daniel Jacobson and Jared Streich }, title = {Few-Shot Learning Enables Population-Scale Analysis of Leaf Traits in Populus trichocarpa}, journal = {Plant Phenomics}, volume = {0}, number = {ja}, pages = {}, year = {}, doi = {10.34133/plantphenomics.0072}, URL = {https://spj.science.org/doi/abs/10.34133/plantphenomics.0072}, eprint = {https://spj.science.org/doi/pdf/10.34133/plantphenomics.0072}, }</code></pre>

提供机构:
Zenodo
创建时间:
2023-05-11
二维码
社区交流群
二维码
科研交流群
商业服务