RobPruzan commited on
Commit
e138225
1 Parent(s): a1d0301

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ model.to('cpu')
49
  p = pipeline("automatic-speech-recognition")
50
 
51
  w2v = dict({})
52
- for idx, key in enumerate(glove_vectors.wv.vocab):
53
  w2v[key] = glove_vectors.get_vector(key)
54
 
55
  def calculate_diversity(text):
 
49
  p = pipeline("automatic-speech-recognition")
50
 
51
  w2v = dict({})
52
+ for idx, key in enumerate(glove_vectors.vocab):
53
  w2v[key] = glove_vectors.get_vector(key)
54
 
55
  def calculate_diversity(text):