Error runnning the facenet notebook

I solved it, It was the permission issue.
By running these command down here, the data conversion process worked just fine!

sudo groupadd docker
sudo usermod -aG docker ${USER}
sudo chmod 666 /var/run/docker.sock
sudo systemctl restart docker
sudo chown "$USER":"$USER" /home/"$USER"/.docker -R
sudo chmod g+rwx "/home/$USER/.docker" -R
3 Likes