diff --git a/advanced/protocoltemplates/advanced_annotation_benchmark/1.json b/advanced/protocoltemplates/advanced_annotation_benchmark/1.json new file mode 100644 index 0000000000000000000000000000000000000000..4f13bed19192517db39b139e3e0705f34b791f85 --- /dev/null +++ b/advanced/protocoltemplates/advanced_annotation_benchmark/1.json @@ -0,0 +1,14 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "image": "system/array_2d_uint8/1", + "vein_annotations": "system/array_2d_uint8/1", + "ROI_annotations": "system/array_2d_uint8/1", + "alignment_annotations": "system/array_1d_coordinates/1" + }, + "name": "annotations" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/advanced_face_antispoofing/1.json b/advanced/protocoltemplates/advanced_face_antispoofing/1.json new file mode 100644 index 0000000000000000000000000000000000000000..444c99b05cadb8a1cb46686bb4dbf1d15bc435d2 --- /dev/null +++ b/advanced/protocoltemplates/advanced_face_antispoofing/1.json @@ -0,0 +1,82 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "attack_support": "system/text/1", + "annotations": "system/bounding_box_video/1", + "video": "system/array_4d_uint8/1", + "file_id": "system/uint64/1", + "client_id": "system/uint64/1", + "class": "system/text/1" + }, + "name": "train" + }, + { + "outputs": { + "annotations": "system/bounding_box_video/1", + "video": "system/array_4d_uint8/1", + "file_id": "system/uint64/1", + "client_id": "system/uint64/1", + "template_id": "system/uint64/1" + }, + "name": "dev_templates" + }, + { + "outputs": { + "probe_id": "system/uint64/1", + "template_ids": "system/array_1d_uint64/1", + "video": "system/array_4d_uint8/1", + "file_id": "system/uint64/1", + "client_id": "system/uint64/1", + "annotations": "system/bounding_box_video/1" + }, + "name": "dev_probes_real" + }, + { + "outputs": { + "attack_support": "system/text/1", + "probe_id": "system/uint64/1", + "template_ids": "system/array_1d_uint64/1", + "video": "system/array_4d_uint8/1", + "file_id": "system/uint64/1", + "client_id": "system/uint64/1", + "annotations": "system/bounding_box_video/1" + }, + "name": "dev_probes_attack" + }, + { + "outputs": { + "annotations": "system/bounding_box_video/1", + "video": "system/array_4d_uint8/1", + "file_id": "system/uint64/1", + "client_id": "system/uint64/1", + "template_id": "system/uint64/1" + }, + "name": "test_templates" + }, + { + "outputs": { + "probe_id": "system/uint64/1", + "template_ids": "system/array_1d_uint64/1", + "video": "system/array_4d_uint8/1", + "file_id": "system/uint64/1", + "client_id": "system/uint64/1", + "annotations": "system/bounding_box_video/1" + }, + "name": "test_probes_real" + }, + { + "outputs": { + "attack_support": "system/text/1", + "probe_id": "system/uint64/1", + "template_ids": "system/array_1d_uint64/1", + "video": "system/array_4d_uint8/1", + "file_id": "system/uint64/1", + "client_id": "system/uint64/1", + "annotations": "system/bounding_box_video/1" + }, + "name": "test_probes_attack" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/advanced_face_recognition/1.json b/advanced/protocoltemplates/advanced_face_recognition/1.json new file mode 100644 index 0000000000000000000000000000000000000000..478813c3341d8c32e978267e4f96a20c0ca0b1c4 --- /dev/null +++ b/advanced/protocoltemplates/advanced_face_recognition/1.json @@ -0,0 +1,56 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "dev_templates", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "template_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "dev_probes", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "template_ids": "{{ system_user.username }}/array_1d_uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "test_templates", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "template_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "test_probes", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "template_ids": "{{ system_user.username }}/array_1d_uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/advanced_face_recognition_textid/1.json b/advanced/protocoltemplates/advanced_face_recognition_textid/1.json new file mode 100644 index 0000000000000000000000000000000000000000..9bf66c614336b9bab3302392e5797910a91da371 --- /dev/null +++ b/advanced/protocoltemplates/advanced_face_recognition_textid/1.json @@ -0,0 +1,56 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "dev_templates", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "dev_probes", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "probe_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "test_templates", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "test_probes", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "probe_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/advanced_fingervein_recognition/1.json b/advanced/protocoltemplates/advanced_fingervein_recognition/1.json new file mode 100644 index 0000000000000000000000000000000000000000..1f73d2045de4330bdb77a129790697eec87fd4df --- /dev/null +++ b/advanced/protocoltemplates/advanced_fingervein_recognition/1.json @@ -0,0 +1,51 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1" + }, + "name": "train" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1" + }, + "name": "dev_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1" + }, + "name": "dev_probes" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1" + }, + "name": "test_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1" + }, + "name": "test_probes" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/advanced_speaker_recognition/1.json b/advanced/protocoltemplates/advanced_speaker_recognition/1.json new file mode 100644 index 0000000000000000000000000000000000000000..35f89c3f545e8bed59a4417eed2347eecc2c495f --- /dev/null +++ b/advanced/protocoltemplates/advanced_speaker_recognition/1.json @@ -0,0 +1,51 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "speech": "{{ system_user.username }}/array_1d_floats/1" + } + }, + { + "name": "dev_templates", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1", + "speech": "{{ system_user.username }}/array_1d_floats/1" + } + }, + { + "name": "dev_probes", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "probe_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1", + "speech": "{{ system_user.username }}/array_1d_floats/1" + } + }, + { + "name": "test_templates", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1", + "speech": "{{ system_user.username }}/array_1d_floats/1" + } + }, + { + "name": "test_probes", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "probe_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1", + "speech": "{{ system_user.username }}/array_1d_floats/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/advanced_vein_annotations/1.json b/advanced/protocoltemplates/advanced_vein_annotations/1.json new file mode 100644 index 0000000000000000000000000000000000000000..bb699de6eab33476728ec0528b4430053fa2f2a3 --- /dev/null +++ b/advanced/protocoltemplates/advanced_vein_annotations/1.json @@ -0,0 +1,57 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "vein_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "ROI_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "alignment_annotations": "{{ system_user.username }}/array_1d_coordinates/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "train" + }, + { + "outputs": { + "model_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_2d_uint8/1", + "vein_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "ROI_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "alignment_annotations": "{{ system_user.username }}/array_1d_coordinates/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "dev_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "vein_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "ROI_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "alignment_annotations": "{{ system_user.username }}/array_1d_coordinates/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "dev_probes" + }, + { + "outputs": { + "model_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_2d_uint8/1", + "vein_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "ROI_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "alignment_annotations": "{{ system_user.username }}/array_1d_coordinates/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "eval_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "vein_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "ROI_annotations": "{{ system_user.username }}/array_2d_uint8/1", + "alignment_annotations": "{{ system_user.username }}/array_1d_coordinates/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "eval_probes" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/advanced_vein_recognition/1.json b/advanced/protocoltemplates/advanced_vein_recognition/1.json new file mode 100644 index 0000000000000000000000000000000000000000..9db52359d8dc4ce4d5b61f6eb5442f9b288c851c --- /dev/null +++ b/advanced/protocoltemplates/advanced_vein_recognition/1.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "train" + }, + { + "outputs": { + "model_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "dev_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "dev_probes" + }, + { + "outputs": { + "model_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "eval_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "eval_probes" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/advanced_vein_recognition_2/1.json b/advanced/protocoltemplates/advanced_vein_recognition_2/1.json new file mode 100644 index 0000000000000000000000000000000000000000..9db52359d8dc4ce4d5b61f6eb5442f9b288c851c --- /dev/null +++ b/advanced/protocoltemplates/advanced_vein_recognition_2/1.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "train" + }, + { + "outputs": { + "model_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "dev_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "dev_probes" + }, + { + "outputs": { + "model_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "eval_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "client_id": "{{ system_user.username }}/uint64/1" + }, + "name": "eval_probes" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/iris_pad/1.json b/advanced/protocoltemplates/iris_pad/1.json new file mode 100644 index 0000000000000000000000000000000000000000..b14d93cb78289614d29f1b72b0e9117f11f6c2f0 --- /dev/null +++ b/advanced/protocoltemplates/iris_pad/1.json @@ -0,0 +1,13 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "test", + "outputs": { + "category": "{{ system_user.username }}/integer/1", + "image": "{{ system_user.username }}/array_2d_uint8/1", + "label": "{{ system_user.username }}/boolean/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_expression_recognition/1.json b/advanced/protocoltemplates/simple_expression_recognition/1.json new file mode 100644 index 0000000000000000000000000000000000000000..4da22d9dfd52fe2b1ce27c6cfbb69a4de9c75e23 --- /dev/null +++ b/advanced/protocoltemplates/simple_expression_recognition/1.json @@ -0,0 +1,23 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_4d_uint8/1", + "emotion": "{{ system_user.username }}/text/1" + } + }, + { + "name": "test", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_4d_uint8/1", + "emotion": "{{ system_user.username }}/text/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_face_antispoofing/1.json b/advanced/protocoltemplates/simple_face_antispoofing/1.json new file mode 100644 index 0000000000000000000000000000000000000000..56fca1f89e9b146d3aa8439454cf95997738cf21 --- /dev/null +++ b/advanced/protocoltemplates/simple_face_antispoofing/1.json @@ -0,0 +1,38 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "attack_support": "{{ system_user.username }}/text/1", + "annotations": "{{ system_user.username }}/bounding_box_video/1", + "video": "{{ system_user.username }}/array_4d_uint8/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "class": "{{ system_user.username }}/text/1" + }, + "name": "train" + }, + { + "outputs": { + "attack_support": "{{ system_user.username }}/text/1", + "annotations": "{{ system_user.username }}/bounding_box_video/1", + "video": "{{ system_user.username }}/array_4d_uint8/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "class": "{{ system_user.username }}/text/1" + }, + "name": "dev_probes" + }, + { + "outputs": { + "attack_support": "{{ system_user.username }}/text/1", + "annotations": "{{ system_user.username }}/bounding_box_video/1", + "video": "{{ system_user.username }}/array_4d_uint8/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "class": "{{ system_user.username }}/text/1" + }, + "name": "test_probes" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_face_recognition/1.json b/advanced/protocoltemplates/simple_face_recognition/1.json new file mode 100644 index 0000000000000000000000000000000000000000..3c25c402e3f55b9f00fc75fcdf03acf98da7dd06 --- /dev/null +++ b/advanced/protocoltemplates/simple_face_recognition/1.json @@ -0,0 +1,32 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_2d_uint8/1" + } + }, + { + "name": "templates", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "template_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_2d_uint8/1" + } + }, + { + "name": "probes", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "template_ids": "{{ system_user.username }}/array_1d_uint64/1", + "image": "{{ system_user.username }}/array_2d_uint8/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_face_recognition_frgc/1.json b/advanced/protocoltemplates/simple_face_recognition_frgc/1.json new file mode 100644 index 0000000000000000000000000000000000000000..67c0b56db6d93607e564277426a0259589b35e89 --- /dev/null +++ b/advanced/protocoltemplates/simple_face_recognition_frgc/1.json @@ -0,0 +1,35 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "templates", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "probes", + "outputs": { + "file_id": "{{ system_user.username }}/text/1", + "probe_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_face_recognition_gbu/1.json b/advanced/protocoltemplates/simple_face_recognition_gbu/1.json new file mode 100644 index 0000000000000000000000000000000000000000..ccdec3a2711461a5ff85ea58759760f64588ccbf --- /dev/null +++ b/advanced/protocoltemplates/simple_face_recognition_gbu/1.json @@ -0,0 +1,35 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "templates", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "template_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + }, + { + "name": "probes", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/uint64/1", + "template_ids": "{{ system_user.username }}/array_1d_uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1", + "eye_centers": "{{ system_user.username }}/eye_positions/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_face_recognition_textid/1.json b/advanced/protocoltemplates/simple_face_recognition_textid/1.json new file mode 100644 index 0000000000000000000000000000000000000000..c4be9712541566d1dd0cb2eaa8d450798c8b437f --- /dev/null +++ b/advanced/protocoltemplates/simple_face_recognition_textid/1.json @@ -0,0 +1,32 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "image": "{{ system_user.username }}/array_3d_uint8/1" + } + }, + { + "name": "templates", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1" + } + }, + { + "name": "probes", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_uint64/1", + "image": "{{ system_user.username }}/array_3d_uint8/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_fingerprint_antispoofing/1.json b/advanced/protocoltemplates/simple_fingerprint_antispoofing/1.json new file mode 100644 index 0000000000000000000000000000000000000000..a1bd042fe2b834c6421db633ff87f4ada580807f --- /dev/null +++ b/advanced/protocoltemplates/simple_fingerprint_antispoofing/1.json @@ -0,0 +1,19 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "train", + "outputs": { + "image": "{{ system_user.username }}/array_3d_uint8/1", + "spoof": "{{ system_user.username }}/boolean/1" + } + }, + { + "name": "test", + "outputs": { + "image": "{{ system_user.username }}/array_3d_uint8/1", + "spoof": "{{ system_user.username }}/boolean/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_fingervein_recognition/1.json b/advanced/protocoltemplates/simple_fingervein_recognition/1.json new file mode 100644 index 0000000000000000000000000000000000000000..fb43bac7c059a5bc605fbbe244e23bb4c55cfc2d --- /dev/null +++ b/advanced/protocoltemplates/simple_fingervein_recognition/1.json @@ -0,0 +1,32 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1" + }, + "name": "train" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1" + }, + "name": "dev_templates" + }, + { + "outputs": { + "image": "{{ system_user.username }}/array_2d_uint8/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1" + }, + "name": "dev_probes" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_keystroke_recognition/1.json b/advanced/protocoltemplates/simple_keystroke_recognition/1.json new file mode 100644 index 0000000000000000000000000000000000000000..d2399f93637180cadadfc888d48ad16d44516eb7 --- /dev/null +++ b/advanced/protocoltemplates/simple_keystroke_recognition/1.json @@ -0,0 +1,24 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "templates", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1", + "keystroke": "user/atvs_keystroke/1" + } + }, + { + "name": "probes", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1", + "keystroke": "user/atvs_keystroke/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_keystroke_recognition_kboc16/1.json b/advanced/protocoltemplates/simple_keystroke_recognition_kboc16/1.json new file mode 100644 index 0000000000000000000000000000000000000000..ac4ffac326310a22914f671312473c18ddef3295 --- /dev/null +++ b/advanced/protocoltemplates/simple_keystroke_recognition_kboc16/1.json @@ -0,0 +1,24 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "templates", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1", + "keystroke": "{{ system_user.username }}/kboc16_keystroke/1" + } + }, + { + "name": "probes", + "outputs": { + "file_id": "{{ system_user.username }}/uint64/1", + "probe_id": "{{ system_user.username }}/uint64/1", + "client_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1", + "keystroke": "{{ system_user.username }}/kboc16_keystroke/1" + } + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/simple_speech_antispoofing/1.json b/advanced/protocoltemplates/simple_speech_antispoofing/1.json new file mode 100644 index 0000000000000000000000000000000000000000..eef6de8a02dc58b46f87b0817698e9833b112245 --- /dev/null +++ b/advanced/protocoltemplates/simple_speech_antispoofing/1.json @@ -0,0 +1,35 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "attack_type": "{{ system_user.username }}/text/1", + "speech": "{{ system_user.username }}/array_1d_floats/1", + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "class": "{{ system_user.username }}/text/1" + }, + "name": "train" + }, + { + "outputs": { + "attack_type": "{{ system_user.username }}/text/1", + "speech": "{{ system_user.username }}/array_1d_floats/1", + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "class": "{{ system_user.username }}/text/1" + }, + "name": "dev_probes" + }, + { + "outputs": { + "attack_type": "{{ system_user.username }}/text/1", + "speech": "{{ system_user.username }}/array_1d_floats/1", + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "class": "{{ system_user.username }}/text/1" + }, + "name": "eval_probes" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/speaker_recognition_spoof/1.json b/advanced/protocoltemplates/speaker_recognition_spoof/1.json new file mode 100644 index 0000000000000000000000000000000000000000..543c84a07f7f51644b294391782073ffbe8432e8 --- /dev/null +++ b/advanced/protocoltemplates/speaker_recognition_spoof/1.json @@ -0,0 +1,25 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "speech": "{{ system_user.username }}/array_1d_floats/1", + "client_id": "{{ system_user.username }}/text/1", + "file_id": "{{ system_user.username }}/text/1", + "attack_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1" + }, + "name": "dev_attacks" + }, + { + "outputs": { + "speech": "{{ system_user.username }}/array_1d_floats/1", + "client_id": "{{ system_user.username }}/text/1", + "file_id": "{{ system_user.username }}/text/1", + "attack_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1" + }, + "name": "test_attacks" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/verify_trainset_speech/1.json b/advanced/protocoltemplates/verify_trainset_speech/1.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea7924c4df8b4da9d1e130411a14663fddc0304 --- /dev/null +++ b/advanced/protocoltemplates/verify_trainset_speech/1.json @@ -0,0 +1,24 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "speech": "{{ system_user.username }}/array_1d_floats/1", + "file_id": "{{ system_user.username }}/text/1", + "client_id": "{{ system_user.username }}/text/1", + "template_id": "{{ system_user.username }}/text/1" + }, + "name": "train_templates" + }, + { + "outputs": { + "speech": "{{ system_user.username }}/array_1d_floats/1", + "client_id": "{{ system_user.username }}/text/1", + "file_id": "{{ system_user.username }}/text/1", + "probe_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1" + }, + "name": "train_probes" + } + ] +} \ No newline at end of file diff --git a/advanced/protocoltemplates/verify_trainset_speech_spoof/1.json b/advanced/protocoltemplates/verify_trainset_speech_spoof/1.json new file mode 100644 index 0000000000000000000000000000000000000000..e9028c82bd2faac2ee387cec2a88b2217dc94adb --- /dev/null +++ b/advanced/protocoltemplates/verify_trainset_speech_spoof/1.json @@ -0,0 +1,15 @@ +{ + "schema_version": 1, + "sets": [ + { + "outputs": { + "speech": "{{ system_user.username }}/array_1d_floats/1", + "client_id": "{{ system_user.username }}/text/1", + "file_id": "{{ system_user.username }}/text/1", + "attack_id": "{{ system_user.username }}/text/1", + "template_ids": "{{ system_user.username }}/array_1d_text/1" + }, + "name": "train_attacks" + } + ] +} \ No newline at end of file diff --git a/test/protocoltemplates/one_block/1.json b/test/protocoltemplates/one_block/1.json new file mode 100644 index 0000000000000000000000000000000000000000..41e16bbbd73a81d3838752be5984b1cce1306eb8 --- /dev/null +++ b/test/protocoltemplates/one_block/1.json @@ -0,0 +1,11 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "numbers", + "outputs": { + "out": "{{ system_user.username }}/integer/1" + } + } + ] +} \ No newline at end of file diff --git a/test/protocoltemplates/one_block_two_inputs/1.json b/test/protocoltemplates/one_block_two_inputs/1.json new file mode 100644 index 0000000000000000000000000000000000000000..85fa6d611f9d548168c217b27310d7057ad1a88b --- /dev/null +++ b/test/protocoltemplates/one_block_two_inputs/1.json @@ -0,0 +1,12 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "numbers", + "outputs": { + "a": "{{ system_user.username }}/integer/1", + "b": "{{ system_user.username }}/integer/1" + } + } + ] +} \ No newline at end of file diff --git a/test/protocoltemplates/test_integers/1.json b/test/protocoltemplates/test_integers/1.json new file mode 100644 index 0000000000000000000000000000000000000000..d0cea10941d6db9079a8a82411029d5879e5e41b --- /dev/null +++ b/test/protocoltemplates/test_integers/1.json @@ -0,0 +1,17 @@ +{ + "schema_version": 1, + "sets": [ + { + "name": "set", + "outputs": { + "out": "{{ system_user.username }}/integer/1" + } + }, + { + "name": "set2", + "outputs": { + "out": "{{ system_user.username }}/integer/1" + } + } + ] +} \ No newline at end of file