You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I couldn't find the function of 'depthwise_conv1d'. Considering that conv1d is actually implemented via reshaping the input and then send it to conv2d, may be what you mentioned is exactly the current implementation of conv1d?
In your version of CIN, the number of weight in k-th layer is field_nums[-1] * field_nums[0] *layer_size * dim。
The Con1d is the two-dimensional weight. But in the CIN analysis(section 3.2) , the CIN is independant of embedding dim which is just ( h_k * h_{k-1) * m in k-th layer)
In paper, section 3.2 CIN analysis,
should we use the tf.nn.depthwise_conv1d but the con1d, hope your responses
The text was updated successfully, but these errors were encountered: