File size: 1,033 Bytes
134d3b9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | {
"$schema": "https://huggingface.co/software-mansion/react-native-executorch-spec/resolve/main/config.schema.json",
"model": "blazeface",
"family": "blazeface",
"capabilities": [
"object-detection"
],
"backend": "xnnpack",
"license": "Apache-2.0",
"variants": [
{
"file": "blazeface_xnnpack_fp32.pte",
"precision": "fp32",
"quantized": false,
"default": true,
"methods": {
"forward": {
"inputs": [
{
"shape": [1, 3, 256, 256],
"dtype": "float32"
}
],
"outputs": [
{
"name": "boxes",
"shape": [896, 4],
"dtype": "float32"
},
{
"name": "scores",
"shape": [896],
"dtype": "float32"
},
{
"name": "keypoints",
"shape": [896, 6, 3],
"dtype": "float32"
}
]
}
}
}
]
}
|