You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In augmetation file, at function RandomSampleCrop, we use np.random.choice, but I guess that there was some change in numpy lib or python so we can't use it for tupe like : a = (None, (1, 2), 3)
Solution : replace np.random.choice by random.choice in random lib.
The text was updated successfully, but these errors were encountered:
In augmetation file, at function
RandomSampleCrop
, we use np.random.choice, but I guess that there was some change in numpy lib or python so we can't use it for tupe like :a = (None, (1, 2), 3)
Solution : replace
np.random.choice
byrandom.choice
inrandom
lib.The text was updated successfully, but these errors were encountered: