tf.contrib.layers.joint_weighted_sum_from_feature_columns
A restricted linear prediction builder based on FeatureColumns.
tf.contrib.layers.joint_weighted_sum_from_feature_columns(
    columns_to_tensors, feature_columns, num_outputs, weight_collections=None,
    trainable=True, scope=None
)
  As long as all feature columns are unweighted sparse columns this computes the prediction of a linear model which stores all weights in a single variable.
| Args | |
|---|---|
| columns_to_tensors | A mapping from feature column to tensors. 'string' key means a base feature (not-transformed). It can have FeatureColumn as a key too. That means that FeatureColumn is already transformed by input pipeline. For example, inflowmay have handled transformations. | 
| feature_columns | A set containing all the feature columns. All items in the set should be instances of classes derived from FeatureColumn. | 
| num_outputs | An integer specifying number of outputs. Default value is 1. | 
| weight_collections | List of graph collections to which weights are added. | 
| trainable | If Truealso add variables to the graph collectionGraphKeys.TRAINABLE_VARIABLES(see tf.Variable). | 
| scope | Optional scope for variable_scope. | 
| Returns | |
|---|---|
| A tuple containing: 
 | 
| Raises | |
|---|---|
| ValueError | if FeatureColumn cannot be used for linear predictions. | 
    © 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
    https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/contrib/layers/joint_weighted_sum_from_feature_columns