rust-bert
rust-bert copied to clipboard
The example for linking the lib is incorrect.
Problem
- The example:
export LD_LIBRARY_PATH=${LIBTORCH}/lib:$LD_LIBRARY_PATHIS INCORRECT
Solution
- Proper example:
export LD_LIBRARY_PATH=${LIBTORCH}/lib
I wasted over an hour trying to get my code to compile before I figured this out.