Created
July 18, 2018 10:45
-
-
Save MattKovtun/c2969d6a11ae2ec9530f02456b7e29f5 to your computer and use it in GitHub Desktop.
This file contains 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
let model; | |
const modelURL = 'http://localhost:5000/model'; | |
const preview = document.getElementById("preview"); | |
const predictButton = document.getElementById("predict"); | |
const clearButton = document.getElementById("clear"); | |
const numberOfFiles = document.getElementById("number-of-files"); | |
const fileInput = document.getElementById('file'); | |
const predict = async (modelURL) => { | |
if (!model) model = await tf.loadModel(modelURL); | |
const files = fileInput.files; | |
[...files].map(async (img) => { | |
const data = new FormData(); | |
data.append('file', img); | |
const processedImage = await fetch("/api/prepare", | |
{ | |
method: 'POST', | |
body: data | |
}).then(response => { | |
return response.json(); | |
}).then(result => { | |
return tf.tensor2d(result['image']); | |
}); | |
// shape has to be the same as it was for training of the model | |
const prediction = model.predict(tf.reshape(processedImage, shape = [1, 28, 28, 1])); | |
const label = prediction.argMax(axis = 1).get([0]); | |
renderImageLabel(img, label); | |
}) | |
}; | |
const renderImageLabel = (img, label) => { | |
const reader = new FileReader(); | |
reader.onload = () => { | |
preview.innerHTML += `<div class="image-block"> | |
<img src="${reader.result}" class="image-block_loaded" id="source"/> | |
<h2 class="image-block__label">${label}</h2> | |
</div>`; | |
}; | |
reader.readAsDataURL(img); | |
}; | |
fileInput.addEventListener("change", () => numberOfFiles.innerHTML = "Selected " + fileInput.files.length + " files", false); | |
predictButton.addEventListener("click", () => predict(modelURL)); | |
clearButton.addEventListener("click", () => preview.innerHTML = ""); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment