@nodify_at/hailo.js
Version:
High-performance Node.js bindings for Hailo AI acceleration processors (NPU). Run neural network inference with hardware acceleration on Hailo-8 devices.
15 lines • 415 B
JavaScript
/**
* Public TypeScript type definitions for Hailo.js
* Re-exports and extends native addon types with additional utilities
*/
/**
* Supported model types
*/
export var ModelType;
(function (ModelType) {
ModelType["YOLO"] = "yolo";
ModelType["YOLOX"] = "yolox";
ModelType["YOLOV8"] = "yolov8";
ModelType["CUSTOM"] = "custom";
})(ModelType || (ModelType = {}));
//# sourceMappingURL=types.js.map