gitextract_uvlwuzum/ ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── docs/ │ ├── example.md │ ├── text.mako │ └── tutorial.md ├── examples/ │ ├── efficientnet.py │ ├── lstm.py │ ├── mnist.py │ ├── mobilenet.py │ ├── resnet.py │ └── transformer.py ├── pyproject.toml ├── tests/ │ ├── test_engine.py │ ├── test_functional.py │ ├── test_module.py │ ├── test_util.py │ └── test_warm.py └── warm/ ├── __init__.py ├── engine.py ├── functional.py ├── module.py └── util.py