Questions tagged [input-layer]

Input layer is the first layer of any neural network and contains the input. Use this tag for asking questions related to this layer of the neural network.

13 questions
3
votes
1 answer

Why is the input layer of a neural network usually not counted?

I came across the following statement from the caption of figure 7.8 from the textbook Neural Networks and Neural Language Models the input layer is usually not counted when enumerating layers Why is the input layer excluded from counting? Is the…
hanugm
  • 3,571
  • 3
  • 18
  • 50
2
votes
0 answers

Is there any way to force one input have more effect on model?

Now I am working on building a deep learning model for a regression problem. I used 50 inputs and try to add one new categorical input. The problem is that this one input is much more important than other inputs. I want to make it more influential…
2
votes
0 answers

Is it a good practice to split sparse from dense features?

I have a mixture of real (float) and categorical features to use as input in a neural network. I encode the categorical features using one-hot / multi-hot encoding. If I want to use all the features as input what is usually/empirically the best…
1
vote
2 answers

Is data useless for a neural network if some inputs are derivatives of other inputs?

That is, if some of the inputs to a neural network can be calculated by a pre-determined function whose variables are other inputs, then are those specific inputs useless? For example, suppose there are three inputs, $x_1$, $x_2$ and $x_3$. If $x_3$…
BlueSnake
  • 67
  • 5
1
vote
3 answers

Neural networks with sparse inputs

I have a task I want to solve with neural networks. The task is predicting a certain vector of dimension K. The problem is that the inputs to the networks are sparse. The input is a vector of size N, where N is huge (> 1M) and for most cases, the…
Ant
  • 121
  • 5
0
votes
1 answer

Temporally Non-Aware RNN

I am trying to classify whether or not a specific object is in panoramic photos. The issue is, a panoramic photo can be any width, so the input to my neural network can't be fixed in that dimension. I've been using RNNs (QRNNs to be specific, as I…
0
votes
0 answers

What is the best way for learning an output matrix from different size of input vectors and matrix?

What is the most effective method for learning the NXM matrix (for each sample) in relation to different size input vectors and matrices? To make it more clear: I have a 56x32 output matrix for my first sample, and the corresponding input set is…
0
votes
0 answers

How can Siamese Neural Networks accept a variable number of inputs?

Traditionally, Siamese Neural Networks have two inputs. With some tweaking, you can get them to accept any number of inputs. What I don't understand is how to get them to accept variable numbers of inputs. I've seen a couple of research papers (most…
0
votes
2 answers

Correctly input additional values into CNN

I understand that in order to add additional inputs to a CNN, e.g. in self driving, I can append the data to a flattened layer after the convolutions and before the fully connected layers. However, a few things confuse me. In a paper the authors…
0
votes
1 answer

How to handle random order of inputs and get same output?

I am a beginner with DL. I did some tutorials and I know the basics of TensorFlow. But I have a problem understanding how to construct more advanced NNs. Let's say I have 6 inputs and a list of 500 names from which you can pick any, but only 6 at…
tech2097
  • 1
  • 1
0
votes
0 answers

Is there any difference between 'input' and 'conditional input' in the case of neural networks?

In the research paper titled Conditional Generative Adversarial Nets by Mehdi Mirza and Simon Osindero, there is a notion of conditioning a neural network on a class label. It is mentioned in the abstract that we need to simply feed extra input $y$…
0
votes
1 answer

Using a Neural Network (LSTM) to approve/reject word-type sequences

I would like to train an LSTM neural network to either "approve" or "reject" a string based on the word-type sequence. For instance: "Mike's Airplane" would output "approved", but "Airplane Mike's" would output "reject". My method for doing this is…
0
votes
0 answers

How can I take continuous video input into my model?

Let's say I have designed an ML model that can take video input of a dog running around and give the breed of the dog as output. However, I do not want to wait for the video to finish before it is input into my model. I want something like the…
user48670