David Mascharka
David Mascharka
``` python def save_model(self, path): """Path to .npz file where model parameters will be saved.""" with open(path, "wb") as f: np.savez(f, *(x.data for x in self.parameters)) def load_model(self, path): with...
A bit curious to implement https://arxiv.org/abs/2404.02258 and see what effect it has on training time. Would be nice to not destroy my CPU if I can avoid it
> A bit curious to implement https://arxiv.org/abs/2404.02258 and see what effect it has on training time. Would be nice to not destroy my CPU if I can avoid it Hey...
Thank you!