Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

summarize arabic text not working with defualt settings #79

Open
hiyamgh opened this issue Sep 29, 2020 · 1 comment
Open

summarize arabic text not working with defualt settings #79

hiyamgh opened this issue Sep 29, 2020 · 1 comment

Comments

@hiyamgh
Copy link

hiyamgh commented Sep 29, 2020

Hello,

I have the following code:

# coding=utf8
from summa import summarizer, keywords
text = 'التلخيص التلقائي هو عملية تصغير مستند نصي بامتدادبرنامج كمبيوتر من أجل إنشاء ملخص يحتفظ بأهم النقاط من المستند الأصلي. كما نمت مشكلة الحمل الزائد للمعلومات ، وكما ازدادت كمية البيانات ، لذلك اهتم بالتلخيص التلقائي. تأخذ التقنيات التي يمكنها إنشاء ملخص متماسك في الاعتبار المتغيرات مثل الطول وأسلوب الكتابة والنحو. مثال على استخدام تقنية التلخيص'
print(summarizer.summarize(text=text, language="arabic"))
print(keywords.keywords(text=text, language="arabic"))

But the problem is that I am not getting arabic summarization, but keywords is working.

This is my output:


مستند
المستند
إنشاء ملخص
التقنيات
تقنية
التلخيص
بالتلخيص
بامتدادبرنامج
المتغيرات
@hiyamgh hiyamgh changed the title summarize arabic text not working summarize arabic text not working with defualt settings Sep 29, 2020
@hiyamgh
Copy link
Author

hiyamgh commented Sep 29, 2020

UPDATE:

I had it to work when I used non default settings:

print(summarizer.summarize(text, language='arabic', ratio=0.7))
print(keywords.keywords(text, language="arabic"))

output:

التلخيص التلقائي هو عملية تصغير مستند نصي بامتدادبرنامج كمبيوتر من أجل إنشاء ملخص يحتفظ بأهم النقاط من المستند الأصلي.
مثال على استخدام تقنية التلخيص
مستند
المستند
إنشاء ملخص
التقنيات
تقنية
التلخيص
بالتلخيص
بامتدادبرنامج
المتغيرات

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant