"git@developer.sourcefind.cn:OpenDAS/torch-harmonics.git" did not exist on "214fa40aba94468ab4ddd50f4b3544b1780b87b3"
Change division style to prevent error in python3 (#127)
Using python2 style '/' will convert int type to float in python3 which will cause the following error when creating FloatTensor:
TypeError: torch.FloatTensor constructor received an invalid combination of arguments - got (float, int, int, int), but expected one of:
* no arguments
* (int ...)
didn't match because some of the arguments have invalid types: (float, int, int, int)
Showing
Please register or sign in to comment