每天讲解一点PyTorch isinstance
Posted knowform
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每天讲解一点PyTorch isinstance相关的知识,希望对你有一定的参考价值。
今天我们讲解:
>>> x = 1
>>> if not isinstance (x, int or float or bool or complex or str or list or dict or set or tuple):
... x = 0
...
>>>
if not isinstance (x,str):
x= str(x)
if not isinstance(x, list):
x= [x]
#这样的好处是代码更加健壮
isinstance函数功能:判断一个对象,如x是否是一个已知的类型,如str、list
isinstance (x,int)
以上是关于每天讲解一点PyTorch isinstance的主要内容,如果未能解决你的问题,请参考以下文章