Stefano Bocconi
Stefano Bocconi
just cloned the repository, with tsc --version: 3.7.3 node --version: v13.3.0 ``` cd face-api.js/examples/examples-nodejs npm i ts-node faceDetection.ts ``` gives: ``` faceDetection.ts:1:26 - error TS2307: Cannot find module 'face-api.js'. 1...
My package.json is as currently available in the repository: ``` { "author": "justadudewhohacks", "license": "MIT", "dependencies": { "@tensorflow/tfjs-node": "1.4.0", "canvas": "^2.6.0", "face-api.js": "../../" } } ``` and the error does...
The solution was to first run ``` npm i && npm run-script build ``` in the root directory before trying to run the examples.
Thank you very much for this fix, is this fix also going to be included into the cuda versions, for example dgl-cu111?
Hi @MILK-BIOS, the error is because on ARM architectures such as MacOS M2 FBGEMM is not supported, so apparently you need to use `python tools/export.py --backend qnnpack`. BTW, I have...
Unfortunately the Mac M2 ARM is not well supported yet due to the fact that it is a new architecture. I had to do the following two changes to make...