bdck commited on
Commit
9d8d475
·
verified ·
1 Parent(s): 12087e5

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # Point-SAM: Promptable 3D Segmentation
2
 
3
  A clean, self-contained Python inference package for **Point-SAM** (ICLR 2025), extending SAM's promptable segmentation to 3D point clouds.
@@ -151,3 +155,23 @@ The default is `num_groups=1024, group_size=256` for the large model.
151
  ## License
152
 
153
  MIT (same as the original repository).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # Point-SAM: Promptable 3D Segmentation
6
 
7
  A clean, self-contained Python inference package for **Point-SAM** (ICLR 2025), extending SAM's promptable segmentation to 3D point clouds.
 
155
  ## License
156
 
157
  MIT (same as the original repository).
158
+
159
+ <!-- ml-intern-provenance -->
160
+ ## Generated by ML Intern
161
+
162
+ This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
163
+
164
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
165
+ - Source code: https://github.com/huggingface/ml-intern
166
+
167
+ ## Usage
168
+
169
+ ```python
170
+ from transformers import AutoModelForCausalLM, AutoTokenizer
171
+
172
+ model_id = "bdck/point-sam-inference"
173
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
174
+ model = AutoModelForCausalLM.from_pretrained(model_id)
175
+ ```
176
+
177
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.