Skip to content
Advertisement

Tag: tensorflow2.0

Could not load dynamic library ‘cudart64_101.dll’ on tensorflow CPU-only installation

I just installed the latest version of Tensorflow via pip install tensorflow and whenever I run a program, I get the log message: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library ‘cudart64_101.dll’; dlerror: cudart64_101.dll not found Is this bad? How do I fix the error? Answer Tensorflow 2.1+ What’s going on? With the new Tensorflow 2.1 release, the default tensorflow pip

Cannot use vggface-keras in Tensorflow 2.0

I am trying to use the keras-vggface library from https://github.com/rcmalli/keras-vggface to train a CNN. I have installed tensorflow 2.0.0-rc1, keras 2.3.1, cuda 10.1, cudnn 7.6.5 and the driver’s version is 418, the problem is that when i try to use the vggface model, as a convolutional base, i get an error, here is the code and the error Error! I

What is the difference between tf-nightly and tensorflow in PyPI?

What is the difference between tf-nightly and tensorflow in PyPI? Which one is reliable? https://pypi.org/project/tf-nightly/ https://pypi.org/project/tensorflow/ Answer Just to add to what Ben Souchet wrote: As its name suggests, the tf-nightly pip package is built and released to PyPI every night (barring any build failures, which happens rarely). As a result, you can see an almost once-per-day version update history.

Advertisement