[TYPECHECK]
# List of members which are set dynamically and missed by Pylint inference
# system, and so shouldn't trigger E1101 when accessed.
generated-members=torch.min, torch.ones_like

[MESSAGES CONTROL]
enable=useless-suppression
disable=
    broad-exception-raised,
    invalid-name,
    redefined-builtin,
    missing-module-docstring,
    missing-class-docstring,
    missing-function-docstring,
    too-many-arguments,
    too-few-public-methods,
    too-many-instance-attributes,
    too-many-locals,
    too-many-statements,
    use-dict-literal
