Spaces:
Build error
Build error
import numpy as np | |
def amax(x): | |
return np.argmax(x, axis=1) | |
def multi_label(x): | |
return x > 0 | |
import numpy as np | |
def amax(x): | |
return np.argmax(x, axis=1) | |
def multi_label(x): | |
return x > 0 | |