menu
Tatoeba
language
Register Log in
language English
menu
Tatoeba

chevron_right Register

chevron_right Log in

Browse

chevron_right Show random sentence

chevron_right Browse by language

chevron_right Browse by list

chevron_right Browse by tag

chevron_right Browse audio

Community

chevron_right Wall

chevron_right List of all members

chevron_right Languages of members

chevron_right Native speakers

search
clear
swap_horiz
search
thegui thegui February 25, 2015 February 25, 2015 at 8:56:36 PM UTC link Permalink

I made a visualization of Tatoeba translations.

http://tguinard.github.io/

It shows how often two languages share a direct translation link, and you can view up to 50 of Tatoeba's most commonly translated languages.
Enjoy!

{{vm.hiddenReplies[21926] ? 'expand_more' : 'expand_less'}} hide replies show replies
Guybrush88 Guybrush88 February 25, 2015 February 25, 2015 at 9:30:37 PM UTC link Permalink

pretty interesting, thanks :)

Pfirsichbaeumchen Pfirsichbaeumchen February 26, 2015 February 26, 2015 at 12:47:40 AM UTC link Permalink

Nice visualisation. ☺

gillux gillux February 26, 2015 February 26, 2015 at 4:21:39 PM UTC link Permalink

Thank you for creating this, it’s amazing! I always wanted to do something like this, but had no idea about how to display it in a comprehensive way. I have two comments about it.

Sentences that are not translated into any language are not included, right? It could be cool if they were included, as a part of each arc, that would be not connected to anything.

I’d like to know technical details about the implementation, and the licence of your code. I’d love to have something like this included in tatoeba.org. We could probably even make it near-realtime since I think the data can be directly queried from the search engine.

{{vm.hiddenReplies[21934] ? 'expand_more' : 'expand_less'}} hide replies show replies
thegui thegui February 26, 2015 February 26, 2015 at 5:36:01 PM UTC link Permalink

Thanks, gillux and everyone else!

The graph displays translations, not sentences. If a sentence in language X is translated to every other language, this will count toward every edge in the graph originating from language X. Sentences that do not have any translations are completely ignored. I don't think there is a good way to incorporate these sentences as it is, as I am visualizing the links between sentences, not the sentences themselves.

As for the implementation, I have all of the code I used available on github.

https://github.com/tguinard/tatoeba_visualization (all code including data processing)
https://github.com/tguinard/tguinard.github.io (this is what is running in the link)

It isn't the most robust code; I kind of wrote it over the weekend, not expecting it to be used longterm. You are more than welcome to include this in tatoeba.org, and I can help with whatever integration you need. I don't have any license on it as of now, but if you need me to add any, I'll release this under any open source license.

{{vm.hiddenReplies[21935] ? 'expand_more' : 'expand_less'}} hide replies show replies
gillux gillux February 26, 2015 February 26, 2015 at 7:41:02 PM UTC link Permalink

> The graph displays translations, not sentences.

The links between the arcs are translations, but the arcs themselves are sentences, right? The bigger the arc, the more the sentences. Actually, strictly speaking: the bigger the arc, the more the sentences translated into other languages. My suggestion is to add a section in each arc that would not be connected to anything, and would represent sentences that are not translated into any language.

{{vm.hiddenReplies[21936] ? 'expand_more' : 'expand_less'}} hide replies show replies
thegui thegui February 26, 2015 February 26, 2015 at 9:44:46 PM UTC link Permalink

> The bigger the arc, the more the sentences

No, not exactly. Say sentence A is translated from English into 5 other languages, and sentence B is translated from English into 1 other language. Sentence A will account for 5 times the arc length (of English) as sentence B.