RobPruzan commited on
Commit
2664271
·
1 Parent(s): 1d78b57

Update app.py

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