1.2 Logistic Function

1.2 Logistic Function#

log

Introduction#

The logistic function, also known as the sigmoid function, is a mathematical function that maps any real number to a value between 0 and 1. It is widely used in machine learning, statistics, and biology for modeling probabilities, activation functions in neural networks, and processes with S-shaped growth curves. Its smooth, S-shaped curve makes it ideal for representing transitions or probabilities.

Here, we also use PsyNeuLink to introduce basic functionality.

Installation and Setup

%%capture
%pip install psyneulink

import psyneulink as pnl

We can use PsyNeuLink to plot the default logistic function:

logistic_transfer = pnl.TransferMechanism(function=pnl.Logistic())
logistic_transfer.plot()
../../../../../_images/5092f6a90f63a6e848218530c0c41f57aee24539db7988420ba6b9ba8d726c3a.png

In the cell below you can plug a single number into this function and get an output value. Your input corresponds to a point on the x-axis, and the output is the corresponding y-value (height of the point on the curve above the x you specified).

logistic_transfer.execute(-2)   # Try other inputs! What do you expect when you input 0?
array([[0.11920292]])

Gain, Offset, and Bias#

The general logistic function has the following mathematical form:

\[ f(x) = \frac{1}{1 + e^{-gain * (x - bias)}} + offset \]

The gain determines how steep the central portion of the S curve is, with higher values being steeper. The bias determines the midpoint of the curve, with higher values shifting the curve to the right. It shifts the curve horizontally. The offset shifts the curve vertically.

from IPython.display import IFrame

url = "https://princetonuniversity.github.io/NEU-PSY-502/_static/html_widgets/interactive_logistic.html"
IFrame(src=url, width="100%", height="800px")

🎯 Exercise 1

Can you find a parameter settings that makes the logistic function output 1 when the input is 1?

✅ Solution 1

An easy way to do this is to shift the curve by 1 to the right and 0.5 up. This can be achieved by setting the bias to 1 and the offset to 0.5.

logistic_transfer = pnl.TransferMechanism(function=pnl.Logistic(gain=1, bias=1, offset=0.5))
logistic_transfer.execute(1)