Course file
week03_micrograd/exercise.md
Use the original micrograd code as your base reference. Then complete these tasks.
relu() method to the Value class.0 when the input is negative and the input itself otherwise.0 backward if the input was negativeWrite a quick test case:
-2.0 should produce output 03.0 should produce output 3.0Create values:
a = 2.0b = -3.0c = 10.0d = a * b + cThen:
Pick one gradient from your graph and finish this sentence:
“If I changed this value upward a tiny bit, the final output would likely ______ because ______.”
Write a short note with: