I want to initialize b
and c
to zero and return output as two list of zeros. but it is returning as tuple
def initialize(dim):
'''In this function, we will initialize bias value 'B' and 'C'.'''
b = np.zeros(dim)
c = np.zeros(dim)
return b.tolist(),c.tolist()