dataaug
dataaug
> @das-intensity Thanks a lot! Indeed you saved me quite some headaches. > > After googling a bit I think this explains why the deadlock happens: https://pythonspeed.com/articles/python-multiprocessing/ > > It's...
I just made the following changes: ``` # NOTE if we want approx-MAML, change create_graph=True to False zero_grad(model.parameters()) grads = torch.autograd.grad(loss, model.parameters(), create_graph=True) # performs updates using calculated gradients # ...
> > @newbietuan No. I am still waiting for instructions from the contributors. > > and the most important, i noticed the code of ` def get_tokenizer(self, lang: str) ->...