Skip to content

Commit

Permalink
Updated variables in 01L
Browse files Browse the repository at this point in the history
  • Loading branch information
brookewenig committed Dec 3, 2023
1 parent 207f578 commit b073b75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ def predict_masked_words(sentence, model, tokenizer):
# TODO
# Define a sentence in French with a masked word
sentence_q6 = "<FILL_IN>"
print(predict_masked_words(sentence, mlm_model, tokenizer))
print(predict_masked_words(sentence_q6, mlm_model, tokenizer))

# COMMAND ----------

Expand Down Expand Up @@ -616,7 +616,7 @@ def predict_masked_words(sentence, model, tokenizer):
# TODO
# Define a sentence that makes sense only in a specific cultural context
sentence_q8 = "<FILL_IN>"
print(predict_masked_words(sentence, mlm_model, tokenizer))
print(predict_masked_words(sentence_q8, mlm_model, tokenizer))

# COMMAND ----------

Expand Down

0 comments on commit b073b75

Please sign in to comment.