From 8baef0ef68c029022004cf980f9534c4d8cb90f4 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Mon, 25 Jul 2022 08:38:52 -0400 Subject: [PATCH] update links --- README.md | 2 +- demo/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 97eff20..59378c7 100644 --- a/README.md +++ b/README.md @@ -443,7 +443,7 @@ Build process uses `@vladmandic/build` module that creates optimized build for e This is updated **face-api.js** with latest available TensorFlow/JS as the original is not compatible with **tfjs 2.0+**. Forked from [face-api.js](https://github.com/justadudewhohacks/face-api.js) version **0.22.2** which was released on March 22nd, 2020 -Currently using **`TensorFlow/JS` 3.17.0** +Currently using **`TensorFlow/JS` 3.19.0** *Why?* I needed FaceAPI that does not cause version conflict with newer versions of TensorFlow And since original FaceAPI was open-source, I've released this version as well diff --git a/demo/index.js b/demo/index.js index 5d51e10..4c03ae8 100644 --- a/demo/index.js +++ b/demo/index.js @@ -108,7 +108,7 @@ async function main() { const params = new URLSearchParams(location.search); if (params.has('backend')) { const backend = params.get('backend'); - await faceapi.tf.setWasmPaths('https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-backend-wasm@3.17.0/dist/'); + await faceapi.tf.setWasmPaths('https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-backend-wasm@3.19.0/dist/'); log(`Chosen backend: ${backend}`); await faceapi.tf.setBackend(backend); } else {