AI for Everyone - How AI Models Actually Work
Identify the error in this Python code intended to compute a neural network output:
inputs = [1, 3]
weights = [0.5, 0.5]
output = sum(inputs * weights)
