python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Install tensorflow 1.15 failed with pytorch in anaconda
I am trying to install tensorflow-gpu with conda, and my OS is Ubuntu 18.04.3 LTS. But got this error:
conda install tensorflow-gpu==1.15.0
Collecting package metadata (current_repodata.json): done
S...

marlon
Votes: 0
Answers: 1
TensorFlow "TypeError: Target data is missing" though dataset with 2 dimension tuple was supplied
I'm trying to use a generator- based data set:
def gen():
return zip(samples,feature)
ds = tf.data.Dataset.from_generator(gen,output_types=tf.dtypes.float32)
model.fit(ds,
epochs=150,
...
material bug
Votes: 0
Answers: 1
Compile time distribution strategy issue
i have following code- which tries to implement simple Reinforcement learning environment with keras
import gym
from gym import Env
import numpy as np
from gym.spaces import Discrete,Box
import random...

user466534
Votes: 0
Answers: 1
Concatenate multiple features from Keras multiple layers
I am obtaining the following error
ValueError: as_list() is not defined on an unknown TensorShape.
My code looks like this
# define input
X_input = Input(shape=(n_features, n_channels))
# define ...
Marina Ciocîrlan
Votes: 0
Answers: 1