2016-04-04 16 views
0

Gibt es eine Möglichkeit, eine logische Negation des Nehmens (dh eine NOT-Operation) auf einem ByteTensor in Torch:Logische Negation ByteTensor in Fackel

th> a = torch.rand(4) 

th> a 
0.5786 
0.5271 
0.0090 
0.8859 
[torch.DoubleTensor of size 4] 

th> b = a:le(0.5) 

th> a[b] 
0.001 * 
9.0080 
[torch.DoubleTensor of size 1] 

th> -- How to select all "other" elements of a? 
th> -- a[~b] or a[!b] or a[b:neg()] don't work. 

Antwort