Duplicated fromΒ JeffreyXiang/TRELLIS
db6a3b7 a6bbecf db6a3b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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