mathieuserr egrandgi commited on
Commit
21543d3
·
verified ·
1 Parent(s): 4153259

add citation (#5)

Browse files

- add citation (113085a164589beecc6cb58c3e4412c526cf2587)


Co-authored-by: Emma Grandgirard <egrandgi@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +18 -5
README.md CHANGED
@@ -42,12 +42,25 @@ dl = DataLoader(ds, batch_size=4, shuffle=True, num_workers=0)
42
  noisy, clean, names = next(iter(dl))
43
  ```
44
 
 
45
 
46
- ## Publication
47
-
48
- 📄 Preprint available on [bioRxiv](https://www.biorxiv.org/content/10.1101/2025.10.08.681092v1).
49
 
50
 
51
- ## 🙏 Acknowledgements
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
- This work was developed within the RESTORE (INSERM, Université de Toulouse) and IRIT (Université de Toulouse) laboratories, as part of the ANITI program and the CALM research chair.
 
42
  noisy, clean, names = next(iter(dl))
43
  ```
44
 
45
+ ## 🙏 Acknowledgements
46
 
47
+ This work was developed within the RESTORE (INSERM, Université de Toulouse) and IRIT (Université de Toulouse) laboratories, as part of the ANITI program and the CALM research chair.
 
 
48
 
49
 
50
+ ## 📄 Citation
51
+ If you use NucGen3D as part of your workflow in a scientific publication, please consider citing the [paper](https://www.biorxiv.org/content/10.1101/2025.10.08.681092v1):
52
+ ```
53
+ @article {Grandgirard2025.10.08.681092,
54
+ author = {Grandgirard, Emma and Dmitrasinovic, Theotime and Barreau, Corinne and Sengenes, Coralie and Serrurier, Mathieu},
55
+ title = {NUCGEN3D: A synthetic framework for large-scale 3D nuclear segmentation with open-source training data and models},
56
+ elocation-id = {2025.10.08.681092},
57
+ year = {2025},
58
+ doi = {10.1101/2025.10.08.681092},
59
+ publisher = {Cold Spring Harbor Laboratory},
60
+ abstract = {Robust nuclear segmentation in 3D microscopy images is a critical yet unresolved challenge in quantitative cell biology, hindered by the scarcity and variability of annotated volumetric datasets. Because such data are difficult to obtain, most state-of-the-art approaches, including Cellpose, segment individual 2D slices and then heuristically reconstruct 3D volumes, thereby losing critical spatial context. Our analysis of human expert annotator performance confirms that ignoring 3D context introduces substantial variability in nuclear detection and annotation. While a few 3D models have been trained on small or toy datasets, no large-scale, openly available resource currently exists to enable robust training of high-capacity 3D segmentation networks. To address this, we present NucGen3D, a customizable simulation framework that generates large-scale, annotated 3D microscopy datasets from limited 2D input, specifically the 2018 Data Science Bowl dataset. NucGen3D produces realistic 3D volumes across diverse biological and imaging scenarios, including variations in nuclear morphology, spatial arrangement, acquisition artifacts, and imaging noise. Using this synthetic data, we trained two models from scratch: a 2D convolutional neural network under Cellpose-like conditions, and a fully 3D convolutional model that extends the 2D settings. We evaluated both on a challenging, independent real-world dataset with complex nuclear architectures. Both models, especially the 3D model, consistently outperformed state-of-the-art methods, including those trained on larger annotated datasets or based on more complex architectures. These results demonstrate that synthetic data can effectively substitute for real 3D annotations in training performing models at scale. To promote reproducibility and further research, we release both the NucGen3D framework and the fully trained 3D segmentation model as open source, making this the first end-to-end open resource for large-scale 3D nuclear segmentation.Competing Interest StatementThe authors have declared no competing interest.ANR, ANR-24-INBS-0005 FBI BIOGEN, ANR-18-EURE-0003, ANR-19-PI3A-0004AFM Telethon, 23263, 28950},
61
+ URL = {https://www.biorxiv.org/content/early/2025/10/08/2025.10.08.681092},
62
+ eprint = {https://www.biorxiv.org/content/early/2025/10/08/2025.10.08.681092.full.pdf},
63
+ journal = {bioRxiv}
64
+ }
65
+ ```
66