#First we have to import libraries #Think of libraries as "pre-written programs" that help us accelerate what we do in Python #Gradio is a web interface library for deploying machine learning models import gradio as gr #Pickle is a library that lets us work with machine learning models, which in Python are typically in a "pickle" file format import pickle #Orange is the Python library used by... well, Orange! from Orange.data import *