Kacemath's picture
Deploy gradio movie revenue app with model and preprocessing
b490ee7
raw
history blame contribute delete
293 Bytes
"""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"]