Files
face-detector/Makefile.toml
uttarayan21 ac8f1d01b4
Some checks failed
build / checks-build (push) Has been cancelled
build / codecov (push) Has been cancelled
docs / docs (push) Has been cancelled
build / checks-matrix (push) Has been cancelled
feat(detector): add CUDA support for ONNX face detection
2025-08-28 18:32:00 +05:30

39 lines
655 B
TOML

[tasks.convert]
dependencies = ["convert_facenet", "convert_retinaface"]
workspace = false
[tasks.convert_facenet]
command = "MNNConvert"
args = [
"-f",
"ONNX",
"--modelFile",
"models/facenet.onnx",
"--MNNModel",
"models/facenet.mnn",
"--fp16",
"--bizCode",
"MNN",
]
workspace = false
[tasks.convert_retinaface]
command = "MNNConvert"
args = [
"-f",
"ONNX",
"--modelFile",
"models/retinaface.onnx",
"--MNNModel",
"models/retinaface.mnn",
"--fp16",
"--bizCode",
"MNN",
]
workspace = false
[tasks.gui]
command = "cargo"
args = ["run", "--release", "--bin", "gui"]
workspace = false