当前位置:   article > 正文

【Bug解决】VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences_augmentations.py:238: visibledeprecationwarning: m

augmentations.py:238: visibledeprecationwarning: mode = random.choice(self.s

问题描述

VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences
(which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. 
If you meant to do this, you must specify 'dtype=object' when creating the ndarray.
episode_classes_rel = self._rng.choice(self.span_leaves_rel)
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

用 Meta-Dataset 做训练,由于数据采样方式的问题导致 numpy array 的维度不一致,但不影响训练。

解决方法

在程序开头加上这句话,关掉 warning 即可:

np.warnings.filterwarnings('ignore', category=np.VisibleDeprecationWarning)
  • 1

解决方法来源:https://stackoverflow.com/questions/63097829/
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/611157
推荐阅读
相关标签
  

闽ICP备14008679号