From 2f6621e4964a6566b6639d4c4edf9a102acdbc2c Mon Sep 17 00:00:00 2001 From: liuqi Date: Mon, 5 Mar 2018 16:48:49 +0800 Subject: [PATCH] Add weight checksum for caffe model. --- example.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/example.yaml b/example.yaml index 911aa61a..c80a2414 100644 --- a/example.yaml +++ b/example.yaml @@ -9,6 +9,7 @@ models: preview_net: platform: tensorflow model_file_path: path/to/model64.pb # also support http:// and https:// + model_sha256_checksum: 05d92625809dc9edd6484882335c48c043397aed450a168d75eb8b538e86881a input_node: input_node output_node: output_node input_shape: 1,64,64,3 @@ -21,6 +22,8 @@ models: platform: caffe model_file_path: path/to/model.prototxt weight_file_path: path/to/weight.caffemodel + model_sha256_checksum: 05d92625809dc9edd6484882335c48c043397aed450a168d75eb8b538e86881a + weight_sha256_checksum: 05d92625809dc9edd6484882335c48c043397aed450a168d75eb8b538e86881a input_node: input_node output_node: output_node input_shape: 1,256,256,3 -- GitLab