AI: Ejemplo de funciones pytorch para Inteligencia Artificial

import torch

randint = torch.randint(-100,100,(6,))
randint

tensor = torch.tensor([[0.1,1.2],[2.2,3.1],[4.9,5.2]])
tensor

zeros = torch.zeros(2,3)
zeros

ones = torch.ones(3,4)
ones

input = torch.empty(2,3)
input

arange=torch.arange(5)
arange

linspace = torch.linspace(3,10,steps=5)
linspace

logspace=torch.logspace(start=-10,end=10,steps=5)
logspace

eye = torch.eye(5)
eye

a = torch.empty((2,3),dtype=torch.int64)
empty_like = torch.empty_like(a)
empty_like

Comentarios

Entradas populares de este blog

[MACHINE LEARNING] Un breve ejemplo de uso de JupyterLab

[RUST][BOTS][TELEGRAM] Como crear y explotar un bot de Telefram en un canal de Telegram

[Idiomas][Italiano] Rutina Semanal de Estudio de Italiano (3 horas/semana)