Add preprocess command to init

This commit is contained in:
mbsantiago 2025-05-01 07:15:35 +01:00
parent fdab0860fd
commit b819180656

View File

@ -1,6 +1,7 @@
from batdetect2.cli.base import cli
from batdetect2.cli.compat import detect
from batdetect2.cli.data import data
from batdetect2.cli.preprocess import preprocess
from batdetect2.cli.train import train
__all__ = [
@ -8,6 +9,7 @@ __all__ = [
"detect",
"data",
"train",
"preprocess",
]