renamed bo to samplers

This commit is contained in:
2026-08-18 10:34:15 +09:00
parent caa4ebd962
commit 2a4a81a57d
6 changed files with 16 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
from .base import Sampler
from .random import RandomSampler
from .sobo import SOBOSampler
samplers = {
'sobo': SOBOSampler,
'random': RandomSampler,
}