jcarnero commited on
Commit
613c01a
·
1 Parent(s): 92b515f

fix model classes to 200

Browse files
Files changed (1) hide show
  1. deployment/model.py +1 -1
deployment/model.py CHANGED
@@ -15,7 +15,7 @@ def get_model() -> nn.Sequential:
15
  nn.ReLU(inplace=True),
16
  nn.BatchNorm1d(512),
17
  nn.Dropout(0.5),
18
- nn.Linear(512, 37, bias=False),
19
  )
20
 
21
  return nn.Sequential(net, head)
 
15
  nn.ReLU(inplace=True),
16
  nn.BatchNorm1d(512),
17
  nn.Dropout(0.5),
18
+ nn.Linear(512, 200, bias=False),
19
  )
20
 
21
  return nn.Sequential(net, head)