shahrukhx01 commited on
Commit
b99bc49
1 Parent(s): df4e9b1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -49,8 +49,8 @@ word2 = "fizzformer"
49
  word2 = " ".join([char for char in word2]) ## divide the word to char level to fuzzy match
50
  words = [word1, word2]
51
  # Load model from HuggingFace Hub
52
- tokenizer = AutoTokenizer.from_pretrained('shahrukhx01/Fuzzformer')
53
- model = AutoModel.from_pretrained('shahrukhx01/Fuzzformer')
54
 
55
  # Tokenize sentences
56
  encoded_input = tokenizer(words, padding=True, truncation=True, return_tensors='pt')
 
49
  word2 = " ".join([char for char in word2]) ## divide the word to char level to fuzzy match
50
  words = [word1, word2]
51
  # Load model from HuggingFace Hub
52
+ tokenizer = AutoTokenizer.from_pretrained('shahrukhx01/paraphrase-mpnet-base-v2-fuzzy-matcher')
53
+ model = AutoModel.from_pretrained('shahrukhx01/paraphrase-mpnet-base-v2-fuzzy-matcher')
54
 
55
  # Tokenize sentences
56
  encoded_input = tokenizer(words, padding=True, truncation=True, return_tensors='pt')