pytorch starting
# هذا من اجل تحويل اي نوع من انواع المصفوفات في نامباي الي مصفوفه من النوع تنسور
# Convert the numpy array to a torch tensor.
y = torch.from_numpy(x)
y
pytorch starting
# هذا من اجل تحويل اي نوع من انواع المصفوفات في نامباي الي مصفوفه من النوع تنسور
# Convert the numpy array to a torch tensor.
y = torch.from_numpy(x)
y
pytorch starting
# هذا من اجل تحويل المصفوفه من النوع تنسور الي مصفوفه نامباي عاديه
# Convert a torch tensor to a numpy array
x = np.array([[1, 2], [3, 4.]])
x
# Convert the numpy array to a torch tensor.
y = torch.from_numpy(x)
y
z = y.numpy()
z
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us