jfaustin's picture
add dockerfile and folding studio cli
44459bb
raw
history blame contribute delete
247 Bytes
"""Import predict methods."""
from .batch_predict import batch_prediction, batch_prediction_from_file
from .simple_predict import simple_prediction
__all__ = [
"batch_prediction",
"batch_prediction_from_file",
"simple_prediction",
]