Skip to content

Instantly share code, notes, and snippets.

@Amplify4177
Created November 9, 2023 13:47
Show Gist options
  • Select an option

  • Save Amplify4177/45e83ee06fcd8f9b205adf41d8b686e0 to your computer and use it in GitHub Desktop.

Select an option

Save Amplify4177/45e83ee06fcd8f9b205adf41d8b686e0 to your computer and use it in GitHub Desktop.
ESP32 ML - Dummy Layer
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