Articles on Trending Technologies

Technical articles with clear explanations and examples

torch.normal() Method in Python PyTorch

Shahid Akhtar Khan
Shahid Akhtar Khan
Updated on 27-Jan-2022 2K+ Views

To create a tensor of random numbers drawn from separate normal distributions whose mean and std are given, we apply the torch.normal() method. This method takes two input parameters − mean and std.mean is a tensor with the mean of each output element’s normal distribution, andstd is a tensor with the standard deviation of each output element’s normal distribution.It returns a tensor of random numbers drawn from separate normal distributions whose mean and standard deviation are mean and std.Syntaxtorch.normal(mean, std)StepsWe could use the following steps to create a tensor of random numbers drawn from separate normal distributions −Import the required ...

Read More

torch.polar() Method in Python PyTorch

Shahid Akhtar Khan
Shahid Akhtar Khan
Updated on 27-Jan-2022 711 Views

With given absolute values and angles, we can construct a complex number in PyTorch using torch.polar() method. The absolute value and angles must be float or double. Both the absolute value and the angle must be of the same type.If abs is a float, then angle must also be float.If the inputs are torch.float32, then the constructed complex tensor must be torch.complex64.If the inputs are torch.float64, then the complex tensor must be torch.complex128.Syntaxtorch.polar(abs, angle)Parametersabs – The absolute length of the complex tensor.angle – The angle of the complex tensor.StepsWe could use the following steps to construct a complex tensor with ...

Read More

How to compute the Hessian of a given scalar function in PyTorch?

Shahid Akhtar Khan
Shahid Akhtar Khan
Updated on 27-Jan-2022 1K+ Views

The hessian() function computes the Hessian of a given function. The hessian() function can be accessed from the torch.autograd.functional module. The function whose Hessian is being computed takes a tensor as the input and returns a tuple of tensors or a tensor. The hessian() function returns a tensor with the Hessian values computed for a function with the given input.Syntaxtorch.autograd.functional.hessian(func, input)Parametersfunc − It's a Python function for which the Hessian is computed.input − It’s input to the function, func.StepsWe could use the following steps to compute the Hessian of a given function −Import the required library. In all the following ...

Read More

How to compute the Jacobian of a given function in PyTorch?

Shahid Akhtar Khan
Shahid Akhtar Khan
Updated on 27-Jan-2022 3K+ Views

The jacobian() function computes the Jacobian of a given function. The jacobian() function can be accessed from the torch.autograd.functional module. The function whose Jacobian is being computed takes a tensor as the input and returns a tuple of tensors or a tensor. The jacobian() function returns a tensor with Jacobian values computed for a function with the given input.Syntaxtorch.autograd.functional.jacobian(func, input)Parametersfunc − It's a Python function for which the Jacobian is computed.input − It’s the input to the function,  func.StepsWe could use the following steps to compute the Jacobian of a given function −Import the required library. In all the following ...

Read More

Find Sum of all unique subarray sum for a given array in C++

sudhir sharma
sudhir sharma
Updated on 25-Jan-2022 874 Views

In this problem, we are given an array arr[] consisting of n integer values. Our task is to find the sum of all unique subarray sum for a given array. Subarray sum is the sum of elements of the given subarray.Let's take an example to understand the problem, Input : arr[] = {1, 2, 4} Output : 23Explanation −All subarrays of the given array are : (1), (2), (4), (1, 2), (2, 4), (1, 2, 4) Sum of subarrays = 1 + 2 + 4 + (1+2) + (2+4) + (1+2+4) = 23Solution ApproachA solution to the problem is by ...

Read More

Find sum of all right leaves in a given Binary Tree in C++

sudhir sharma
sudhir sharma
Updated on 25-Jan-2022 551 Views

In this problem, we are given a binary tree. Our task is to find the sum of all left right in a given Binary Tree.Let's take an example to understand the problem, Input :Output : 8Explanation −All leaf nodes of the tree are : 1, 8 Sum = 1 + 8 = 9Solution ApproachA simple solution to the problem is traversing the tree from root to leaf. If a node is a left leaf node, add it to sum. When the whole tree is traversed. Print Sum.ExampleProgram to illustrate the working of our solution#include using namespace std; struct Node{ ...

Read More

Find sum of all left leaves in a given Binary Tree in C++

sudhir sharma
sudhir sharma
Updated on 25-Jan-2022 549 Views

In this problem, we are given a binary tree. Our task is to find the sum of all left leaves in a given Binary Tree.Let's take an example to understand the problem, Input : Output : 11Explanation −All leaf nodes of the tree are : 2, 9 Sum = 2 + 9 = 11Solution ApproachA simple solution to the problem is traversing the tree from root to leaf. If a node is a left leaf node, add it to sum. When the whole tree is traversed. Print Sum.ExampleProgram to illustrate the working of our solution#include using namespace std; struct Node{ ...

Read More

Find subarray with given sum - (Handles Negative Numbers) in C++

sudhir sharma
sudhir sharma
Updated on 25-Jan-2022 757 Views

In this problem, we are given an array arr[] consisting of N integers stored in unsorted order. Our task is to find a subarray with a given sum.Let's take an example to understand the problem, Input : arr[] = {2, 5, -1, 4, 6, -9, 5} sum = 14 Output : subarray = {5, -1, 4, 6}Explanation −Subarray sum = 5 - 1 + 4 + 6 = 14Solution ApproachA simple solution to the problem is using nested loops. We will loop through the array and using an inner loop, we will find subarray. For each subarray we will find ...

Read More

Find subarray with given sum - (Nonnegative Numbers) in C++

sudhir sharma
sudhir sharma
Updated on 25-Jan-2022 553 Views

In this problem, we are given an array arr[] consisting of N positive integers stored in unsorted order. Our task is to find a subarray with a given sum.Let's take an example to understand the problem, Input : arr[] = {2, 5, 1, 4, 6, 9, 5} sum = 11 Output : subarray = {1, 4, 6}Explanation −Subarray sum = 1 + 4 + 6 = 11Solution ApproachA simple solution to the problem is using nested loops. We will loop through the array and using an inner loop, we will find subarray. For each subarray we will find the sum ...

Read More

Find sub-string with given power in C++

sudhir sharma
sudhir sharma
Updated on 25-Jan-2022 375 Views

In this problem, we are given a string str and an integer pow. Our task is to find a sub-string with given power.We need to return the substring whose power is equal to pow.Power of string is the sum of powers of its characters.Power of character : a -> 1, b -> 2, c -> 3, ...Let's take an example to understand the problem, Input : string = "programming" power = 49 Output : 'pro'Explanation −Power of matrix : pro, power(p) = 16 power(p) = 18 power(p) = 15 Total = 16 + 18 + 15 = 49Solution ApproachA simple ...

Read More
Showing 46511–46520 of 61,299 articles
Advertisements