ValueError: shapes (4,1) and (3,1) not aligned: 1 (dim 1) != 3 (dim 0)

前端 未结 0 1936
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-05 11:22
import numpy as np


class NeuralNetwork():

    def __init__(self):
        np.random.seed(1)
        self.synapticweights = 2 * np.random.random((3,1)) - 1


    def s         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题