Linked Questions

0 votes
1 answer
625 views

I would like to make a neural network which has several inputs and 3 outputs but when I try to put 2 entries in my program it does not want. import keras import numpy as np import tensorflow as tf ...
goran's user avatar
  • 25
6 votes
1 answer
7k views

I am trying to merge output from two models and give them as input to the third model using keras sequential model. Model1 : inputs1 = Input(shape=(750,)) x = Dense(500, activation='relu')(inputs1) ...
Piyush Doke's user avatar
3 votes
2 answers
4k views

I currently have a RNN model for time series predictions. It uses 3 input features "value", "temperature" and "hour of the day" of the last 96 time steps to predict the ...
PeterBe's user avatar
  • 902
2 votes
1 answer
1k views

I'm building a convolutional neural network (CNN) model consisting of dual stream image data input of 'RGB' channels and 'grayscale' channel converging into singular stream of shape (None, width, ...
Azhar's user avatar
  • 65
0 votes
1 answer
837 views

I try creating a neural network, having two inputs of a particular size (here four) each and one output of the same size size (so also four). Unfortunately, I always get this error when running my ...
Nico's user avatar
  • 13
0 votes
2 answers
261 views

I have created a simple machine learning model to predict the multiplication of two given numbers. I followed a youtube tutorial to learn the basic and try to work on this simple idea. My model has ...
B L Λ C K's user avatar
1 vote
2 answers
488 views

Following this tutorial: I have this feature and label in Tensorflow: >>> play_features.head() enemy_class player_class player_cards ...
Paul Moises Turcato's user avatar
1 vote
1 answer
281 views

I am building a 1D CNN model using Keras for text classification where the input is a sequence of words generated by tokenizer.texts_to_sequences. Is there a way to also feed in a sequence of ...
Getch's user avatar
  • 107
0 votes
0 answers
209 views

I have a tensorflow model with 2 input vectors of shapes [None, 500]. The following chunk present a similar example to what the actual model looks like (it is actually consisted of more layers but ...
David Harar's user avatar
1 vote
1 answer
183 views

Have a project I'm working on and am running into an issue. Essentially I these points scattered across an x / y plot. I have one test point, where I get the target data (y) for the classification (...
brspencer90's user avatar
0 votes
0 answers
42 views

I have a dataset of images and their two regression values in the CSV file. For example, "img1.jpg" has two numeric values "x_cord" and "y_cord" stored in annotation.csv. ...
niva naik's user avatar