nielsr HF Staff commited on
Commit
5553bea
·
verified ·
1 Parent(s): ed29006

Improve model card: add metadata and link paper

Browse files

Hi! I'm Niels from the Hugging Face community science team.

This PR improves the documentation for this model:
- Adds `pipeline_tag: image-segmentation` to the metadata for better discoverability.
- Links the repository to its associated research paper on Hugging Face Papers.
- Adds a brief summary of the model and its results based on the paper and GitHub README.

Feel free to merge if this looks good to you!

Files changed (1) hide show
  1. README.md +24 -1
README.md CHANGED
@@ -1,10 +1,33 @@
1
  ---
2
  license: mit
 
3
  ---
 
4
  # LaSSM: Efficient Semantic-Spatial Query Decoding via Local Aggregation and State Space Models for 3D Instance Segmentation
5
- [[code]](https://github.com/RayYoh/LaSSM)
 
 
 
 
 
 
 
 
 
 
 
6
  | Model | Benchmark | Num GPUs | mAP | AP50 | AP25 | Config | Tensorboard | Exp Record | Model |
7
  | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
8
  | LaSSM | ScanNet++ V2 Val | 4 | 29.1 | 43.5 | 51.6 | [Link](https://github.com/RayYoh/LaSSM/blob/main/configs/scannetpp/insseg-lassm-spunet-v2-3.py) | [Link](https://huggingface.co/RayYoh/LaSSM/tensorboard) | [Link](https://huggingface.co/RayYoh/LaSSM/raw/main/scannetpp-lassm-spunet-v2-3/train.log) | [Link](https://huggingface.co/RayYoh/LaSSM/blob/main/scannetpp-lassm-spunet-v2-3/model/model_best.pth) |
9
  | LaSSM | ScanNet Val | 4 | 58.4 | 78.1 | 86.1 | [Link](https://github.com/RayYoh/LaSSM/blob/main/configs/scannet/insseg-lassm-spunet-v2-3.py) | - | [Link](https://huggingface.co/RayYoh/LaSSM/raw/main/scannet-lassm-spunet-v2-3/train.log) | [Link](https://huggingface.co/RayYoh/LaSSM/blob/main/scannet-lassm-spunet-v2-3/model/model_best.pth) |
10
  | LaSSM | ScanNet200 Val | 4 | 29.3 | 39.2 | 44.5 | [Link](https://github.com/RayYoh/LaSSM/blob/main/configs/scannet200/insseg-lassm-minkunet-3.py) | - | [Link](https://huggingface.co/RayYoh/LaSSM/raw/main/scannet200-lassm-minkunet-3/train.log) | [Link](https://huggingface.co/RayYoh/LaSSM/blob/main/scannet200-lassm-minkunet-3/model/model_best.pth) |
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ pipeline_tag: image-segmentation
4
  ---
5
+
6
  # LaSSM: Efficient Semantic-Spatial Query Decoding via Local Aggregation and State Space Models for 3D Instance Segmentation
7
+
8
+ This repository contains the weights for **LaSSM**, a framework for efficient 3D scene instance segmentation from point clouds.
9
+
10
+ - **Paper:** [LaSSM: Efficient Semantic-Spatial Query Decoding via Local Aggregation and State Space Models for 3D Instance Segmentation](https://huggingface.co/papers/2602.11007)
11
+ - **Code:** [GitHub - RayYoh/LaSSM](https://github.com/RayYoh/LaSSM)
12
+
13
+ ## Description
14
+ LaSSM (Local Aggregation and State Space Models) prioritizes simplicity and efficiency in 3D instance segmentation. It introduces a hierarchical semantic-spatial query initializer and a coordinate-guided state space model (SSM) decoder. This design restricts the model to focus on geometrically coherent regions and uses a spatial dual-path SSM block to capture underlying dependencies within the query set, reducing redundant computation.
15
+
16
+ LaSSM ranks first on the ScanNet++ V2 leaderboard, outperforming previous state-of-the-art methods with significantly fewer FLOPs.
17
+
18
+ ## Trained Results
19
  | Model | Benchmark | Num GPUs | mAP | AP50 | AP25 | Config | Tensorboard | Exp Record | Model |
20
  | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
21
  | LaSSM | ScanNet++ V2 Val | 4 | 29.1 | 43.5 | 51.6 | [Link](https://github.com/RayYoh/LaSSM/blob/main/configs/scannetpp/insseg-lassm-spunet-v2-3.py) | [Link](https://huggingface.co/RayYoh/LaSSM/tensorboard) | [Link](https://huggingface.co/RayYoh/LaSSM/raw/main/scannetpp-lassm-spunet-v2-3/train.log) | [Link](https://huggingface.co/RayYoh/LaSSM/blob/main/scannetpp-lassm-spunet-v2-3/model/model_best.pth) |
22
  | LaSSM | ScanNet Val | 4 | 58.4 | 78.1 | 86.1 | [Link](https://github.com/RayYoh/LaSSM/blob/main/configs/scannet/insseg-lassm-spunet-v2-3.py) | - | [Link](https://huggingface.co/RayYoh/LaSSM/raw/main/scannet-lassm-spunet-v2-3/train.log) | [Link](https://huggingface.co/RayYoh/LaSSM/blob/main/scannet-lassm-spunet-v2-3/model/model_best.pth) |
23
  | LaSSM | ScanNet200 Val | 4 | 29.3 | 39.2 | 44.5 | [Link](https://github.com/RayYoh/LaSSM/blob/main/configs/scannet200/insseg-lassm-minkunet-3.py) | - | [Link](https://huggingface.co/RayYoh/LaSSM/raw/main/scannet200-lassm-minkunet-3/train.log) | [Link](https://huggingface.co/RayYoh/LaSSM/blob/main/scannet200-lassm-minkunet-3/model/model_best.pth) |
24
+
25
+ ## Citation
26
+ ```bibtex
27
+ @article{yao2025lassm,
28
+ title={LaSSM: Efficient Semantic-Spatial Query Decoding via Local Aggregation and State Space Models for 3D Instance Segmentation},
29
+ author={Yao, Lei and Wang, Yi and Yawen, Cui and Liu, Moyun and Chau, Lap-Pui},
30
+ journal={arXiv preprint arXiv:2602.11007},
31
+ year={2025}
32
+ }
33
+ ```