ananyakarn commited on
Commit
dc6a758
·
verified ·
1 Parent(s): 7bb3783

small fix

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -88,6 +88,11 @@ import numpy as np
88
  import librosa
89
  import torch
90
  import torch.nn as nn
 
 
 
 
 
91
 
92
  from tqdm import tqdm
93
  from transformers import AutoTokenizer, AutoModel
 
88
  import librosa
89
  import torch
90
  import torch.nn as nn
91
+ import random
92
+
93
+ torch.manual_seed(42)
94
+ np.random.seed(42)
95
+ random.seed(42)
96
 
97
  from tqdm import tqdm
98
  from transformers import AutoTokenizer, AutoModel