Skip to content

Commit

Permalink
[Tizen/Web] Use other/tensors in mobilenet
Browse files Browse the repository at this point in the history
This patch changes tensor format from other/tensor to other/tensors.
other/tensor is obsoleted.

Signed-off-by: Yelin Jeong <[email protected]>
  • Loading branch information
niley7464 authored and myungjoo committed Jul 5, 2024
1 parent 3f2a257 commit 2d32b68
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/tensor,format=static,dimension=(string)3:224:224:1,type=uint8,framerate=0/1 ! " +
"other/tensors,num_tensors=1,format=static,dimension=(string)3:224:224:1,type=uint8,framerate=0/1 ! " +
filter +
" ! " +
"other/tensor,format=static,dimension=(string)1001:1,type=uint8,framerate=0/1 ! " +
"other/tensors,num_tensors=1,format=static,dimension=(string)1001:1,type=uint8,framerate=0/1 ! " +
"tensor_sink name=sinkx_" +
(isLocal ? "local" : "offloading")
);
Expand Down

0 comments on commit 2d32b68

Please sign in to comment.