diff --git a/gradio/interface.py b/gradio/interface.py index 05de99e31e..5fcaf5f953 100644 --- a/gradio/interface.py +++ b/gradio/interface.py @@ -135,8 +135,7 @@ class Interface: Method that calls the relevant method of the model object to make a prediction. :param preprocessed_input: the preprocessed input returned by the input interface """ - - # print(preprocessed_input.shape) +# print(preprocessed_input.shape) if self.model_type == "sklearn": return self.model_obj.predict(preprocessed_input) elif self.model_type == "keras":