justadudewhohacks / face-api.js

JavaScript API for face detection and face recognition in the browser and nodejs with tensorflow.js
MIT License
16.69k stars 3.71k forks source link

Unable to load models in asp. Net core project #843

Open qais-azam opened 2 years ago

qais-azam commented 2 years ago

The LoadFromUri method is returning 404 error. The reason is the models don't have any extension. Can you please tell me how to models in asp. Net core 5

alvonx commented 2 years ago

The LoadFromUri method is returning 404 error. The reason is the models don't have any extension. Can you please tell me how to models in asp. Net core 5

let modelsUrl = "https://raw.githubusercontent.com/justadudewhohacks/face-api.js/master/weights/"; faceapi.nets.tinyFaceDetector.loadFromUri(modelsUrl + 'tiny_face_detector_model-weights_manifest.json'), faceapi.nets.faceLandmark68Net.loadFromUri(modelsUrl + 'face_landmark_68_model-weights_manifest.json'), faceapi.nets.faceRecognitionNet.loadFromUri(modelsUrl + 'face_recognition_model-weights_manifest.json'), faceapi.nets.ssdMobilenetv1.loadFromUri(modelsUrl + 'ssd_mobilenetv1_model-weights_manifest.json')