Shivaen

Results 5 comments of Shivaen

I haven't been able to get it to work. Here is the notebook: https://colab.research.google.com/drive/1SnYR_nWVNEYxGfY90FFaxLSMez7m-ug4?usp=sharing. Thanks. I basically just change the task, model, and instruction components.

I guess a simpler question would be, how would you recommend one to run inference on the fine-tuned base model on snli-ve? Thank you for the help!

@JustinLin610 I tried a couple things, first tried to increase max steps in the config, but ran into: ``` RuntimeError Traceback (most recent call last) [](https://localhost:8080/#) in 19 with torch.no_grad():...

@Pclanglais Maybe a bit late, but if you aren't batching yet you can try #498. When I try replicating your findings, assuming GPU, I'm getting around a 100 images processed...

For windows you could try to replace ``` torch.distributed.init_process_group("nccl") ``` in `generation.py`, with something like this: ``` os.environ['MASTER_ADDR'] = 'localhost' os.environ['MASTER_PORT'] = '12345' torch.distributed.init_process_group(backend='gloo', rank=0, world_size=1) ``` This allows me...