Tensorflow GPU 於Window 10 安裝問題
2019/12/05 下午 05:32
機器學習共學討論版
羅世璋
觀看數:4
回答數:1
收藏數:0
ml100-3
ml100-3-d66
InternalError: cudaGetDevice() failed. Status: cudaGetErrorString symbol not found.
請教這應如何下手,有點頭大中,感謝
from keras.utils import multi_gpu_model
from keras.models import Model
from keras.layers import Input, Dense
a = Input(shape=(32,))
b = Dense(32)(a)
model = Model(inputs=a, outputs=b)
config = model.get_config()
print(config)
InternalError: cudaGetDevice() failed. Status: cudaGetErrorString symbol not found.
回答列表
-
2019/12/05 下午 07:29Jeffrey贊同數:0不贊同數:0留言數:1
請問一下, Cuda, CuDNN, VS code安裝是否都可以呢?若是都可以,建議改用:
import os
os.enviorement=.......