Stacey
Stacey
@sxzy I met the same problem. I changed the line: 'correct += lam * predicted.eq(label_a.data).cpu().sum() + (1 - lam) * predicted.eq(label_b.data).cpu().sum()' to: 'correct += lam * predicted.eq(targets_a.data).cpu().sum().item() + (1 -...
Hi @mmatl , I ran into the same problem. Attached is my code: [py_render.txt](https://github.com/mmatl/pyrender/files/3160835/py_render.txt) * **It gives following error when I use a monitor:** File "/home/user/anaconda3/lib/python3.7/site-packages/OpenGL/platform/baseplatform.py", line 407, in __call__...
@CCapellen Hi, I met the same problem. Have you solved it?