如何在Python中使用两个输入(x1,x2)创建多层网络

时间:2019-06-20 12:44:36

标签: python neural-network backpropagation

我需要创建mlp函数。我有照片。此功能必须用作显示图像。我不明白重量和神经元之间的编码关系。这个随机权数是正确的吗?我没有太多代码

enter image description here

import numpy as np


def ui_sigmoid(x, beta):
    return 1 / (1 + np.exp(-beta*x))


def bi_sigmoid(x, beta):
    return np.tanh(beta*x)


def func(inputs):
    w1 = np.random.random((2, 3))
    w2 = np.random.random((1, 3))

0 个答案:

没有答案