Views
No views yet
dummy.py: Architecture for the Dummy network.vanilla.py: Architecture for the Vanilla network.dummy-weights.bin: Trained weights for the Dummy model.vanilla-weight.bin: Trained weights for the Vanilla model.hubconf.py: Configuration file for PyTorch Hub loading.torch.hub as follows:1import torch as tr
2# Load the Dummy model
3model = tr.hub.load('path_to_repo', 'DummyNet', source='local')
4# Load the Vanilla model
5model = tr.hub.load('path_to_repo', 'VanillaNet', source='local')
6\```