dnm3d / trellis /pipelines /samplers /trellis_pipelines_samplers_base.py
geyik1's picture
Upload 174 files
111ba01 verified
raw
history blame
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