9 lines
225 B
Python
9 lines
225 B
Python
from .policy import register
|
|
from .baselines import *
|
|
from .nbv import NextBestView
|
|
|
|
register("initial-view", InitialView)
|
|
register("top-view", TopView)
|
|
register("top-trajectory", TopTrajectory)
|
|
register("nbv", NextBestView)
|