Question: That was the only info provided on the problem. No test code given - Exercise 3 (5 points) Implement a function that takes a 2D

That was the only info provided on the problem. No test code given
- Exercise 3 (5 points) Implement a function that takes a 2D array as its argument and returns the indices of the maximum values of each row as an array. For example if the input array is [[5,2],[3,4]1, then the function will return [0,1] since the max value in the first row (which is 5) is at index 0 and the max value in the second row (which is 4) is at index 1. Hint: Check out np.argmax(). [] import numpy as np def find_max_index(arr): ########## Your code goes here ############# ############################################# return max_indices [] project_1_tests.test_max_index(find_max index)
Step by Step Solution
There are 3 Steps involved in it
To solve this exercise youll implement the function findmaxindex using npargmax which helps fin... View full answer
Get step-by-step solutions from verified subject matter experts
