Replies: 2 comments
-
In addition to
Similar issue with workaround/solution: #813 |
Beta Was this translation helpful? Give feedback.
0 replies
-
I met this problem when execute at cluster mode, how can I fix it ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This error was found when trying to run sparknlp_jsl (3.0.3) over spark 3.0.1 in a RedHat 7 linux machine and specifically when loading the T5Transformer;
t5 = T5Transformer().pretrained("t5_base")
The error:
I found that by adding /usr/local/lib64 to the dynamic link loader path:
export LD_LIBRARY_PATH=/usr/local/lib64:$LD_LIBRARY_PATH
the problem can be solved.
Beta Was this translation helpful? Give feedback.
All reactions