Spaces:
Sleeping
Sleeping
File size: 1,608 Bytes
9480e34 c1192ba 37aa982 9480e34 1656836 7e4ca73 1656836 9480e34 9a3b7ae c1192ba 172e713 46e333b 9480e34 1656836 46e333b 9480e34 1656836 9480e34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import unittest
from src.main import classify_arabic_dialect
class TestClassifier(unittest.TestCase):
def setUp(self) -> None:
self.dialects = ['Egypt', 'Iraq', 'Saudi_Arabia', 'Mauritania', 'Algeria', 'Syria',
'Oman', 'Tunisia', 'Lebanon', 'Morocco', 'Djibouti','United_Arab_Emirates','Kuwait',
'Libya', 'Bahrain', 'Qatar', 'Yemen', 'Palestine', 'Jordan', 'Somalia', 'Sudan']
self.test_set = {
"Egypt": "حضرتك بروح زي كدا؟ على طول النهار ده",
"Iraq": "همين: شلون، زين، خوش، هواية، كلش، شقد",
"Algeria": "بصح راك فاهم لازم الزيت",
"Morocco": "الله يعطيك الصحة هاد الطاجين بنين تبارك لله"
}
def test_response(self):
"""Test if the response of the main function is correct"""
text = "حاجة حلوة اكيد"
predictions = classify_arabic_dialect(text)
self.assertEqual(len(predictions), len(self.dialects))
for key, value in predictions.items():
self.assertIn(key, self.dialects)
self.assertGreaterEqual(value, 0)
self.assertLessEqual(value, 1)
def test_model_output(self):
"""Test that the model correctly classifies obvious dialects"""
for country, text, in self.test_set.items():
predictions = classify_arabic_dialect(text)
label = max(predictions, key=predictions.get)
self.assertEqual(label, country)
if __name__ == "__main__":
unittest.main() |