thai Questions
5
Solved
I need to vectorize text documents in Thai (e.g Bag of Words, doc2vec).
First I want to go over each document, omitting everything except the Thai characters and English words (e.g. no punctuatio...
3
Solved
Not by word boundaries, that is solvable.
Example:
#!/usr/bin/env python3
text = 'เมื่อแรกเริ่ม'
for char in text:
print(char)
This produces:
เ
ม
อ
แ
ร
ก
เ
ร
ม
Which obviously is no...
Hawse asked 7/5, 2015 at 14:26
2
Solved
Can someone recommend an open source POS tagger for Korean, Indonesian, Thai and Vietnamese?
That I can use to tag the corpus data that I currently have. (e.g. the stanford-postagger)
If you are ...
Pillage asked 12/3, 2011 at 4:31
1
I use PHP ZipArchive class to extract a .zip file, It works fine for English, but cause problems in my local language (THAI).
I use icov('utf-8','windows-874',$zip->getNameIndex($i)) to conver...
Dysprosium asked 5/7, 2015 at 14:17
1
Solved
After client downloads a file from our server with our app, the app does a ParseExact on a date string which comes down from the server in the form: yyyy/mm/dd HH:mm:ss.
After alot of confusion, I...
1
© 2022 - 2024 — McMap. All rights reserved.