Sitemap
Nabla Squared

In this Medium publication, I want to publish things that I found interesting about AI, Data Science, Math, Programming | Also available at https://www.nablasquared.com/

Follow publication

Member-only story

How to Implement Logistic Regression with TensorFlow

7 min readNov 8, 2020

--

TL; DR

model = tf.keras.models.Sequential([    tf.keras.layers.Dense(1, activation='sigmoid')])model.compile(loss='bce')model.fit(x_train, y_train, epochs=100)

The long way

--

--

Nabla Squared
Nabla Squared

Published in Nabla Squared

In this Medium publication, I want to publish things that I found interesting about AI, Data Science, Math, Programming | Also available at https://www.nablasquared.com/

Dorian Lazar
Dorian Lazar

Written by Dorian Lazar

Passionate about Data Science, AI, Programming & Math | Owner of ∇² https://www.nablasquared.com/

No responses yet