Revision 80daa103c309239dbaf73120bb76b4706e9d8264 authored by Andrey Zhavoronkov on 11 October 2023, 13:45:53 UTC, committed by GitHub on 11 October 2023, 13:45:53 UTC
```python
"Exception caught in handler - \"not enough values to unpack (expected 3, got 2)\": Traceback (most recent call last):
 File \"/opt/nuclio/_nuclio_wrapper.py\", line 143, in serve_requests
 await self._handle_event(event)
 File \"/opt/nuclio/_nuclio_wrapper.py\", line 397, in _handle_event
 entrypoint_output = self._entrypoint(self._context, event)
 File \"/opt/nuclio/main.py\", line 29, in handler
 shape, state = context.user_data.model.infer(image, shape, states[i] if i < len(states) else None)
 File \"/opt/nuclio/model_handler.py\", line 56, in infer
 self.config['hp'], device=self.device)
 File \"/opt/nuclio/SiamMask/tools/test.py\", line 152, in siamese_init
 z_crop = get_subwindow_tracking(im, target_pos, p.exemplar_size, s_z, avg_chans)
 File \"/opt/nuclio/SiamMask/tools/test.py\", line 88, in get_subwindow_tracking
 r, c, k = im.shape
ValueError: not enough values to unpack (expected 3, got 2)
```
1 parent 5219c8f
Raw File
.gitattributes
*               text=auto whitespace=trailing-space,space-before-tab,-indent-with-non-tab,tab-in-indent,tabwidth=4

.git*           text export-ignore

*.txt           text
*.htm           text
*.html          text
*.js            text
*.py            text
*.css           text
*.md            text
*.yml           text
Dockerfile      text
LICENSE         text
*.conf          text
*.mimetypes     text
*.sh            text eol=lf

*.avi           binary
*.bmp           binary
*.exr           binary
*.ico           binary
*.jpeg          binary
*.jpg           binary
*.png           binary
*.gif           binary
*.ttf           binary
*.pdf           binary

back to top