Loreto Parisi
Loreto Parisi
Hello @collabnix this could be due to the old `FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu16.04`. You should upgrade this a more recent CUDA / cudnn version. I don't know if jetson nano supports the...
@oreilc16 Happy that you were able to run make with both `OPENCV`. The reasons could be several. In this specific case it seems to me this very issue: https://github.com/pjreddie/darknet/issues/200
Thanks @vfbsilva let me have a look, some references may be changed
@vfbsilva thank you so much 👍 I will wait the PR, you are welcome!
@bluebyte9001 I will check it out, thanks.
@bluebyte9001 I have checked your issue. When using `gpu/build.sh` you came out with a `cuda:8.0` supported ubuntu, once you have a gpu. At that point running `nvdia-smi` you should see...
@bluebyte9001 yes I can confirm that `fastText` and `Starspace` only run on CPU in the default C++ implementation. I'm aware there were some attempts to run on GPU, but unofficial....
Thank you for testing it! I was aware of NLTK, but at the end I have preferred that one because of the extended indian languages support. Currently I'm looking to...
**[UPDATE]** I have found a solution for `eigen3`: ```dockerfile RUN curl http://security.ubuntu.com/ubuntu/pool/universe/e/eigen3/libeigen3-dev_3.3.2-1_all.deb -o libeigen3-dev_3.3.2-1_all.deb && dpkg -i libeigen3-dev_3.3.2-1_all.deb ``` so using `dpkg` solves the install dir issue: ```bash -- Could...
**[UPDATE]** Ok this is my last finding to solve the `boost` issue: ``` # OpenNMT dependencies: boot, eigen, intel mkl RUN apt-get update && apt-get install -y \ libboost-dev \...