Huge drop of classification accuracy on loihi board/loihi simulation compared to slayer classifcation #891
Unanswered
gwgknudayanga
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I trained the following network in slayer for nmnist event data classification. In this case I use the last layer's neuron voltages as the logit as shown in training part. It gave a 96 % test accuracy. Then i export this to lava and run on loihi and loihi cpu simulation and evaluated the test set. However then the test accuracy was about 55% which is 40% drop compared to slayer classification.
When i checked the voltage outputs of the output layer after 32 time steps these are outputs are different from slayer's output.
Could you please help to resolve this issue?
neuron_conv_params = {
'threshold' : 1.0,
'current_decay' : 1.0,
'voltage_decay' : 0.03,
'requires_grad' : False,
'persistent_state' : False,
}
net_ladl = net_ladl.to(device)
H, W = (34,34)
N, C, T = 32, 2, 31
input = torch.rand(N, C, H, W, T)
net_ladl(input.to(device=device))
test_loader2 = DataLoader(dataset=testing_set, batch_size=1, shuffle=False)
Best Rgds,
Udayanga
Beta Was this translation helpful? Give feedback.
All reactions