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
And I want to make user-dictionary.
It means,
when I tokenize "섬유탈취제"
now, it make tokens like this.
"tokens": [
"섬유(Noun: 0, 2)",
"탈취(Noun: 2, 2)",
"제(Noun: 4, 1)"
],
but, I want make tokens like this.
"tokens": [
"섬유탈취제(Noun or Compound)"
],
is it possible?
if possible, how could I make this?
The text was updated successfully, but these errors were encountered:
hello.
I user twitter analyzer with python.
And I want to make user-dictionary.
It means,
when I tokenize "섬유탈취제"
now, it make tokens like this.
"tokens": [
"섬유(Noun: 0, 2)",
"탈취(Noun: 2, 2)",
"제(Noun: 4, 1)"
],
but, I want make tokens like this.
"tokens": [
"섬유탈취제(Noun or Compound)"
],
is it possible?
if possible, how could I make this?
The text was updated successfully, but these errors were encountered: