Can you be a bit more specific about what you would like discussed?
This notebook shows the process of estimating the parameters of the logistic regression model. As stated in the Wikipedia article, these parameters must be found using numerical methods and this notebook shows how that can be done using tensorflow.
The model example in the wikipedia article has a single covariate (x). In this notebook, I show the generalisation to 2 covariates (x_1, x_2). In my case I therefore have 3 parameters to estimate which I have called b, w_1, w_2. b, and w_1 are equivalent to b_0 and b_1 in the wiki article.
By clicking the "take a step" button in this notebook, you can step through the numerical optimisation process that optimises the likelihood function (once you have taken enough steps). This way of estimating the parameters is called maximum likelihood estimation.