Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
omnipart
/
OmniPart
like
43
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8bdacdc
OmniPart
/
modules
/
part_synthesis
/
pipelines
/
samplers
/
base.py
omnipart
init
491eded
7 days ago
raw
Copy download link
history
blame
Safe
286 Bytes
from
typing
import
*
from
abc
import
ABC, abstractmethod
class
Sampler
(
ABC
):
"""
A base class for samplers.
"""
@abstractmethod
def
sample
(
self,
model,
**kwargs
):
"""
Sample from a model.
"""
pass