a question about face recognition

I got the error below when I follow the project GitHub - AastaNV/Face-Recognition: Demonstrate Plugin API for TensorRT2.1 step by step, can somebody tell me what has gone wrong? Many thanks!

nvidia@tegra-ubuntu:~/Face-Recognition-master/build/aarch64/bin$ ./face-recognition
Building and running a GPU inference engine for /home/nvidia/Face-Recognition/data/deploy.prototxt, N=1…
[gstreamer] initialized gstreamer, version 1.8.3.0
[gstreamer] gstreamer decoder pipeline string:
nvcamerasrc fpsRange=“30.0 30.0” ! video/x-raw(memory:NVMM), width=(int)1280, height=(int)720, format=(string)NV12 ! nvvidconv flip-method=2 ! video/x-raw ! appsink name=mysink
successfully initialized video device
width: 1280
height: 720
depth: 12 (bpp)

failed to open /home/nvidia/Face-Recognition/data/labels.txt
face-recognition: /home/nvidia/Face-Recognition-master/face-recognition/face-recognition.cpp:68: std::vector<std::__cxx11::basic_string > loadLabelInfo(const char*): Assertion `0’ failed.
Aborted (core dumped)

Hi,

Sorry about this.

The file location in Face Recognition is hard-coded.
Please remember to modify it to the corresponding location.

[Model] [url]https://github.com/AastaNV/Face-Recognition/blob/master/face-recognition/face-recognition.cpp#L18[/url]
[Weight] [url]https://github.com/AastaNV/Face-Recognition/blob/master/face-recognition/face-recognition.cpp#L19[/url]
[Label] [url]https://github.com/AastaNV/Face-Recognition/blob/master/face-recognition/face-recognition.cpp#L20[/url]
[Font] [url]https://github.com/AastaNV/Face-Recognition/blob/master/util/cuda/cudaFont.h#L24[/url]

Thanks.

it works, thanks very much