Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
program error
#1
Dear all, I tried to run a program that I found on the internet but it was not possible because it presented an error. Here you can see the program lines:
import numpy as np
def sigmoid(x):
    # Our activation function: f(x) = 1 / (1 + e^(-x))
    return 1 / (1 + np.exp(-x))
class Neuron:
    def __init__(self, weights, bias):
        self.weights = weights
        self.bias = bias
def feedforward(self, inputs):
     # Weight inputs, add bias, then use the activation function
     total = np.dot(self.weights, inputs) + self.bias
     return sigmoid(total)
weights = np.array([0, 1]) # w1 = 0, w2 = 1
bias = 4                   # b = 4
n = Neuron(weights, bias)
x = np.array([2, 3])       # x1 = 2, x2 = 3
print(n.feedforward(x))    # 0.9990889488055994
---------------------------------------------------------------------------
Error:
AttributeError Traceback (most recent call last) <ipython-input-6-50a424dd081a> in <module> 1 x = np.array([2, 3]) # x1 = 2, x2 = 3 ----> 2 print(n.feedforward(x)) # 0.9990889488055994 AttributeError: 'Neuron' object has no attribute 'feedforward'
Can anyone help me find the program problem?
Reply


Messages In This Thread
program error - by Dalpi - Apr-30-2020, 06:19 PM
RE: program error - by buran - Apr-30-2020, 06:23 PM
RE: program error - by Dalpi - Apr-30-2020, 07:51 PM
RE: program error - by buran - Apr-30-2020, 08:05 PM
RE: program error - by Dalpi - Apr-30-2020, 11:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Program gives error but doesn't say where the error is. FWendeburg 3 2,845 Mar-09-2019, 11:42 PM
Last Post: FWendeburg
  Getting "folder in use" error from OS after I run my program jimmyd95 2 3,416 Apr-01-2018, 03:40 PM
Last Post: jimmyd95
  Syntax Error in Program bijay1983 2 3,043 Dec-24-2017, 05:36 PM
Last Post: squenson

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020