Spaces:
Paused
Paused
maybe reduce zero-gpu quota
Browse files
README.md
CHANGED
|
@@ -7,7 +7,6 @@ sdk: gradio
|
|
| 7 |
sdk_version: 4.44.1
|
| 8 |
pinned: true
|
| 9 |
license: mit
|
| 10 |
-
suggested_hardware: a10g-small
|
| 11 |
short_description: PPSurf converting point clouds to meshes
|
| 12 |
models:
|
| 13 |
- https://huggingface.co/perler/ppsurf
|
|
|
|
| 7 |
sdk_version: 4.44.1
|
| 8 |
pinned: true
|
| 9 |
license: mit
|
|
|
|
| 10 |
short_description: PPSurf converting point clouds to meshes
|
| 11 |
models:
|
| 12 |
- https://huggingface.co/perler/ppsurf
|
app.py
CHANGED
|
@@ -11,7 +11,7 @@ import gradio as gr
|
|
| 11 |
import spaces
|
| 12 |
|
| 13 |
|
| 14 |
-
@spaces.GPU(duration=60 * 3)
|
| 15 |
def run_on_gpu(input_point_cloud: gr.utils.NamedString,
|
| 16 |
gen_resolution_global: int,
|
| 17 |
padding_factor: float,
|
|
|
|
| 11 |
import spaces
|
| 12 |
|
| 13 |
|
| 14 |
+
@spaces.GPU(duration=60) # * 3)
|
| 15 |
def run_on_gpu(input_point_cloud: gr.utils.NamedString,
|
| 16 |
gen_resolution_global: int,
|
| 17 |
padding_factor: float,
|