在我进行使用mysql:5.6和 owncloud 镜像,构建一个个人网盘后
我的虚拟机更改了ip地址导致出现下列状况 报错:您正在访问来自不信任域名的服务器。 please contact your administrator. if you are an administrator of this instance, configure the &q…
tensor 的四则运算broadcast
import torch
import numpy as np
# 张量tensor 随机初始化
x torch.rand(4,3)
print(x)
y torch.randn(4,3)
print(y)# 初始化全零 张量
a torch.zeros((4,4),dtypetorch.long)
print(a)
#初始化全一 张量
b torch.ones(4,4)
print(b)
c tor…