From 25623d6c6a29a2da2c136efbe9f1be2132af3974 Mon Sep 17 00:00:00 2001 From: binliu Date: Thu, 17 Oct 2024 12:17:55 +0000 Subject: [PATCH] add properties file for backup Signed-off-by: binliu --- .../medical_imaging/operators/properties.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 operators/medical_imaging/operators/properties.json diff --git a/operators/medical_imaging/operators/properties.json b/operators/medical_imaging/operators/properties.json new file mode 100644 index 000000000..44c7807b6 --- /dev/null +++ b/operators/medical_imaging/operators/properties.json @@ -0,0 +1,53 @@ +{ + "train": { + "bundle_root": { + "description": "root path of the bundle.", + "required": true, + "id": "bundle_root" + }, + "device": { + "description": "target device to execute the bundle workflow.", + "required": true, + "id": "device" + }, + "dataflow": { + "description": "dataflow to execute the bundle workflow.", + "required": true, + "id": "dataflow" + } + }, + "infer": { + "bundle_root": { + "description": "root path of the bundle.", + "required": true, + "id": "bundle_root" + }, + "device": { + "description": "target device to execute the bundle workflow.", + "required": true, + "id": "device" + }, + "dataflow": { + "description": "dataflow to execute the bundle workflow.", + "required": true, + "id": "dataflow" + } + }, + "meta": { + "version": { + "description": "bundle version", + "required": true, + "id": "_meta_::version" + }, + "channel_def": { + "description": "channel definition for the prediction", + "required": false, + "id": "_meta_::network_data_format::outputs::pred::channel_def" + }, + "type": { + "description": "data type of the input image", + "required": true, + "id": "_meta_::network_data_format::outputs::pred::type" + } + } +} \ No newline at end of file