文档说该库在 GPU 上运行。如果我强大的笔记本电脑没有 GPU,我还能运行 Deeplearning4J 吗?
问问题
423 次
1 回答
6
我们并没有在我们的文档中暗示我们只在 gpus 上运行。如果由于某种原因您发现是这种情况,您可以在 github 问题中通知我们吗? https://github.com/deeplearning4j/deeplearning4j/issues
您只需要一个 nd4j 后端: http ://nd4j.org/backend.html
与许多其他库不同,Dl4j 将硬件实现与算法分离。这里的门票是我们的张量库 nd4j。Nd4j 处理所有计算。
如果你愿意,可以把它想象成“tensorflow/theano”。
我们将所有本机二进制文件部署到 maven Central。
通常你只需要: http ://search.maven.org/#search%7Cga%7C1%7Cnd4j-native-platform
为CPU。GPU,我们支持 2 个最新的 cuda 版本: http ://search.maven.org/#search%7Cga%7C1%7Cnd4j-cuda-7.5-platform
与在 android 和 pis 上相同的确切代码:http: //deeplearning4j.org/android
同样的想法,您不从源代码编译,只需指定正确的后端。
于 2017-05-03T00:58:00.407 回答