This commit is contained in:
Abubakar Abid 2019-03-09 18:19:11 -08:00
parent 757eae6fd2
commit 15e4245359
14 changed files with 73 additions and 10 deletions

View File

@ -2,3 +2,6 @@ include gradio/static/*
include gradio/static/css/*
include gradio/static/js/*
include gradio/static/img/*
include gradio/templates/*
include gradio/templates/input/*
include gradio/templates/output/*

View File

@ -166,10 +166,15 @@ class Interface:
print("Model is running locally at: {}".format(path_to_server + networking.TEMPLATE_TEMP))
if share:
site_ngrok_url = networking.setup_ngrok(server_port, websocket_port, output_directory)
if self.verbose:
print("Model available publicly for 8 hours at: {}".format(
site_ngrok_url + '/' + networking.TEMPLATE_TEMP))
try:
site_ngrok_url = networking.setup_ngrok(server_port, websocket_port, output_directory)
if self.verbose:
print("Model available publicly for 8 hours at: {}".format(
site_ngrok_url + '/' + networking.TEMPLATE_TEMP))
except RuntimeError:
site_ngrok_url = None
if self.verbose:
print("Unable to create public link for interface, please check internet connection.")
else:
if self.verbose:
print("To create a public link, set `share=True` in the argument to `launch()`")

View File

@ -0,0 +1,12 @@
<div class="gradio input image_file">
<div class="role">Input</div>
<div class="input_image drop_mode">
<div class="input_caption">Drop Image Here<br>- or -<br>Click to Upload</div>
<img />
</div>
<input class="hidden_upload" type="file" accept="image/x-png,image/gif,image/jpeg" />
</div>
<link rel="stylesheet" href="https://fengyuanchen.github.io/cropper/css/cropper.css">
<script src="https://fengyuanchen.github.io/cropper/js/cropper.js"></script>
<script src="../static/js/interfaces/input/image_upload.js"></script>

View File

@ -0,0 +1,14 @@
<div class="gradio input sketchpad">
<div class="role">Input</div>
<div class="sketch_tools">
<div id="brush_1" size="8" class="brush"></div>
<div id="brush_2" size="16" class="brush selected"></div>
<div id="brush_3" size="24" class="brush"></div>
</div>
<div class="canvas_holder">
<canvas id="canvas"></canvas>
</div>
</div>
<script src="http://yiom.github.io/sketchpad/javascripts/sketchpad.js"></script>
<script src="../static/js/interfaces/input/sketchpad.js"></script>

View File

@ -0,0 +1,6 @@
<div class="gradio input text">
<div class="role">Input</div>
<textarea class="input_text" placeholder="Enter text here..."></textarea>
</div>
<script src="../static/js/interfaces/input/textbox.js"></script>

View File

@ -0,0 +1,7 @@
<div class="gradio output classifier">
<div class="role">Output</div>
<div class="output_class"></div>
<div class="confidence_intervals">
</div>
</div>
<script src="../static/js/interfaces/output/label.js"></script>

View File

@ -0,0 +1,6 @@
<div class="gradio output text">
<div class="role">Output</div>
<textarea readonly class="output_text"></textarea>
</div>
<script src="../static/js/interfaces/output/textbox.js"></script>

Binary file not shown.

BIN
dist/gradio-0.3.4.tar.gz vendored Normal file

Binary file not shown.

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: gradio
Version: 0.3.3
Version: 0.3.4
Summary: Python library for easily interacting with trained machine learning models
Home-page: https://github.com/abidlabs/gradio
Author: Abubakar Abid

View File

@ -25,6 +25,11 @@ gradio/static/img/webcam.png
gradio/static/js/all-io.js
gradio/static/js/utils.js
gradio/templates/base_template.html
gradio/templates/input/image_upload.html
gradio/templates/input/sketchpad.html
gradio/templates/input/textbox.html
gradio/templates/output/label.html
gradio/templates/output/textbox.html
test/test_inputs.py
test/test_interface.py
test/test_networking.py

View File

@ -166,10 +166,15 @@ class Interface:
print("Model is running locally at: {}".format(path_to_server + networking.TEMPLATE_TEMP))
if share:
site_ngrok_url = networking.setup_ngrok(server_port, websocket_port, output_directory)
if self.verbose:
print("Model available publicly for 8 hours at: {}".format(
site_ngrok_url + '/' + networking.TEMPLATE_TEMP))
try:
site_ngrok_url = networking.setup_ngrok(server_port, websocket_port, output_directory)
if self.verbose:
print("Model available publicly for 8 hours at: {}".format(
site_ngrok_url + '/' + networking.TEMPLATE_TEMP))
except RuntimeError:
site_ngrok_url = None
if self.verbose:
print("Unable to create public link for interface, please check internet connection.")
else:
if self.verbose:
print("To create a public link, set `share=True` in the argument to `launch()`")

View File

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