crevelop's picture
feat: upload model files and gradio app
5e116f2 unverified
raw
history blame contribute delete
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