Closed terrynguyen255 closed 10 months ago
Thank you for considering my repo, here is my answers:
corrected_text = corrector("kinh tế viet nam dang dứng truoc 1 thoi ky đổi mơi chưa tung có tienf lệ trong lịch sử", max_length=128)
print(corrected_text[0]['generated_text'])
Output:
Kinh tế Việt Nam đang đứng trước 1 thời kỳ đổi mới, chưa từng có tiền lệ trong lịch sử.
corrected_texts = corrector(["kinh tế viet nam dang dứng truoc 1 thoi ky đổi mơi chưa tung có tienf lệ trong lịch sử",
"Lần này anh Phươngqyết xếp hàng mua bằng được 1 chiếc"],
max_length=128)
for corrected_text in corrected_texts: print(corrected_text['generated_text'])
Output:
Kinh tế Việt Nam đang đứng trước 1 thời kỳ đổi mới, chưa từng có tiền lệ trong lịch sử. Lần này anh Phương quyết xếp hàng mua bằng được 1 chiếc.
Hopefully my answer meet your needs!
Thank you for the flash response @bmd1905 . It's definitely helpful. Thank you so much for your tips and dedication.
print(corrector("toi dang là sinh diên nem hay ở truong đạ hoc khoa jọc tự nhiên , trogn năm ke tiep toi sẽ chọn chuyen nganh về trí tue nhana tạo")) [{'generated_text': 'Tôi đang là sinh viên hay ở trường đại học khoa học tự nhiên, trong'}]
I believe the answer is not related to the question @bmd1905 , for example this sentence we got truncate generation part
print(corrector("toi dang là sinh diên nem hay ở truong đạ hoc khoa jọc tự nhiên , trogn năm ke tiep toi sẽ chọn chuyen nganh về trí tue nhana tạo")) [{'generated_text': 'Tôi đang là sinh viên hay ở trường đại học khoa học tự nhiên, trong'}]
I believe the answer is not related to the question @bmd1905 , for example this sentence we got truncate generation part
Sorry, it was my mistake. To answer your question, just increase the max_length variable to either 512 or 1024. Doing this will make you happy with the result.
for example:
corrector("toi dang là sinh diên nam hai ở truong đạ hoc khoa jọc tự nhiên , trogn năm ke tiep toi sẽ chọn chuyen nganh về trí tue nhana tạo",
max_length=512)
Hi, Thank you for the awesome repo & demo.
While trying it, I'm experiencing this issue. Same on https://huggingface.co/datasets/bmd1905/error-correction-vi Could you help guide how could I avoid it? Thank you so much. If you need any further information, please let me know