- #1
themagiciant95
- 57
- 5
Let's consider this scenario. I have two conceptually different video datasets, for example a dataset A composed of videos about cats and a dataset B composed of videos about houses. Now, I'm able to extract a feature vectors from both the samples of the datasets A and B, and I know that, each sample in the dataset A is related to one and only one sample in the dataset B and they belong to a specific class (there are only 2 classes).
For example:
Sample x1 AND sample y1 ---> Class 1
Sample x2 AND sample y2 ---> Class 2
Sample x3 AND sample y3 ---> Class 1
and so on...
If I extract the feature vectors from samples in both datasets , which is the best way to combine them in order to give a correct input to the classifier (for example a neural network) ?
feature vector v1 extracted from x1 + feature vector v1' extracted from y1 ---> input for classifier
I ask this because I suspect that neural networks only take one vector as input, while I have to combine two vectors
For example:
Sample x1 AND sample y1 ---> Class 1
Sample x2 AND sample y2 ---> Class 2
Sample x3 AND sample y3 ---> Class 1
and so on...
If I extract the feature vectors from samples in both datasets , which is the best way to combine them in order to give a correct input to the classifier (for example a neural network) ?
feature vector v1 extracted from x1 + feature vector v1' extracted from y1 ---> input for classifier
I ask this because I suspect that neural networks only take one vector as input, while I have to combine two vectors