【问题标题】:Concat ragged arrays in KerasKeras 中的 Concat 参差不齐的数组
【发布时间】:2020-08-09 22:05:07
【问题描述】:

我有几个要连接的 RaggedTensor;我正在使用 Keras。 Vanilla Tensorflow 很乐意将它们连接起来,所以我尝试了代码:

card_feature = layers.concatenate([ragged1, ragged2, ragged3])

但它给出了错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/timeroot/.local/lib/python3.8/site-packages/tensorflow/python/keras/engine/base_layer.py", line 925, in __call__
    return self._functional_construction_call(inputs, args, kwargs,
  File "/home/timeroot/.local/lib/python3.8/site-packages/tensorflow/python/keras/engine/base_layer.py", line 1084, in _functional_construction_call
    base_layer_utils.create_keras_history(inputs)
  File "/home/timeroot/.local/lib/python3.8/site-packages/tensorflow/python/keras/engine/base_layer_utils.py", line 191, in create_keras_history
    _, created_layers = _create_keras_history_helper(tensors, set(), [])
  File "/home/timeroot/.local/lib/python3.8/site-packages/tensorflow/python/keras/engine/base_layer_utils.py", line 222, in _create_keras_history_helper
    raise ValueError('Tensorflow ops that generate ragged or sparse tensor '
ValueError: Tensorflow ops that generate ragged or sparse tensor outputs are currently not supported by Keras automatic op wrapping. Please wrap these ops in a Lambda layer: 

```

      weights_mult = lambda x: tf.sparse.sparse_dense_matmul(x, weights)
      output = tf.keras.layers.Lambda(weights_mult)(input)
      
```

然后我尝试了:

concat_lambda = lambda xs: tf.concat(xs, axis=2)
card_feature = layers.Lambda(concat_lambda)([ragged1, ragged2, ragged3])

但它给出了完全相同的错误,尽管我已经包装了它。这是一个错误/有解决方法吗?

【问题讨论】:

    标签: tensorflow keras keras-layer tf.keras ragged


    【解决方案1】:

    连接3 Ragged Tensors的代码如下所示:

    import tensorflow as tf
    
    print(tf.__version__)
    
    Ragged_Tensor1 = tf.ragged.constant([[3, 1, 4, 1], [], [5, 9, 2], [6], []])
    Ragged_Tensor2 = tf.ragged.constant([[5, 3]])
    Ragged_Tensor3 = tf.ragged.constant([[6,7,8], [9,10]])
    print(tf.concat([Ragged_Tensor1, Ragged_Tensor2, Ragged_Tensor3], axis=0))
    

    输出如下:

    2.3.0
    <tf.RaggedTensor [[3, 1, 4, 1], [], [5, 9, 2], [6], [], [5, 3], [6, 7, 8], [9, 10]]>
    

    但看起来您正在尝试连接不规则张量操作。请分享您的完整代码,以便我们尽力帮助您。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-08-18
      • 2020-05-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多