I get
<python_path>site-packages/pretrainedmodels/models/dpn.py:255: SyntaxWarning: "is" with a literal. Did you mean "=="?
if block_type is 'proj':
I get this warning in the following lines: 255, 258, 262
Is there a reason to use is and not ==? I think comparing strings with == is indeed more elegant..