Update interface.py

This commit is contained in:
Abubakar Abid 2021-12-16 10:29:31 -06:00 committed by GitHub
parent 0a8e2e2992
commit 598b28ba3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,11 +3,6 @@ This is the core file in the `gradio` package, and defines the Interface class,
interface using the input and output types.
"""
from gradio import networking, strings, utils, encryptor, queue
from gradio.inputs import get_input_instance
from gradio.outputs import get_output_instance
from gradio.interpretation import quantify_difference_in_label, get_regression_or_classification_value
from gradio.external import load_interface
import copy
import csv
import getpass
@ -23,6 +18,11 @@ import time
import warnings
import webbrowser
import weakref
from gradio import networking, strings, utils, encryptor, queue
from gradio.inputs import get_input_instance
from gradio.outputs import get_output_instance
from gradio.interpretation import quantify_difference_in_label, get_regression_or_classification_value
from gradio.external import load_interface
ip_address = networking.get_local_ip_address()