123456789101112131415161718192021222324252627282930 |
- {% extends "layout.html" %}
- {% block body %}
- <form action="{{ url_for('predict') }}" method="POST"
- enctype="multipart/form-data">
- <div class="form-group">
- <label for="model">Select Model To Use:</label>
- <select class="form-control" name="model" id="model">
- <option value="inception">Inception V3</option>
- <option value="resnet">Resnet50 (using bottleneck features as
- input)</option>
- </select>
- <label for="fileupload">Select Files:</label>
- <input type="file" name="file[]" multiple="" id='fileupload'>
- <p class="help-block">Image types only. Image will be converted to
- proper shape.<br/>Also allow for time for image upload and predictions.
- </p>
- </br></br>
- <label class="btn btn-primary">
- Submit <input type="submit" value="Upload" style="display:
- none;">
- </label>
- </div>
- </form>
- {% endblock %}
- {% block nav_buttons %}
- <a class="btn btn-default navbar-btn" href='{{ url_for('index')}}'>Start Over</a>
- {% endblock %}
|