Skip to content

Instantly share code, notes, and snippets.

@Sachin-crypto
Created November 14, 2022 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sachin-crypto/50b2792e1b7d1f9995527e974d08e1c9 to your computer and use it in GitHub Desktop.
Save Sachin-crypto/50b2792e1b7d1f9995527e974d08e1c9 to your computer and use it in GitHub Desktop.
{% extends "layout.html"%}
{% block title %}
Prediction - Hand Sign Digit Recognition
{% endblock %}
{% block content %}
<div class="container py-5">
<header class="text-white text-center">
<h1 class="display-4">Hand Sign Digit Language Detection</h1>
<p class="lead mb-5">You will see the prediction of the input image.</p>
</header>
<header class="text-white text-center">
<h1 class="display-5">Prediction</h1>
{% if predictions %}
<h2 class="display-4 text-dark font-weight-bold">{{predictions}}</h2>
{% else %}
<h2 class="display-4 text-dark font-weight-bold">{{err}}</h2>
{% endif %}
</header>
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment