nmi-val / softlearning / samplers / dummy_sampler.py
dummy_sampler.py
Raw
from .base_sampler import BaseSampler


class DummySampler(BaseSampler):
    def __init__(self, batch_size, max_path_length):
        super(DummySampler, self).__init__(
            max_path_length=max_path_length,
            min_pool_size=0,
            batch_size=batch_size)

    def sample(self):
        pass