shellyriver commited on
Commit
dac6f0a
·
1 Parent(s): 0650a36

Update model.py

Browse files
Files changed (1) hide show
  1. model.py +1 -1
model.py CHANGED
@@ -36,6 +36,6 @@ class CNN(nn.Module):
36
  return x
37
 
38
  def get_model():
39
- return CNN
40
 
41
 
 
36
  return x
37
 
38
  def get_model():
39
+ return CNN(num_channel=1, num_classes=10, num_pixel=28)
40
 
41