You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: support nbest output in normalize/tag (#296)
normalize(input, nbest=1) returns a single string (default, backward
compatible). normalize(input, nbest=N) returns a list of N-best results.
Example:
n.normalize('海淀区108号', nbest=3)
# ['海淀区一百零八号', '海淀区十八号', '海淀区幺零八号']
0 commit comments