File size: 247 Bytes
44459bb |
1 2 3 4 5 6 7 8 9 10 11 |
"""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",
]
|