ed830418
ed830418
@Curry30h @mushroompyq utils.py line 16 sampler = lambda x: random.sample(x, nb_samples) change to: sampler = lambda x: random.sample(x, nb_samples if len(x) > nb_samples else len(x)) Hope this information will help...
@cpzys2018 我也碰到這個問題,但是解決了。 utils.py line 16 sampler = lambda x: random.sample(x, nb_samples) 改成: sampler = lambda x: random.sample(x, nb_samples if len(x) > nb_samples else len(x))
Thank you for your reply so fast. I went to check some information about the difference between these two models, their performance is very similar. Could I think you execute...