Casuallkk
Results
1
comments of
Casuallkk
torch has stopped supporting six according to https://github.com/pytorch/pytorch/pull/94709. For my case, I just replace `from torch._six import container_abcs` in **_amp_state.py** with `import collections.abc as container_abcs`, according to https://blog.csdn.net/qq_45281807/article/details/121843592. Also, I...