Learn R Programming

⚠️There's a newer version (0.14.2) of this package.Take me there.

torch

Installation

torch can be installed from CRAN with:

install.packages("torch")

You can also install the development version with:

remotes::install_github("mlverse/torch")

At the first package load additional software will be installed. See also the full installation guide here.

Examples

You can create torch tensors from R objects with the torch_tensor function and convert them back to R objects with as_array.

library(torch)
x <- array(runif(8), dim = c(2, 2, 2))
y <- torch_tensor(x, dtype = torch_float64())
y
#> torch_tensor
#> (1,.,.) = 
#>   0.6192  0.5800
#>   0.2488  0.3681
#> 
#> (2,.,.) = 
#>   0.0042  0.9206
#>   0.4388  0.5664
#> [ CPUDoubleType{2,2,2} ]
identical(x, as_array(y))
#> [1] TRUE

Simple Autograd Example

In the following snippet we let torch, using the autograd feature, calculate the derivatives:

x <- torch_tensor(1, requires_grad = TRUE)
w <- torch_tensor(2, requires_grad = TRUE)
b <- torch_tensor(3, requires_grad = TRUE)
y <- w * x + b
y$backward()
x$grad
#> torch_tensor
#>  2
#> [ CPUFloatType{1} ]
w$grad
#> torch_tensor
#>  1
#> [ CPUFloatType{1} ]
b$grad
#> torch_tensor
#>  1
#> [ CPUFloatType{1} ]

Contributing

No matter your current skills it’s possible to contribute to torch development. See the contributing guide for more information.

Copy Link

Version

Install

install.packages('torch')

Monthly Downloads

7,962

Version

0.11.0

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Daniel Falbel

Last Published

June 6th, 2023

Functions in torch (0.11.0)

autograd_set_grad_mode

Set grad mode
autograd_backward

Computes the sum of gradients of given tensors w.r.t. graph leaves.
Distribution

Generic R6 class representing distributions
autograd_function

Records operation history and defines formulas for differentiating ops.
AutogradContext

Class representing the context.
autograd_grad

Computes and returns the sum of gradients of outputs w.r.t. the inputs.
backends_cudnn_version

CuDNN version
backends_cudnn_is_available

CuDNN is available
Constraint

Abstract base class for constraints.
backends_mps_is_available

MPS is available
backends_mkl_is_available

MKL is available
backends_openmp_is_available

OpenMP is available
contrib_sort_vertices

Contrib sort vertices
cuda_amp_grad_scaler

Creates a gradient scaler
as_array

Converts to array
cuda_runtime_version

Returns the CUDA runtime version
dataloader_make_iter

Creates an iterator from a DataLoader
cuda_get_device_capability

Returns the major and minor CUDA capability of device
cuda_current_device

Returns the index of a currently selected device.
cuda_device_count

Returns the number of GPUs available.
cuda_empty_cache

Empty cache
cuda_memory_stats

Returns a dictionary of CUDA memory allocator statistics for a given device.
cuda_is_available

Returns a bool indicating if CUDA is currently available.
backends_mkldnn_is_available

MKLDNN is available
torch_set_default_dtype

Gets and sets the default floating point dtype.
dataset_subset

Dataset Subset
dataloader

Data loader. Combines a dataset and a sampler, and provides single- or multi-process iterators over the dataset.
distr_categorical

Creates a categorical distribution parameterized by either probs or logits (but not both).
broadcast_all

Given a list of values (possibly containing numbers), returns a list where each value is broadcasted based on the following rules:
call_torch_function

Call a (Potentially Unexported) Torch Function
dataset

Helper function to create an function that generates R6 instances of class dataset
is_torch_dtype

Check if object is a torch data type
dataloader_next

Get the next element of a dataloader iterator
install_torch

Install Torch
distr_bernoulli

Creates a Bernoulli distribution parameterized by probs or logits (but not both). Samples are binary (0 or 1). They take the value 1 with probability p and 0 with probability 1 - p.
is_torch_memory_format

Check if an object is a memory format
distr_normal

Creates a normal (also called Gaussian) distribution parameterized by loc and scale.
get_install_libs_url

Install Torch from files
distr_chi2

Creates a Chi2 distribution parameterized by shape parameter df. This is exactly equivalent to distr_gamma(alpha=0.5*df, beta=0.5)
is_torch_qscheme

Checks if an object is a QScheme
is_optimizer

Checks if the object is a torch optimizer
enumerate

Enumerate an iterator
is_torch_layout

Check if an object is a torch layout.
jit_trace_module

Trace a module
distr_gamma

Creates a Gamma distribution parameterized by shape concentration and rate.
jit_tuple

Adds the 'jit_tuple' class to the input
distr_multivariate_normal

Gaussian distribution
distr_mixture_same_family

Mixture of components in the same family
cuda_synchronize

Waits for all kernels in all streams on a CUDA device to complete.
jit_load

Loads a script_function or script_module previously saved with jit_save
jit_save

Saves a script_function to a path
is_dataloader

Checks if the object is a dataloader
jit_save_for_mobile

Saves a script_function or script_module in bytecode form, to be loaded on a mobile device
linalg_cholesky_ex

Computes the Cholesky decomposition of a complex Hermitian or real symmetric positive-definite matrix.
linalg_cholesky

Computes the Cholesky decomposition of a complex Hermitian or real symmetric positive-definite matrix.
linalg_matrix_norm

Computes a matrix norm.
is_nn_buffer

Checks if the object is a nn_buffer
jit_scalar

Adds the 'jit_scalar' class to the input
jit_trace

Trace a function and return an executable script_function.
linalg_eigvals

Computes the eigenvalues of a square matrix.
linalg_matrix_power

Computes the n-th power of a square matrix for an integer n.
linalg_eigvalsh

Computes the eigenvalues of a complex Hermitian or real symmetric matrix.
is_torch_device

Checks if object is a device
linalg_cond

Computes the condition number of a matrix with respect to a matrix norm.
jit_ops

Enable idiomatic access to JIT operators from R.
linalg_lstsq

Computes a solution to the least squares problem of a system of linear equations.
is_nn_parameter

Checks if an object is a nn_parameter
linalg_inv_ex

Computes the inverse of a square matrix if it is invertible.
is_nn_module

Checks if the object is an nn_module
linalg_slogdet

Computes the sign and natural logarithm of the absolute value of the determinant of a square matrix.
linalg_qr

Computes the QR decomposition of a matrix.
load_state_dict

Load a state dict file
linalg_solve

Computes the solution of a square system of linear equations with a unique solution.
lr_reduce_on_plateau

Reduce learning rate on plateau
linalg_svd

Computes the singular value decomposition (SVD) of a matrix.
local_device

Device contexts
local_autocast

Autocast context manager
linalg_matrix_rank

Computes the numerical rank of a matrix.
linalg_det

Computes the determinant of a square matrix.
linalg_multi_dot

Efficiently multiplies two or more matrices
lr_one_cycle

Once cycle learning rate
linalg_tensorsolve

Computes the solution X to the system torch_tensordot(A, X) = B.
linalg_vector_norm

Computes a vector norm.
linalg_norm

Computes a vector or matrix norm.
nn_adaptive_avg_pool2d

Applies a 2D adaptive average pooling over an input signal composed of several input planes.
nn_adaptive_avg_pool3d

Applies a 3D adaptive average pooling over an input signal composed of several input planes.
lr_scheduler

Creates learning rate schedulers
linalg_pinv

Computes the pseudoinverse (Moore-Penrose inverse) of a matrix.
nn_batch_norm1d

BatchNorm1D module
nn_avg_pool3d

Applies a 3D average pooling over an input signal composed of several input planes.
lr_lambda

Sets the learning rate of each parameter group to the initial lr times a given function. When last_epoch=-1, sets initial lr as lr.
nn_bce_with_logits_loss

BCE with logits loss
nn_bce_loss

Binary cross entropy loss
lr_multiplicative

Multiply the learning rate of each parameter group by the factor given in the specified function. When last_epoch=-1, sets initial lr as lr.
nn_contrib_sparsemax

Sparsemax activation
nn_adaptive_log_softmax_with_loss

AdaptiveLogSoftmaxWithLoss module
nn_batch_norm3d

BatchNorm3D
nn_batch_norm2d

BatchNorm2D
nn_adaptive_max_pool1d

Applies a 1D adaptive max pooling over an input signal composed of several input planes.
nn_celu

CELU module
is_undefined_tensor

Checks if a tensor is undefined
distr_poisson

Creates a Poisson distribution parameterized by rate, the rate parameter.
nn_avg_pool2d

Applies a 2D average pooling over an input signal composed of several input planes.
nn_conv2d

Conv2D module
nn_conv1d

Conv1D module
nn_avg_pool1d

Applies a 1D average pooling over an input signal composed of several input planes.
nn_dropout2d

Dropout2D module
nn_conv_transpose2d

ConvTranpose2D module
enumerate.dataloader

Enumerate an iterator
linalg_tensorinv

Computes the multiplicative inverse of torch_tensordot()
jit_compile

Compile TorchScript code into a graph
nn_conv_transpose1d

ConvTranspose1D
nn_conv3d

Conv3D module
nn_elu

ELU module
nn_embedding

Embedding module
linalg_eig

Computes the eigenvalue decomposition of a square matrix if it exists.
linalg_svdvals

Computes the singular values of a matrix.
nn_embedding_bag

Embedding bag module
nn_dropout

Dropout module
nn_group_norm

Group normalization
nn_dropout3d

Dropout3D module
nn_init_eye_

Eye initialization
nn_ctc_loss

The Connectionist Temporal Classification loss.
nn_flatten

Flattens a contiguous range of dims into a tensor.
nn_init_dirac_

Dirac initialization
nn_init_constant_

Constant initialization
nn_init_ones_

Ones initialization
nn_conv_transpose3d

ConvTranpose3D module
nn_hinge_embedding_loss

Hinge embedding loss
nn_init_calculate_gain

Calculate gain
nn_fractional_max_pool3d

Applies a 3D fractional max pooling over an input signal composed of several input planes.
nn_fractional_max_pool2d

Applies a 2D fractional max pooling over an input signal composed of several input planes.
nn_init_normal_

Normal initialization
nn_identity

Identity module
nn_adaptive_max_pool2d

Applies a 2D adaptive max pooling over an input signal composed of several input planes.
linalg_eigh

Computes the eigenvalue decomposition of a complex Hermitian or real symmetric matrix.
nn_bilinear

Bilinear module
nn_hardswish

Hardswish module
linalg_householder_product

Computes the first n columns of a product of Householder matrices.
linalg_inv

Computes the inverse of a square matrix if it exists.
nn_lp_pool1d

Applies a 1D power-average pooling over an input signal composed of several input planes.
nn_gru

Applies a multi-layer gated recurrent unit (GRU) RNN to an input sequence.
nn_adaptive_max_pool3d

Applies a 3D adaptive max pooling over an input signal composed of several input planes.
nn_hardshrink

Hardshwink module
lr_step

Step learning rate decay
nn_cross_entropy_loss

CrossEntropyLoss module
nn_cosine_embedding_loss

Cosine embedding loss
nn_init_uniform_

Uniform initialization
nn_init_trunc_normal_

Truncated normal initialization
nn_buffer

Creates a nn_buffer
nn_lp_pool2d

Applies a 2D power-average pooling over an input signal composed of several input planes.
nn_adaptive_avg_pool1d

Applies a 1D adaptive average pooling over an input signal composed of several input planes.
nn_init_kaiming_uniform_

Kaiming uniform initialization
nn_leaky_relu

LeakyReLU module
nn_linear

Linear module
nn_lstm

Applies a multi-layer long short-term memory (LSTM) RNN to an input sequence.
nn_init_kaiming_normal_

Kaiming normal initialization
nn_hardtanh

Hardtanh module
nn_init_xavier_normal_

Xavier normal initialization
nn_hardsigmoid

Hardsigmoid module
nn_margin_ranking_loss

Margin ranking loss
nn_layer_norm

Layer normalization
nn_log_softmax

LogSoftmax module
nn_max_pool1d

MaxPool1D module
nn_max_pool2d

MaxPool2D module
nn_glu

GLU module
nn_l1_loss

L1 loss
nn_parameter

Creates an nn_parameter
nn_poisson_nll_loss

Poisson NLL loss
nn_gelu

GELU module
nn_module_dict

Container that allows named values
nn_nll_loss

Nll loss
nn_module

Base class for all neural network modules.
nn_log_sigmoid

LogSigmoid module
nn_pairwise_distance

Pairwise distance
nn_init_xavier_uniform_

Xavier uniform initialization
nn_mse_loss

MSE loss
nn_module_list

Holds submodules in a list.
nn_sequential

A sequential container
nn_selu

SELU module
nn_relu

ReLU module
nn_relu6

ReLu6 module
nn_softmin

Softmin
nn_init_orthogonal_

Orthogonal initialization
nn_sigmoid

Sigmoid module
nn_soft_margin_loss

Soft margin loss
nn_silu

Applies the Sigmoid Linear Unit (SiLU) function, element-wise. The SiLU function is also known as the swish function.
nn_smooth_l1_loss

Smooth L1 loss
nn_tanh

Tanh module
nn_rnn

RNN module
nn_rrelu

RReLU module
nn_tanhshrink

Tanhshrink module
nn_upsample

Upsample module
nn_utils_clip_grad_norm_

Clips gradient norm of an iterable of parameters.
nn_softplus

Softplus module
nn_triplet_margin_loss

Triplet margin loss
nn_threshold

Threshold module
nnf_adaptive_max_pool2d

Adaptive_max_pool2d
nnf_adaptive_max_pool3d

Adaptive_max_pool3d
nn_softmax

Softmax module
nn_max_unpool1d

Computes a partial inverse of MaxPool1d.
nn_init_sparse_

Sparse initialization
nn_kl_div_loss

Kullback-Leibler divergence loss
nn_init_zeros_

Zeros initialization
nn_prelu

PReLU module
nn_multilabel_soft_margin_loss

Multi label soft margin loss
nn_max_pool3d

Applies a 3D max pooling over an input signal composed of several input planes.
nn_multilabel_margin_loss

Multilabel margin loss
nn_utils_rnn_pad_sequence

Pad a list of variable length Tensors with padding_value
nn_utils_weight_norm

nn_utils_weight_norm
nnf_contrib_sparsemax

Sparsemax
nnf_conv1d

Conv1d
nnf_conv2d

Conv2d
nnf_conv_transpose1d

Conv_transpose1d
nnf_conv_tbc

Conv_tbc
nn_max_unpool3d

Computes a partial inverse of MaxPool3d.
nn_max_unpool2d

Computes a partial inverse of MaxPool2d.
nnf_alpha_dropout

Alpha_dropout
nnf_bilinear

Bilinear
nn_multihead_attention

MultiHead attention
nn_multi_margin_loss

Multi margin loss
nnf_elu

Elu
nn_utils_rnn_pack_sequence

Packs a list of variable length Tensors
nn_utils_rnn_pad_packed_sequence

Pads a packed batch of variable length sequences.
nnf_avg_pool2d

Avg_pool2d
nnf_dropout3d

Dropout3d
nnf_fold

Fold
nnf_avg_pool1d

Avg_pool1d
nnf_adaptive_avg_pool3d

Adaptive_avg_pool3d
nnf_adaptive_max_pool1d

Adaptive_max_pool1d
nnf_conv3d

Conv3d
nnf_binary_cross_entropy_with_logits

Binary_cross_entropy_with_logits
nn_softsign

Softsign module
nn_softshrink

Softshrink module
nnf_fractional_max_pool3d

Fractional_max_pool3d
nnf_grid_sample

Grid_sample
nnf_logsigmoid

Logsigmoid
nnf_glu

Glu
nnf_celu

Celu
nn_unflatten

Unflattens a tensor dim expanding it to a desired shape. For use with [nn_sequential.
nnf_affine_grid

Affine_grid
nnf_binary_cross_entropy

Binary_cross_entropy
nn_triplet_margin_with_distance_loss

Triplet margin with distance loss
nnf_ctc_loss

Ctc_loss
nnf_cross_entropy

Cross_entropy
nnf_lp_pool1d

Lp_pool1d
nnf_gelu

Gelu
nnf_adaptive_avg_pool1d

Adaptive_avg_pool1d
nnf_cosine_similarity

Cosine_similarity
nn_utils_rnn_pack_padded_sequence

Packs a Tensor containing padded sequences of variable length.
nn_softmax2d

Softmax2d module
nnf_multi_head_attention_forward

Multi head attention forward
nnf_adaptive_avg_pool2d

Adaptive_avg_pool2d
nn_utils_clip_grad_value_

Clips gradient of an iterable of parameters at specified value.
nn_prune_head

Prune top layer(s) of a network
nnf_lp_pool2d

Lp_pool2d
nnf_hardshrink

Hardshrink
nnf_hardswish

Hardswish
nnf_interpolate

Interpolate
nnf_conv_transpose3d

Conv_transpose3d
nnf_conv_transpose2d

Conv_transpose2d
nnf_margin_ranking_loss

Margin_ranking_loss
nnf_poisson_nll_loss

Poisson_nll_loss
nnf_kl_div

Kl_div
nnf_hardtanh

Hardtanh
nnf_prelu

Prelu
nnf_instance_norm

Instance_norm
nnf_hinge_embedding_loss

Hinge_embedding_loss
nnf_leaky_relu

Leaky_relu
nnf_soft_margin_loss

Soft_margin_loss
nnf_max_pool1d

Max_pool1d
nnf_fractional_max_pool2d

Fractional_max_pool2d
nnf_threshold

Threshold
nnf_dropout

Dropout
nnf_normalize

Normalize
nnf_batch_norm

Batch_norm
nnf_mse_loss

Mse_loss
nnf_embedding

Embedding
nnf_embedding_bag

Embedding_bag
nnf_pad

Pad
nnf_linear

Linear
nnf_gumbel_softmax

Gumbel_softmax
nnf_avg_pool3d

Avg_pool3d
nnf_cosine_embedding_loss

Cosine_embedding_loss
nnf_triplet_margin_loss

Triplet_margin_loss
nnf_dropout2d

Dropout2d
nnf_l1_loss

L1_loss
optim_adagrad

Adagrad optimizer
optim_adadelta

Adadelta optimizer
nnf_max_pool2d

Max_pool2d
nnf_pairwise_distance

Pairwise_distance
optim_adamw

Implements AdamW algorithm
nnf_smooth_l1_loss

Smooth_l1_loss
nnf_multilabel_soft_margin_loss

Multilabel_soft_margin_loss
threads

Number of threads
nnf_max_unpool1d

Max_unpool1d
nnf_triplet_margin_with_distance_loss

Triplet margin with distance loss
nnf_max_pool3d

Max_pool3d
nnf_unfold

Unfold
nnf_layer_norm

Layer_norm
nnf_rrelu

Rrelu
optim_asgd

Averaged Stochastic Gradient Descent optimizer
nnf_selu

Selu
nnf_nll_loss

Nll_loss
optim_lbfgs

LBFGS optimizer
nnf_multi_margin_loss

Multi_margin_loss
nnf_multilabel_margin_loss

Multilabel_margin_loss
torch_abs

Abs
nnf_relu6

Relu6
nnf_relu

Relu
optim_adam

Implements Adam algorithm.
torch_addmv

Addmv
torch_arccos

Arccos
torch_arccosh

Arccosh
torch_addmm

Addmm
nnf_sigmoid

Sigmoid
nnf_group_norm

Group_norm
nnf_one_hot

One_hot
torch_arcsin

Arcsin
torch_addcdiv

Addcdiv
torch_as_strided

As_strided
torch_addcmul

Addcmul
torch_arcsinh

Arcsinh
torch_argsort

Argsort
nnf_softshrink

Softshrink
optim_required

Dummy value indicating a required value.
nnf_softplus

Softplus
slc

Creates a slice
optimizer

Creates a custom optimizer
optim_rmsprop

RMSprop optimizer
torch_atan

Atan
torch_add

Add
torch_bincount

Bincount
torch_addbmm

Addbmm
tensor_dataset

Dataset wrapping tensors.
torch_allclose

Allclose
torch_acosh

Acosh
nnf_hardsigmoid

Hardsigmoid
nnf_local_response_norm

Local_response_norm
nnf_log_softmax

Log_softmax
nnf_softsign

Softsign
torch_bitwise_not

Bitwise_not
torch_cdist

Cdist
torch_cat

Cat
torch_bitwise_or

Bitwise_or
torch_channel_shuffle

Channel_shuffle
torch_cartesian_prod

Cartesian_prod
torch_argmin

Argmin
torch_argmax

Argmax
torch_can_cast

Can_cast
torch_bitwise_and

Bitwise_and
nnf_softmin

Softmin
nnf_softmax

Softmax
nnf_silu

Applies the Sigmoid Linear Unit (SiLU) function, element-wise. See nn_silu() for more information.
torch_absolute

Absolute
nnf_max_unpool2d

Max_unpool2d
torch_bmm

Bmm
torch_atleast_2d

Atleast_2d
torch_atan2

Atan2
torch_atleast_3d

Atleast_3d
torch_conv2d

Conv2d
torch_conv_tbc

Conv_tbc
torch_block_diag

Block_diag
torch_chunk

Chunk
torch_acos

Acos
torch_clamp

Clamp
torch_amax

Amax
torch_bartlett_window

Bartlett_window
torch_bernoulli

Bernoulli
torch_cholesky

Cholesky
torch_broadcast_tensors

Broadcast_tensors
optim_rprop

Implements the resilient backpropagation algorithm.
optim_sgd

SGD optimizer
torch_amin

Amin
torch_asinh

Asinh
torch_asin

Asin
torch_avg_pool1d

Avg_pool1d
torch_arctan

Arctan
%>%

Pipe operator
torch_addr

Addr
sampler

Creates a new Sampler
nnf_pdist

Pdist
nnf_tanhshrink

Tanhshrink
torch_bitwise_xor

Bitwise_xor
nnf_pixel_shuffle

Pixel_shuffle
nnf_max_unpool3d

Max_unpool3d
reexports

Re-exporting the as_iterator function.
torch_conv_transpose1d

Conv_transpose1d
torch_conv3d

Conv3d
torch_cosine_similarity

Cosine_similarity
torch_device

Create a Device object
torch_count_nonzero

Count_nonzero
torch_diag

Diag
torch_clip

Clip
torch_cholesky_inverse

Cholesky_inverse
torch_combinations

Combinations
torch_cos

Cos
torch_complex

Complex
torch_bucketize

Bucketize
torch_cholesky_solve

Cholesky_solve
torch_conj

Conj
torch_diag_embed

Diag_embed
torch_einsum

Einsum
torch_empty

Empty
torch_adaptive_avg_pool1d

Adaptive_avg_pool1d
torch_det

Det
torch_dequantize

Dequantize
torch_conv1d

Conv1d
torch_empty_like

Empty_like
torch_empty_strided

Empty_strided
torch_digamma

Digamma
torch_angle

Angle
torch_deg2rad

Deg2rad
torch_expm1

Expm1
torch_divide

Divide
torch_dtype

Torch data types
torch_erf

Erf
torch_conv_transpose2d

Conv_transpose2d
torch_exp2

Exp2
torch_cumsum

Cumsum
torch_ceil

Ceil
torch_cosh

Cosh
torch_arange

Arange
torch_erfc

Erfc
torch_conv_transpose3d

Conv_transpose3d
torch_div

Div
torch_cummin

Cummin
torch_eig

Eig
torch_diagonal

Diagonal
torch_blackman_window

Blackman_window
torch_cumprod

Cumprod
torch_clone

Clone
torch_flatten

Flatten
torch_celu

Celu
torch_fft_irfft

Irfft
torch_flip

Flip
torch_diff

Computes the n-th forward difference along the given dimension.
torch_dist

Dist
torch_floor

Floor
torch_fft_ifft

Ifft
torch_fft_fftfreq

fftfreq
torch_gather

Gather
torch_fft_rfft

Rfft
torch_atanh

Atanh
torch_arctanh

Arctanh
torch_atleast_1d

Atleast_1d
torch_diagflat

Diagflat
torch_fix

Fix
torch_dot

Dot
torch_dstack

Dstack
torch_erfinv

Erfinv
torch_full

Full
torch_full_like

Full_like
torch_generator

Create a Generator object
torch_ge

Ge
torch_baddbmm

Baddbmm
torch_chain_matmul

Chain_matmul
torch_celu_

Celu_
torch_cross

Cross
torch_geqrf

Geqrf
torch_ger

Ger
torch_iinfo

Integer type info
torch_fmod

Fmod
torch_frac

Frac
torch_i0

I0
torch_gt

Gt
torch_floor_divide

Floor_divide
torch_hamming_window

Hamming_window
torch_greater_equal

Greater_equal
torch_hann_window

Hann_window
torch_gcd

Gcd
torch_get_rng_state

RNG state management
torch_index_put

Modify values selected by indices.
torch_cummax

Cummax
torch_hstack

Hstack
torch_inverse

Inverse
torch_finfo

Floating point type info
torch_hypot

Hypot
torch_exp

Exp
torch_is_complex

Is_complex
torch_index_select

Index_select
torch_greater

Greater
torch_is_nonzero

Is_nonzero
torch_eq

Eq
torch_equal

Equal
torch_histc

Histc
torch_heaviside

Heaviside
torch_fft_fft

Fft
torch_fliplr

Fliplr
torch_eye

Eye
torch_flipud

Flipud
torch_isinf

Isinf
torch_isfinite

Isfinite
torch_install_path

A simple exported version of install_path Returns the torch installation path.
torch_layout

Creates the corresponding layout
torch_is_floating_point

Is_floating_point
torch_kthvalue

Kthvalue
torch_kron

Kronecker product
torch_isnan

Isnan
torch_isreal

Isreal
torch_isposinf

Isposinf
torch_lcm

Lcm
torch_index_put_

In-place version of torch_index_put.
torch_imag

Imag
torch_lgamma

Lgamma
torch_isclose

Isclose
torch_less

Less
torch_linspace

Linspace
torch_lerp

Lerp
torch_le

Le
torch_logical_xor

Logical_xor
torch_log1p

Log1p
torch_log10

Log10
torch_less_equal

Less_equal
torch_index

Index torch tensors
torch_logaddexp

Logaddexp
torch_is_installed

Verifies if torch is installed
torch_log2

Log2
torch_kaiser_window

Kaiser_window
torch_isneginf

Isneginf
torch_istft

Istft
torch_log

Log
torch_logical_not

Logical_not
torch_load

Loads a saved object
torch_logical_or

Logical_or
torch_logcumsumexp

Logcumsumexp
torch_lu_unpack

Lu_unpack
torch_logaddexp2

Logaddexp2
torch_manual_seed

Sets the seed for generating random numbers.
torch_lt

Lt
torch_lstsq

Lstsq
torch_logspace

Logspace
torch_logsumexp

Logsumexp
torch_logit

Logit
torch_lu_solve

Lu_solve
torch_logical_and

Logical_and
torch_logdet

Logdet
torch_masked_select

Masked_select
torch_matrix_rank

Matrix_rank
torch_meshgrid

Meshgrid
torch_matmul

Matmul
torch_maximum

Maximum
torch_mean

Mean
torch_median

Median
torch_memory_format

Memory format
torch_lu

LU
torch_mv

Mv
torch_multiply

Multiply
torch_multinomial

Multinomial
torch_mul

Mul
torch_max

Max
torch_matrix_power

Matrix_power
torch_normal

Normal
torch_mvlgamma

Mvlgamma
torch_nanquantile

Nanquantile
torch_not_equal

Not_equal
torch_matrix_exp

Matrix_exp
torch_norm

Norm
torch_narrow

Narrow
torch_negative

Negative
torch_mode

Mode
torch_min

Min
torch_mm

Mm
torch_minimum

Minimum
torch_pdist

Pdist
torch_ones_like

Ones_like
torch_ones

Ones
torch_orgqr

Orgqr
torch_nonzero

Nonzero
torch_movedim

Movedim
torch_nansum

Nansum
torch_neg

Neg
torch_ne

Ne
torch_poisson

Poisson
torch_pixel_shuffle

Pixel_shuffle
torch_nextafter

Nextafter
torch_pinverse

Pinverse
torch_outer

Outer
torch_polar

Polar
torch_ormqr

Ormqr
torch_prod

Prod
torch_quantile

Quantile
torch_rad2deg

Rad2deg
torch_quantize_per_tensor

Quantize_per_tensor
torch_qr

Qr
torch_promote_types

Promote_types
torch_polygamma

Polygamma
torch_pow

Pow
torch_quantize_per_channel

Quantize_per_channel
torch_qscheme

Creates the corresponding Scheme object
torch_randperm

Randperm
torch_randn

Randn
torch_randint_like

Randint_like
torch_randint

Randint
torch_real

Real
torch_range

Range
torch_rand

Rand
torch_reciprocal

Reciprocal
torch_randn_like

Randn_like
torch_rand_like

Rand_like
torch_reshape

Reshape
torch_roll

Roll
torch_renorm

Renorm
torch_relu_

Relu_
torch_rot90

Rot90
torch_repeat_interleave

Repeat_interleave
torch_remainder

Remainder
torch_reduction

Creates the reduction objet
torch_result_type

Result_type
torch_relu

Relu
torch_rsqrt

Rsqrt
torch_selu

Selu
torch_searchsorted

Searchsorted
torch_scalar_tensor

Scalar tensor
torch_save

Saves an object to a disk file.
torch_selu_

Selu_
torch_sqrt

Sqrt
torch_split

Split
torch_sgn

Sgn
torch_serialize

Serialize a torch object returning a raw object
torch_slogdet

Slogdet
torch_sinh

Sinh
torch_sin

Sin
torch_signbit

Signbit
torch_sign

Sign
torch_sigmoid

Sigmoid
torch_svd

Svd
torch_sort

Sort
torch_rrelu_

Rrelu_
torch_square

Square
torch_sparse_coo_tensor

Sparse_coo_tensor
torch_sum

Sum
torch_round

Round
torch_std

Std
torch_stack

Stack
torch_stft

Stft
torch_std_mean

Std_mean
torch_squeeze

Squeeze
torch_sub

Sub
torch_subtract

Subtract
torch_tensor

Converts R objects to a torch tensor
torch_tensordot

Tensordot
torch_tanh

Tanh
torch_take

Take
torch_tan

Tan
torch_t

T
torch_symeig

Symeig
torch_tensor_from_buffer

Creates a tensor from a buffer of memory
torch_topk

Topk
torch_threshold_

Threshold_
torch_trapz

Trapz
torch_tril_indices

Tril_indices
torch_triu

Triu
torch_true_divide

TRUE_divide
torch_tril

Tril
torch_trace

Trace
torch_triu_indices

Triu_indices
torch_triangular_solve

Triangular_solve
torch_trunc

Trunc
torch_transpose

Transpose
torch_vdot

Vdot
torch_unique_consecutive

Unique_consecutive
torch_unbind

Unbind
torch_unsafe_chunk

Unsafe_chunk
torch_unsafe_split

Unsafe_split
torch_var_mean

Var_mean
torch_var

Var
torch_where

Where
torch_view_as_complex

View_as_complex
torch_zeros

Zeros
with_no_grad

Temporarily modify gradient recording.
with_enable_grad

Enable grad
torch_vander

Vander
torch_view_as_real

View_as_real
torch_unsqueeze

Unsqueeze
torch_vstack

Vstack
with_detect_anomaly

Context-manager that enable anomaly detection for the autograd engine.
torch_zeros_like

Zeros_like