Open KKaiYH opened 8 months ago
Hello, author: If I want to use Crop size 512, in evaluate function, col += int(grid 2 / 3) and row += int(grid 2 / 3) in sliding_window, this 2/3 will cause code error because of non-integer division, how much will the author suggest to set?
或许设置原始的321就不错呢
Hi, could you please detail the code error? Why would int(grid * 2 / 3) cause the error when grid is set as 512?
int(grid * 2 / 3)
Hello, author: If I want to use Crop size 512, in evaluate function, col += int(grid 2 / 3) and row += int(grid 2 / 3) in sliding_window, this 2/3 will cause code error because of non-integer division, how much will the author suggest to set?