Instructions to use RationAI/LSP-DETR with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RationAI/LSP-DETR with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-segmentation", model="RationAI/LSP-DETR", trust_remote_code=True)# Load model directly from transformers import AutoModelForObjectDetection model = AutoModelForObjectDetection.from_pretrained("RationAI/LSP-DETR", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,7 +19,7 @@ Matěj Pekár, Vít Musil, Rudolf Nenutil, Petr Holub, Tomáš Brázdil
|
|
| 19 |
|
| 20 |
LSP-DETR (Local Star Polygon DEtection TRansformer) is a lightweight, efficient, and end-to-end deep learning model for nuclei instance segmentation in histopathological images. It combines a DETR-based transformer decoder with star-convex polygon shape descriptors to enable accurate and fast segmentation without complex post-processing.
|
| 21 |
|
| 22 |
-
|
| 23 |
|
| 24 |
|
| 25 |
```python
|
|
|
|
| 19 |
|
| 20 |
LSP-DETR (Local Star Polygon DEtection TRansformer) is a lightweight, efficient, and end-to-end deep learning model for nuclei instance segmentation in histopathological images. It combines a DETR-based transformer decoder with star-convex polygon shape descriptors to enable accurate and fast segmentation without complex post-processing.
|
| 21 |
|
| 22 |
+
NOTE: This checkpoint was pretrained on the complete PanNuke dataset without class labels. This configuration prioritizes maximum recall, making it ideal for robust nucleus localization.
|
| 23 |
|
| 24 |
|
| 25 |
```python
|