Leon Sick
commited on
Commit
•
f746e84
1
Parent(s):
d0ccc5e
new description
Browse files
README.md
CHANGED
@@ -9,5 +9,4 @@ license: mit
|
|
9 |
suggested_hardware: t4-small
|
10 |
---
|
11 |
|
12 |
-
|
13 |
-
# Port 7860
|
|
|
9 |
suggested_hardware: t4-small
|
10 |
---
|
11 |
|
12 |
+
This is a demo of the CutS3D zero-shot model from the paper [CutS3D: Cutting Semantics in 3D for 2D Unsupervised Instance Segmentation](https://arxiv.org/abs/2411.16319).
|
|
app.py
CHANGED
@@ -7,7 +7,7 @@ import gradio as gr
|
|
7 |
from model import run_model
|
8 |
|
9 |
DESCRIPTION = '# [CutS3D](https://leonsick.github.io/cuts3d/): Cutting Semantics in 3D for 2D Unsupervised Instance Segmentation \n\n' \
|
10 |
-
'This is a demo for the CutS3D Zero-Shot model. The model is trained on ImageNet, initially with unsupervised pseudo-masks and then further with one round of self-training. The first prediction will likely be slow as the model is downloaded. Subsequent predictions will be faster. The template for this space was borrowed from the original CutLER space by [hysts](https://huggingface.co/hysts).
|
11 |
|
12 |
paths = sorted(pathlib.Path('demo_imgs').glob('*.jpg'))
|
13 |
|
|
|
7 |
from model import run_model
|
8 |
|
9 |
DESCRIPTION = '# [CutS3D](https://leonsick.github.io/cuts3d/): Cutting Semantics in 3D for 2D Unsupervised Instance Segmentation \n\n' \
|
10 |
+
'This is a demo for the CutS3D Zero-Shot model. The model is trained on ImageNet, initially with unsupervised pseudo-masks and then further with one round of self-training. The first prediction will likely be slow as the model is downloaded. Subsequent predictions will be faster. The template for this space was borrowed from the original CutLER space by [hysts](https://huggingface.co/hysts).' \
|
11 |
|
12 |
paths = sorted(pathlib.Path('demo_imgs').glob('*.jpg'))
|
13 |
|