Changhan Wang
Changhan Wang
Thanks. I've updated the instructions accordingly. Did you encounter any issue with the pybind11 installation? ``` pip install pybind11 ```
@kormoczi Thanks very much for reporting the issue! We will take a look shortly.
Hi @kormoczi , can you add ``` from fairseq.utils import move_to_cuda sample = move_to_cuda(sample) if torch.cuda.is_available() else sample ``` to move input tensors to GPU? `generator = task.build_generator(models, cfg)` is...