Hello,
I hope it is okay to post this question here. I have installed tensorflow-gpu through the Anaconda Navigator because I have a RTX3090 that I would like to use. However, when using the environment that where I have tensorflow-gpu installed everything is super slow. Like just executing the model without training takes for ever. Even something as simple as
model = Sequential()
model.add(Dense(10, activation=”relu”)
model.add(Dense(1, activation=”sigmoid”)
model.compile(optimizer=”rmsprop”, loss=”binary_crossentropy”)
Does anyone have clue what might be the issue? Thank you in advance!
submitted by /u/0stkreutz
[visit reddit] [comments]