You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 365 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. # pylint: disable=redefined-builtin
  3. from . import metric, utils, vision
  4. from .elemwise import *
  5. from .math import *
  6. from .nn import *
  7. from .tensor import *
  8. from .utils import *
  9. from . import distributed # isort:skip
  10. # delete namespace
  11. # pylint: disable=undefined-variable
  12. # del elemwise, math, tensor, utils # type: ignore[name-defined]