I found a formula few months ago, myself to translate any source language (computer characters) to destination (computer characters). Using Lua (desk top users) and C++ class (for native access) so that i can embed it in Web Browser etc etc. I am wondering if we have already better something for this in C++ or Lua.

Mine sometimes its really not translating grammars correctly or even rules, before building it i thought mine would be a best way to complete, but its taking way to long now, and i am afraid it may become wrong implementation. Now i want to check out others and compare mine.

I used Google translate or others which is not my target, i was building a translator engine (like google or others), where someone can put there dictionary and create rules.

Is there any existing translation framework or libraries (OpenCOG or Moses) to do Source language to Destination ? example: Arabic to Chinese or English to Japanese ? Or What else Google/others using ?

Any suggestion would be appreciated

Thanks in advance.

link|improve this question

2  
Building your own service to do this when Google has a service available seems like a lot of unnecessary work. I doubt you can match Google's algorithm as they have access to millions of pages of language data (including many translated versions of the same pages) which they can analyze to produce statistical mappings. – James Gaunt Dec 22 '10 at 14:01
Thats the issue, my formula is different, its a children who learn from Day 1 inputs, and later he make human natural speech as translation. – YumYumYum Dec 22 '10 at 14:05
feedback

3 Answers

up vote 1 down vote accepted

Did you take a look at Google Translator Toolkit API? By analyzing its aspects you can have a glimpse of what it implements and what you may need to develop your own translation framework (a lot of work by the way).

Creating/Uploading translation documents

Full list of supported source and target languages

http://www.leniel.net/2010/12/playing-google-translator-toolkit-api.html

More to the stack:

Free/open-source machine translation systems and tools

GNU gettext

TinyTM - Open-Source Translation Memory

link|improve this answer
That i already did in my Lua/C++/Php/Java Applet, but i stop that and all other resources. Because i want to build my own Independent Translation Engine, same like Google is doing, its my Thesis related. My formula is not working therefore, wanted to know what exist in open source community to build such ENGINES ? – YumYumYum Dec 22 '10 at 13:59
feedback

I hate to discourage you, but you are trying to single-handedly solve the problem of Machine Translation. MT systems like Systran have been developed by teams of scientists and engineers for decades and they are still far from perfect.

link|improve this answer
2  
"far from perfect" = "really terrible" IMO. – Jon Dec 22 '10 at 14:19
feedback

Moses is a pretty good open source translation library for C++. cdec represents the current state of the art (but requires context-free grammars for both source and target language). Both require large amounts of training data, i.e. parallel corpora.

When you've finished, run to your university and demand a PhD.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.