【tensorflow】[Python] tensorflow tensor的批量条件改值 如何修改tensor中符合特定条件的元素值 将满足特定规则的tensor元素值修改
问题叙述这样一个tensor想用类似x[np.where(x>8)]=8x[np.where(x<3)]=3的形式将其批量改成这种批量的条件判断改值,由于tensor不能直接用索引修改值尝试了几种方法,比如更改为Varient、numpy等会出现TypeError:onlyintegerscalararrayscanbeconvertedtoascalarindex或者TypeError:‘Res