Logic Gates to implement for 3 i/p variables.
Perceptron model function
$$ z = \sum_{i=1}^m(w_i * x_i) +b $$Sigmoid Function
$$ f(z) = \frac{1}{1 + e^{-z}} $$Part 1. Write a tensorflow program to implement a perceptron using functions described above for AND , OR and NAND logic gates. Choose weights and bias values accordingly.
Part 2.