Question: import numpy as np #It's kk to import whatever you want from the local util module if you would like: #from util.X import ... def
| import numpy as np | |
| #It's kk to import whatever you want from the local util module if you would like: | |
| #from util.X import ... | |
| def classify(im): | |
| ''' | |
| Example submission for coding challenge. | |
| Args: im (nxmx3) unsigned 8-bit color image | |
| Returns: One of three strings: 'brick', 'ball', or 'cylinder' | |
| ''' | |
| #Let's guess randomly! Maybe we'll get lucky. | |
| labels = ['brick', 'ball', 'cylinder'] | |
| random_integer = np.random.randint(low = 0, high = 3) | |
| return labels[random_integer] |
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
