Last active
November 28, 2019 22:29
-
-
Save aballah-chamakh/5fb32fcb79c4bd81a144fbc6bb890b68 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Inference list</tile> | |
</head> | |
<body> | |
{% for inference_obj in inference_objects %} | |
<div> | |
<img src='{{inference_obj.image.url}}' /> | |
<h3>Prediction => {{inference_obj.prediction}}</h3> | |
<hr/> | |
</div> | |
{% endfor %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment