Hi there,
We’re implementing additional layer support on Caffe frontend into our internal codebase. And we’re also considering to contribute our code to upstream.
We’ve checked contribution guide and it mentions that it’s required (or better?) to check our code style using make pylint
.(Code Guide and Tips — tvm 0.8.dev0 documentation)
However, it doesn’t specify which message types should be fixed and which one can be ignored.
Is there any specific rules for that?
For instance, we got the below pylint messages. Should we fix them?
caffe.py:610:4: R0914: Too many local variables (21/15) (too-many-locals)
caffe.py:627:17: R1735: Consider using {} instead of dict() (use-dict-literal)
caffe.py:673:15: C0121: Comparison 'some_value == True' should be 'some_value is True' if checking for the singleton value True, or 'some_value' if testing for truthiness (singleton-comparison)
caffe.py:676:22: R1735: Consider using {} instead of dict() (use-dict-literal)
caffe.py:681:21: R1735: Consider using {} instead of dict() (use-dict-literal)