Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/tensorflow/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python Tensorflow根据索引从每行中删除元素(与聚集相反)_Python_Tensorflow_Tensorflow2.0 - Fatal编程技术网

Python Tensorflow根据索引从每行中删除元素(与聚集相反)

Python Tensorflow根据索引从每行中删除元素(与聚集相反),python,tensorflow,tensorflow2.0,Python,Tensorflow,Tensorflow2.0,首先是一些背景。我目前正在为我的数据输入管道编写一个自定义TensorFlow 2.x预处理函数。最终,我将在批处理中映射map。本质上,该函数接收一批行,并通过复制行并根据条件删除每行中的元素来生成更大的批。例如,如果输入批次看起来像 [[4, 1, 10, 10, 2], [10, 7, 9, 10, 10], [6, 8, 10, 3, 5]] 然后,函数应根据没有10的位置生成新样本。对于非-10的每次出现,将删除这些元素,例如,从第一个样品(新样品)中删除4个,从另一

首先是一些背景。我目前正在为我的数据输入管道编写一个自定义TensorFlow 2.x预处理函数。最终,我将在批处理中映射
map
。本质上,该函数接收一批行,并通过复制行并根据条件删除每行中的元素来生成更大的批。例如,如果输入批次看起来像

[[4,  1, 10, 10,  2],
 [10, 7,  9, 10, 10],
 [6,  8, 10,  3,  5]]
然后,函数应根据没有10的位置生成新样本。对于非-10的每次出现,将删除这些元素,例如,从第一个样品(新样品)中删除4个,从另一个样品中删除1个,…,从最后一个样品中删除5个。从输入批次中,我们将有9个样本:

[[1, 10, 10, 2],
 [4, 10, 10, 2],
 [4, 1, 10, 10],
 [10, 9, 10, 10],
 [10, 7, 10, 10],
 [8, 10, 3, 5],
 [6, 10, 3, 5],
 [6, 8, 10, 5],
 [6, 8, 10, 3]]
现在谈谈我的职责。通过使用
tf.where
tf.collect
tf.unique\u with_counts
、以及
tf.repeat
,我能够以正确的次数复制原始行:

def myFunction(数据):
#返回两列张量,每行一个
#作为索引对。。。
PresentDices=tf.where(数据!=10)
#抓取第一列(行)并计算有多少行
#每行出现的次数。。。
行=tf.gather(当前行,索引=0,轴=1)
_,u,counts=tf.unique_与_计数(行)
#根据计数重复每一行。。。
数据=tf.重复(数据,重复=计数,轴=0)
#现在数据的第一行复制了3次,第二行复制了两次,以此类推。
然而,考虑到我在
presentDices
中有索引,我现在被困于如何从每一行中删除适当的元素。使用
numpy
,我可以简单地索引
数据
,并进行相应的重塑,但TensorFlow似乎没有很好的索引多维张量的能力

我已经研究了
tf.boolean\u mask
,但是我需要在适当的位置分配
False
。我能找到的最接近的东西是
tf.gather\u nd
,但是提取了给定索引的数据。相反,我需要这个函数的否定。给定索引,提取除这些索引处的之外的所有数据

有没有办法利用现有的TensorFlow函数来获得我想要的功能


谢谢

您可以执行以下操作。我知道这可能有点头晕。最简单的方法就是使用此代码作为参考来做一个示例

def f(data):
    
    # Boolean mask where it's not 10
    a = (data != 10)
    # Repeat and reshape to n x 5 x 5
    a = tf.reshape(tf.repeat(a, 5), [-1, 5, 5])
    # Create a identity matrix of size 1 x 5 x 5
    eye = tf.reshape(tf.eye(5), [1,5,5])
    # Create a mask of size n x 5 x 5. This basically forces a to have only a single false value for each row
    # This single false element is the element to be removed
    mask = ~tf.cast(tf.reshape(tf.cast(a,'int32')* tf.cast(eye, 'int32'), [-1, 5]), 'bool')

    # Remove all the rows with all elements True. This ensures at least one element is removed from all existing rows
    mask = tf.cast(mask, 'int32') * tf.cast(~tf.reduce_all(mask, axis=1, keepdims=True), 'int32')
    mask = tf.cast(mask, 'bool')
    
    # Get the required rows and discard others and reshape
    res = tf.boolean_mask(tf.repeat(data, 5, axis=0), mask)     
    res = tf.reshape(res, [-1,4])

    return res
这就产生了,

tf.Tensor(
[[ 1 10 10  2]
 [ 4 10 10  2]
 [ 4  1 10 10]
 [10  9 10 10]
 [10  7 10 10]
 [ 8 10  3  5]
 [ 6 10  3  5]
 [ 6  8 10  5]
 [ 6  8 10  3]], shape=(9, 4), dtype=int32)

您可以执行以下操作。我知道这可能有点头晕。最简单的方法就是使用此代码作为参考来做一个示例

def f(data):
    
    # Boolean mask where it's not 10
    a = (data != 10)
    # Repeat and reshape to n x 5 x 5
    a = tf.reshape(tf.repeat(a, 5), [-1, 5, 5])
    # Create a identity matrix of size 1 x 5 x 5
    eye = tf.reshape(tf.eye(5), [1,5,5])
    # Create a mask of size n x 5 x 5. This basically forces a to have only a single false value for each row
    # This single false element is the element to be removed
    mask = ~tf.cast(tf.reshape(tf.cast(a,'int32')* tf.cast(eye, 'int32'), [-1, 5]), 'bool')

    # Remove all the rows with all elements True. This ensures at least one element is removed from all existing rows
    mask = tf.cast(mask, 'int32') * tf.cast(~tf.reduce_all(mask, axis=1, keepdims=True), 'int32')
    mask = tf.cast(mask, 'bool')
    
    # Get the required rows and discard others and reshape
    res = tf.boolean_mask(tf.repeat(data, 5, axis=0), mask)     
    res = tf.reshape(res, [-1,4])

    return res
这就产生了,

tf.Tensor(
[[ 1 10 10  2]
 [ 4 10 10  2]
 [ 4  1 10 10]
 [10  9 10 10]
 [10  7 10 10]
 [ 8 10  3  5]
 [ 6 10  3  5]
 [ 6  8 10  5]
 [ 6  8 10  3]], shape=(9, 4), dtype=int32)
您可以使用tf.boolean\u mask和tf.scatter\u nd为(重复的)数据创建布尔向量。 首先,创建索引张量以指示要遮罩的值:

row = tf.constant([0,1,2,3,4,5,6,7,8] ,dtype = tf.int64)
mask_for_each_row = tf.stack([row ,presentIndices[: , 1]],axis = 1 )
然后在tf.scatter方法中将每行的掩码用作索引:

样本张量:

      <tf.Tensor: shape=(9, 4), dtype=int32, numpy=
      array([[ 1, 10, 10,  2],
             [ 4, 10, 10,  2],
             [ 4,  1, 10, 10],
             [10,  9, 10, 10],
             [10,  7, 10, 10],
             [ 8, 10,  3,  5],
             [ 6, 10,  3,  5],
             [ 6,  8, 10,  5],
             [ 6,  8, 10,  3]])> 

您可以使用tf.boolean\u mask和tf.scatter\n为(重复的)数据创建布尔向量。 首先,创建索引张量以指示要遮罩的值:

row = tf.constant([0,1,2,3,4,5,6,7,8] ,dtype = tf.int64)
mask_for_each_row = tf.stack([row ,presentIndices[: , 1]],axis = 1 )
然后在tf.scatter方法中将每行的掩码用作索引:

样本张量:

      <tf.Tensor: shape=(9, 4), dtype=int32, numpy=
      array([[ 1, 10, 10,  2],
             [ 4, 10, 10,  2],
             [ 4,  1, 10, 10],
             [10,  9, 10, 10],
             [10,  7, 10, 10],
             [ 8, 10,  3,  5],
             [ 6, 10,  3,  5],
             [ 6,  8, 10,  5],
             [ 6,  8, 10,  3]])> 


Cool感谢您的回复!但在最终将被映射的TensorFlow函数中是否允许for循环?当我试图将其输入到我的函数中,然后在我的函数中调用map到批处理时,它抱怨“功能不受支持”。有没有办法使用tf方法来逐行映射此操作?谢谢。只需注意一点,我最终用
tf.range(9)
替换了
tf.constant([0,1,…,8])
,因为它更短。非常感谢您的回复!但在最终将被映射的TensorFlow函数中是否允许for循环?当我试图将其输入到我的函数中,然后在我的函数中调用map到批处理时,它抱怨“功能不受支持”。有没有办法使用tf方法来逐行映射此操作?谢谢。只需注意一点,我最终用
tf.range(9)
替换了
tf.constant([0,1,…,8])
,因为它更短。