-
-
Save Amplify4177/45e83ee06fcd8f9b205adf41d8b686e0 to your computer and use it in GitHub Desktop.
ESP32 ML - Dummy Layer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Module: | |
| def load_state_dict(self, weights, bias): | |
| pass | |
| class dummyLayer(Module): | |
| def __call__(self, output): | |
| return output |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment