Error loading backend for RedisAI docker

I have followed instructions form https://oss.redislabs.com/redisai/ to launch the docker container. I connected via redis-cli. When I run the suggested command,

AI.CONFIG LOADBACKEND TORCH install/backend/redisai_torch/redisai_torch.so

I get an error:

Could not load TF backend from /usr/lib/redis/modules/backends/install/backends/redisai_tensorflow/redisai_tensorflow.so: /usr/lib/redis/modules/backends/install/backends/redisai_tensorflow/redisai_tensorflow.so: cannot open shared object file: No such file or directory
(error) ERR error loading backend

Same happens for PyTorch:

AI.CONFIG LOADBACKEND TORCH install/backend/redisai_torch/redisai_torch.so 

Hi Alex,
it’s related to paths, they are probably mis-specified in the docs. Can you try with the following:

AI.CONFIG LOADBACKEND TORCH redisai_torch/redisai_torch.so

Thanks

Luca

By the way, this worked. Thank you very much!