Thomas Chardonnens commited on
Commit
d14b595
1 Parent(s): 9039685

fix model name

Browse files
Files changed (1) hide show
  1. seizure_detection.py +2 -2
seizure_detection.py CHANGED
@@ -3,9 +3,9 @@ import torch.nn as nn
3
  import torch.nn.functional as F
4
 
5
 
6
- class SeizureDetectionCNN(nn.Module):
7
  def init(self, num_classes=2):
8
- super(SeizureDetectionCNN, self).init()
9
  self.conv1= nn.Conv2d(1, 32, kernel_size=3, stride=1, padding=1) # 32, 32, 32
10
 
11
  self.pool= nn.MaxPool2d(kernel_size=2, stride=2) # 32, 16, 16
 
3
  import torch.nn.functional as F
4
 
5
 
6
+ class SeizureDetector(nn.Module):
7
  def init(self, num_classes=2):
8
+ super(SeizureDetector, self).init()
9
  self.conv1= nn.Conv2d(1, 32, kernel_size=3, stride=1, padding=1) # 32, 32, 32
10
 
11
  self.pool= nn.MaxPool2d(kernel_size=2, stride=2) # 32, 16, 16