CesarLeblanc commited on
Commit
728f964
·
verified ·
1 Parent(s): 24390e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -125,7 +125,7 @@ def masking(text):
125
  masked_text = text + ', [MASK]'
126
  pred = mask_model(masked_text)[0]
127
  new_species = pred['token_str']
128
- text = f"The most likely missing species in position {best_position} is: {best_species}".
129
  image = return_species_image(new_species)
130
  return text, image
131
 
 
125
  masked_text = text + ', [MASK]'
126
  pred = mask_model(masked_text)[0]
127
  new_species = pred['token_str']
128
+ text = f"The most likely missing species in position {best_position} is: {best_species}."
129
  image = return_species_image(new_species)
130
  return text, image
131