Question: write an equivalent lines of code that does the same job as the following code ( function should remain the same ) : import numpy

write an equivalent lines of code that does the same job as the following code ( function should remain the same):
import numpy as np
def forward_propagation(x, weights):
# Calculating the weighted sum including bias
weighted_sum , weights[1:])+ weights[0]
print (weighted_sum)
# Applying activation function (step function)
y=1 if weighted_sum 0 else 0
return y
 write an equivalent lines of code that does the same job

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!