ntedgi / node-efficientnet

tensorflowJS implementation of EfficientNet 🚀
https://www.npmjs.com/package/node-efficientnet
MIT License
257 stars 37 forks source link

feature: Hebrew language support #37

Closed ntedgi closed 2 years ago

ntedgi commented 3 years ago

today we only support English and Chinese label translations

translate image net labels to Hebrew take https://github.com/ntedgi/node-efficientnet/blob/main/misc/en.json translate it to Hebrew using some machine or by hand

test("EfficientNetLanguageProvider - check chinese translation file", (done) => { const chineseProvider = new EfficientNetLanguageProvider( EfficientNetLableLanguage.CHINESE ); chineseProvider .load() .then(() => { const result = chineseProvider.get(0); expect(result).toBeDefined(); expect(result).toEqual("丁鲷"); done(); }) .catch((error) => done(error)); });


-  update readme file add the language support to  https://github.com/ntedgi/node-efficientnet#multilingual-status
jhonDoe15 commented 2 years ago

Hi! could I be assigned to this issue please?

ntedgi commented 2 years ago

Go for it 🤘 let me know if you need any assistance