votchallenge / toolkit

The official VOT Challenge evaluation and analysis toolkit
http://www.votchallenge.net/
GNU General Public License v3.0
155 stars 43 forks source link

Weird "Terminate" outputs with python example #13

Closed HubHop closed 4 years ago

HubHop commented 4 years ago

Hi, thanks for your work.

I tried to run the python example on the votchallenge website, but the terminal outputs weird "Terminate" all the way: When testing vot test <tracker-name>:

@@TRAX:state "393.0000,151.0000,100.0000,113.0000" "confidence=0.9969527721405029" 
@@TRAX:frame "file:///tmp/vot_dummy_50_640_480/color/00000050.jpg" 
@@TRAX:state "395.0000,167.0000,100.0000,113.0000" "confidence=0.9969357848167419" 
@@TRAX:quit 
Terminate
@@TRAX:hello "trax.name=" "trax.family=" "trax.image=path;" "trax.region=rectangle;" "trax.description=" "trax.version=3" "vot=python" "trax.channels=color;" 
@@TRAX:initialize "file:///tmp/vot_dummy_50_640_480/color/00000001.jpg" "397.0000,183.0000,100.0000,113.0000" 
@@TRAX:state "397.0000,183.0000,100.0000,113.0000" 
@@TRAX:frame "file:///tmp/vot_dummy_50_640_480/color/00000002.jpg" 
@@TRAX:state "395.0000,199.0000,100.0000,113.0000" "confidence=0.997133195400238" 

When evaluating vot evaluate --workspace <workspace-path> <tracker-name>:

NCCPython/baseline:  30%|█████████▋                      | 18.133333333333333/60 [02:29<11:21, 16.29s/sequence]Terminate
Terminate
Terminate
NCCPython/baseline:  30%|█████████████▉                                | 18.2/60 [02:30<11:27, 16.44s/sequence]Terminate
NCCPython/baseline:  32%|██████████████▌                               | 19.0/60 [02:30<07:53, 11.55s/sequence]Terminate
Terminate
Terminate
Terminate
Terminate
Terminate
Terminate
Terminate

My conda env list:

# packages in environment at /data1/anaconda3/envs/test_vot:
#
# Name                    Version                   Build  Channel
_libgcc_mutex             0.1                        main  
attrs                     19.3.0                   pypi_0    pypi
ca-certificates           2020.1.1                      0  
certifi                   2020.4.5.1               py36_0  
chardet                   3.0.4                    pypi_0    pypi
colorama                  0.4.3                    pypi_0    pypi
cycler                    0.10.0                   pypi_0    pypi
idna                      2.9                      pypi_0    pypi
importlib-metadata        1.6.0                    pypi_0    pypi
jsonschema                3.2.0                    pypi_0    pypi
kiwisolver                1.2.0                    pypi_0    pypi
ld_impl_linux-64          2.33.1               h53a641e_7  
libedit                   3.1.20181209         hc058e9b_0  
libffi                    3.3                  he6710b0_1  
libgcc-ng                 9.1.0                hdf63c60_0  
libstdcxx-ng              9.1.0                hdf63c60_0  
llvmlite                  0.32.1                   pypi_0    pypi
matplotlib                3.2.1                    pypi_0    pypi
ncurses                   6.2                  he6710b0_1  
numba                     0.49.1                   pypi_0    pypi
numpy                     1.18.4                   pypi_0    pypi
opencv-python             4.2.0.34                 pypi_0    pypi
openssl                   1.1.1g               h7b6447c_0  
ordered-set               4.0.1                    pypi_0    pypi
pillow                    7.1.2                    pypi_0    pypi
pip                       20.0.2                   py36_3  
pylatex                   1.3.1                    pypi_0    pypi
pyparsing                 2.4.7                    pypi_0    pypi
pyrsistent                0.16.0                   pypi_0    pypi
python                    3.6.10               h7579374_2  
python-dateutil           2.8.1                    pypi_0    pypi
pyyaml                    5.3.1                    pypi_0    pypi
readline                  8.0                  h7b6447c_0  
requests                  2.23.0                   pypi_0    pypi
setuptools                46.1.3                   py36_0  
six                       1.14.0                   pypi_0    pypi
sqlite                    3.31.1               h62c20be_1  
tk                        8.6.8                hbc83047_0  
tqdm                      4.32.0                   pypi_0    pypi
urllib3                   1.25.9                   pypi_0    pypi
vot-toolkit               0.2.0                    pypi_0    pypi
vot-trax                  3.0.2                    pypi_0    pypi
wheel                     0.34.2                   py36_0  
xz                        5.2.5                h7b6447c_0  
zipp                      3.1.0                    pypi_0    pypi
zlib                      1.2.11               h7b6447c_3  

To reproduce the error:

conda create -n vot_test python=3.6
conda activate vot_test
pip install git+https://github.com/votchallenge/vot-toolkit-python

Then clone the python example and set up workspace.

I was wondering if there is something wrong with the latest updates? cause my previous environment does not have this error.

Many thanks.

lukacu commented 4 years ago

Yes, apparently I forgot to remove a debug message. It will be fixed when we merge the dev branch.

HubHop commented 4 years ago

Okay, thanks for that.