not_equal_to {rTorch}R Documentation

Compare two tensors if not equal

Description

This generic is approximately similar to torch$ne(a, b), with the difference that the generic returns a tensor of booleans instead of a tensor of data type torch$uint8.

Usage

## S3 method for class 'torch.Tensor'
x != y

Arguments

x

tensor

y

tensor

Value

A tensor of booleans, where False corresponds to 0, and 1 to True in a tensor of data type torch$bool.

Examples

## Not run: 
a <- torch$Tensor(list(1, 1, 1))
b <- torch$Tensor(list(2, 2, 2))
a != b

## End(Not run)

[Package rTorch version 0.4.2 Index]