WARNING: This article may be obsolete
This post was published in 2022-02-21. Obviously, expired content is less useful to users if it has already pasted its expiration date.
This post was published in 2022-02-21. Obviously, expired content is less useful to users if it has already pasted its expiration date.
This article is categorized as "Garbage" . It should NEVER be appeared in your search engine's results.
Table of Contents
ResNet
🔗 [【转载】ResNet论文笔记((对比vgg16网络)) - 简书] https://www.jianshu.com/p/3d886e8a0eb9
python 参数传递tuple
注意这一段程序:
def receive(a):
print(type(a))
receive(())
receive((0))
receive((()))
receive((0,))
receive(((0,)))
运行结果:
<class 'tuple'>
<class 'int'>
<class 'tuple'>
<class 'tuple'>
<class 'tuple'>
Last Modified in 2022-03-02