gradio 2.0.3

This commit is contained in:
Abubakar Abid 2021-06-14 17:00:59 -05:00
parent bc69139099
commit 7ef3e815d1
2 changed files with 9 additions and 8 deletions

View File

@ -549,13 +549,14 @@ class Interface:
def integrate(self, comet_ml=None):
comet_ml.log_other("Created from", "Gradio")
if self.share_url is not None:
comet_ml.log_text("gradio: " + self.share_url)
comet_ml.end()
else:
comet_ml.log_text("gradio: " + self.local_url)
comet_ml.end()
if comet_ml is not None:
comet_ml.log_other("Created from", "Gradio")
if self.share_url is not None:
comet_ml.log_text("gradio: " + self.share_url)
comet_ml.end()
else:
comet_ml.log_text("gradio: " + self.local_url)
comet_ml.end()
def show_tip(io):

View File

@ -5,7 +5,7 @@ except ImportError:
setup(
name='gradio',
version='2.0.2',
version='2.0.3',
include_package_data=True,
description='Python library for easily interacting with trained machine learning models',
author='Abubakar Abid',