简体   繁体   English

在连接深度特征向量和手工制作的特征向量后,我可以使用最终池化层来找到最佳共同特征吗?

[英]Can I use final pooling layer to find best common features after concatenating deep features vector and handcrafted fetures vector?

I have two features vector.我有两个特征向量。 One is deep features vector extracted by CNN and another is handcrafted features extracted by uniform local binary pattern.一种是CNN提取的深度特征向量,另一种是统一局部二值模式提取的手工特征。 I want to find common best features after concatenating these two features vector.我想在连接这两个特征向量后找到共同的最佳特征。 I want to use a final pooling layer for this reason.出于这个原因,我想使用最终的池化层。 Is it possible?可能吗?

After you have concatenated the two feature vectors, the final pooling layer would help in reducing those feature vectors.连接两个特征向量后,最终的池化层将有助于减少这些特征向量。

If you can define more what you aim to do / which pooling layer do you want to use?如果您可以定义更多您的目标/您想使用哪个池化层?

I'm not sure I understand correctly what you meant by "final pooling layer"我不确定我是否正确理解“最终池化层”的含义

But in my opinion, adding ONLY a pooling layer after the concatenation layer and before the output layer (eg, Dense-softmax...) may not help much in this case as pooling layers have no learnable parameters, and they operate over each activation map independently to reduce the size of the activation maps.但在我看来,在连接层之后和 output 层之前添加一个池化层(例如,Dense-softmax ...)在这种情况下可能没有多大帮助,因为池化层没有可学习的参数,并且它们在每次激活时运行map 独立地减小激活图的大小。

There is one simple way of feature fusion methods I would like to suggest is that you can apply another subnet (set of layers like convolution, pooling, dense) to the concatenated tensor.我想建议一种简单的特征融合方法,即您可以将另一个子网(卷积、池化、密集等层集)应用于级联张量。 Thus, the model can keep learning to enhance the good features.因此,model 可以不断学习以增强良好的功能。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我怎样才能使我的 CNN output 成为特征向量 - How can i make my CNN output a vector of features 在运行时将功能连接到单词嵌入到输入层 - Concatenating features to word embedding at the input layer during run time 保存提取特征以供未来训练深度学习的最佳方法 - Best way to save extracted features for future training deep learning 我有一个具有 3 个特征和 4 个向量输出的网络。 如何计算 MSE 和准确度指标? - I have a network with 3 features and 4 vector outputs. How is MSE and accuracy metric calculated? Tensorflow-tf.matmul的conv特征和向量作为批处理matmul - Tensorflow - tf.matmul of conv features and a vector as a batch matmul TensorFlow:如何为表格(一维)特征制作卷积层? - TensorFlow: How do I use make a convolutional layer for tabular (1-D) features? Tensorflow:如何从预先训练的CNN的特定层提取图像特征? - Tensorflow: How can I extract image features from a specific layer of a pre-trained CNN? 在LSTM层之后合并其他功能以进行时间序列预测 - Concatenate additional features after LSTM layer for Time Series Forecasting Tensorflow 1 层中的 Select 特定功能 - Select specific features in a Tensorflow 1 layer 可以使用主成分分析网络代替 CNN 中的池化层吗? - can use Principal Component Analysis Network instead of pooling layer in CNN?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM