AI for Everyone - How AI Models Actually Work
What is the output of this Python code simulating a neural network layer?
inputs = [2, 5]
weights = [0.1, 0.4]
output = sum(i * w for i, w in zip(inputs, weights))
print(round(output, 1))
