Jo

Results 1 comments of Jo

A straight forward workaround: Comment the original line and add one of the following: ```python device = "cpu" device = "cuda" device = "cuda" if torch.cuda.is_available() else "cpu" ``` However...