We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the question(问题描述)
In DCN network why do we have a linear_model(X) in forward function? What is the use of linear_model?
Why do you have separate embedding layers for linear_model and for dnn and cross.
` def forward(self, X):
logit = self.linear_model(X) # this line Q1 sparse_embedding_list, dense_value_list = self.input_from_feature_columns(X, self.dnn_feature_columns, self.embedding_dict) # this line Q2 dnn_input = combined_dnn_input(sparse_embedding_list, dense_value_list)
`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the question(问题描述)
In DCN network why do we have a linear_model(X) in forward function? What is the use of linear_model?
Why do you have separate embedding layers for linear_model and for dnn and cross.
` def forward(self, X):
`
The text was updated successfully, but these errors were encountered: