Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
204 views

What's a good explanation of statistical machine translation?

I'm trying to find a good high level explanation of how statistical machine translation works. That is, supposing I have a corpus of non-aligned English, French and German texts, how could I use that ...
7
votes
2answers
2k views

Google's text-to speech engine voices?

Most of you probably know the text-to-speech synthesizer of google translate, as you can access programmatically here btw: http://translate.google.com/translate_tts?tl=en&q=text My impression ...
5
votes
2answers
1k views

Automatic text translation

What tools or web services are available for machine text translation. For example ENGLISH TEXT > SERVER or LIB > GERMAN TEXT Libraries are also acceptable. Is Google language API the only ...
3
votes
3answers
366 views

Is there a tutorial about giza++?

The Urls in its 'readme' file is not valid (http://www.fjoch.com/mkcls.html and http://www.fjoch.com/GIZA++.html). Is there a good tutorial about giza++? Or is there some alternatives that have ...
3
votes
1answer
197 views

Server-side software for translating languages? [closed]

I am searching for a server-side application (not a service, we need to host this ourselves) that can take a given string and translate it to another language. Open-source, paid, doesn't matter. Can ...
3
votes
1answer
130 views

What are some examples of Machine Translation applications/libraries currently being developed?

I'm interested in learning more about Machine Translation. While I have some very interesting books on the matter, I'd like to see some real world applications of MT's theories. I've found a couple ...
1
vote
2answers
58 views

What's a Good Machine Translation Metric or Gold Set

I'm starting up looking into doing some machine translation of search queries, and have been trying to think of different ways to rate my translation system between iterations and against other ...
1
vote
3answers
377 views

Any tools to programmatically convert Japanese sentence into its romaji (phonetical reading)?

Input: 日本が好きです. Output: Nippon ga sukidesu. Phonetical reading is unfortunately not available through Google Translate API.
1
vote
3answers
446 views

How to build an accurate translation engine?

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 ...
1
vote
1answer
134 views

What are the “-P”s in the Berkeley Aligner's output format?

I want to use the Berkeley Aligner for some MT research I'm doing, since, apparently, it beats GIZA++ pretty handily (a 32% alignment error reduction in some reported results). For the most part the ...
0
votes
0answers
48 views

Is it possible to perform supervised training of GIZA++ using an existing word-aligned corpus?

The unsupervised training for GIZA++ requires only sentence-aligned input, not any examples of correct word alignments. I want to perform supervised training, training a model with correct examples ...
0
votes
0answers
16 views

Internationalizing recurring calendar event descriptions?

Does anyone know of a solution or strategy for translating structured data for recurring events (rrules) into any given language? RRules are part of the iCalendar spec about storing recurring event ...
0
votes
1answer
30 views

Programatically translating recurring calendar events?

Does anyone know of a solution or strategy for parsing and translating recurring events in any given language? I've got some code that sort of works, but I'm having trouble even wrapping my brain ...
0
votes
1answer
88 views

Can someone explain how this mgiza script works?

$:~/mgizapp/scripts$ ./plain2snt-hasvcb.py Error, the input should be ./plain2snt-hasvcb.py evcb fvcb etxt ftxt esnt(out) fsnt(out) evcbx(out) fvcbx(out) You should concatenate the evcbx and fvcbx to ...
0
votes
1answer
287 views

Machine translation for multilingual sentiment analysis

I am trying to do sentiment analysis for non english languages like japenese, chinese, german etc. I want to know if any Machine translator available for translating documents in these languages to ...