或门

或门_第1张图片

import torch
X = torch.tensor([[1,0,0],[1,1,0],[1,0,1,],[1,1,1]] ,dtype = torch.float32)
orgate = torch.tensor([[0],[1],[1],[1]],dtype = torch.float32)
w = torch.tensor([-0.5,1,1] ,dtype = torch.float32) # b,w1,w2

def orAdd(X,w):
    zhat = torch.mv(X,w)
    orhat = torch.tensor([int(x) for x in zhat>=0],dtype = torch.float32)  #int(True)=1,int(False)=0
    return zhat,nandhat
zhat,orhat = orAdd(X,w)
print(zhat)
print(orhat)
import matplotlib.pyplot as plt
import seaborn as sns
plt.style.use('seaborn-whitegrid') #设置图像的风格
sns.set_style("white")
plt.figure(figsize=(5,3)) #设置画布大小
plt.title("OR GATE",fontsize=16) #设置图像标题
plt.scatter(X[:,1],X[:,2],c=orgate,cmap="rainbow") #绘制散点图
plt.xlim(-1,3) #设置横纵坐标尺寸
plt.ylim(-1,3)
plt.grid(alpha=.4,axis="y") #显示背景中的网格
plt.gca().spines["top"].set_alpha(.0) #让上方和右侧的坐标轴被隐藏
plt.gca().spines["right"].set_alpha(.0);

import numpy as np
x = np.arange(-1,3,0.5)
plt.plot(x,0.5-x ,color="k",linestyle="--");

或门_第2张图片

你可能感兴趣的:(python)