Source code for kalelinear.utils._backend

import numpy as np


[docs] def to_numpy(value): if value is None: return None return np.asarray(value)