分类:矩阵
2021
04-27
2020
10-08
行和列的位置都在以下三个列表中的一列中,则对应位置为1,其余位置全为0——[7-56,239-327,438-454,522-556,574-586]——[57-85,96-112,221-238]——[113-220,328-437,455-521,557-573]代码实现defgenerateMaskBasedOnDom(dom_path,length):""":paramdom_path:thisisafilepath,whichcontainsthefollowinginformation:[7-56,239-327,438-454,522-556,574-586][57-85,96-112,221-238][1...
继续阅读 >
2020
10-08
一般TensorFlow中扩展维度可以使用tf.expand_dims()。近来发现另一种可以直接运用取数据操作符[]就能扩展维度的方法。用法很简单,在要扩展的维度上加上tf.newaxis就行了。foo=tf.constant([[1,2,3],[4,5,6],[7,8,9]])print(foo[tf.newaxis,:,:].eval())#=>[[[1,2,3],[4,5,6],[7,8,9]]]print(foo[:,tf.newaxis,:].eval())#=>[[[1,2,3]],[[4,5,6]],[[7,8,9]]]print(foo[:,:,tf.newaxis].eval())#=>[[[1],[2]...
继续阅读 >
2020
09-27