Skip to content

Commit

Permalink
Fix other/tensors property names
Browse files Browse the repository at this point in the history
dimension ==> dimensions
type ==> types

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
  • Loading branch information
myungjoo authored and anyj0527 committed Jul 5, 2024
1 parent 2d32b68 commit 0436449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tizen.web/ImageClassificationOffloading/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ function createPipelineDescription(isLocal, filter) {
(isLocal ? "local" : "offloading") +
" ! jpegdec ! " +
"videoconvert ! video/x-raw,format=RGB,framerate=0/1,width=224,height=224 ! tensor_converter ! " +
"other/tensors,num_tensors=1,format=static,dimension=(string)3:224:224:1,type=uint8,framerate=0/1 ! " +
"other/tensors,num_tensors=1,format=static,dimensions=(string)3:224:224:1,types=uint8,framerate=0/1 ! " +
filter +
" ! " +
"other/tensors,num_tensors=1,format=static,dimension=(string)1001:1,type=uint8,framerate=0/1 ! " +
"other/tensors,num_tensors=1,format=static,dimensions=(string)1001:1,types=uint8,framerate=0/1 ! " +
"tensor_sink name=sinkx_" +
(isLocal ? "local" : "offloading")
);
Expand Down

0 comments on commit 0436449

Please sign in to comment.