go-face icon indicating copy to clipboard operation
go-face copied to clipboard

** On entry to DGESVD parameter number 13 had an illegal value

Open agorman opened this issue 1 year ago • 0 comments

Does anyone know what might cause this error? I've included a minimal example and the versions for dependencies.

package main

import (
	"log"

	"github.com/Kagami/go-face"
)

func main() {
	_, err := face.NewRecognizer("model")
	if err != nil {
		log.Fatalf("Can't init face recognizer: %v", err)
	}
}
# go run main.go 
 ** On entry to DGESVD parameter number 13 had an illegal value

rocky linux 9.3

dlib-devel-19.24.2-2.el9.x86_64 blas-devel-3.9.0-10.el9.x86_64 lapack-devel-3.9.0-10.el9.x86_64 libjpeg-turbo-devel-2.0.90-7.el9.x86_64 atlas-devel-3.10.3-17.el9.x86_64

agorman avatar Jan 07 '25 19:01 agorman