ayse commited on
Commit
0ee6e26
1 Parent(s): bf84ccc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ import transformers
4
 
5
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
6
 
7
- class Model(torcn.nn.Module):
8
  def __init__(self):
9
  super(Model).__init__()
10
  self.config = transformers.DistilBertConfig()
 
4
 
5
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
6
 
7
+ class Model(torch.nn.Module):
8
  def __init__(self):
9
  super(Model).__init__()
10
  self.config = transformers.DistilBertConfig()