13 lines
344 B
HTML
13 lines
344 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="Vosklet.js"></script>
|
|
<script>
|
|
window.onload = async () => {
|
|
const module = await loadVosklet();
|
|
const model = await module.makeModel("../usage/en-model.tgz","model","ID");
|
|
const recognizer = await module.makeRecognizer()
|
|
}
|
|
</script>
|
|
</head>
|
|
</html> |