File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 8
8
"""
9
9
from typing import Iterable , Iterator , List , Union
10
10
11
+
11
12
class Trie (Iterable [str ]):
12
13
class Node :
13
14
__slots__ = "end" , "children"
Original file line number Diff line number Diff line change @@ -75,7 +75,8 @@ def get_sense(
75
75
See `thai_dict <https://pythainlp.github.io/pythainlp-corpus/thai_dict.html>`_.
76
76
77
77
Use sentence transformers model from \
78
- `sentence-transformers/paraphrase-multilingual-mpnet-base-v2 <https://huggingface.co/sentence-transformers/paraphrase-multilingual-mpnet-base-v2>`_ \
78
+ `sentence-transformers/paraphrase-multilingual-mpnet-base-v2 \
79
+ <https://huggingface.co/sentence-transformers/paraphrase-multilingual-mpnet-base-v2>`_ \
79
80
for unsupervised word sense disambiguation.
80
81
81
82
:Example:
You can’t perform that action at this time.
0 commit comments