Spaces:
Sleeping
Sleeping
File size: 293 Bytes
b490ee7 | 1 2 3 4 5 6 7 8 | """UI components for the movie revenue predictor."""
from components.inputs import create_input_form
from components.prediction import predict_revenue_from_form
from components.examples import get_example_data
__all__ = ["create_input_form", "predict_revenue_from_form", "get_example_data"]
|