在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:optimaize/language-detector开源软件地址:https://github.com/optimaize/language-detector开源编程语言:Java 99.5%开源软件介绍:language-detectorLanguage Detection Library for Java
Language Support71 Built-in Language Profiles
User danielnaber has made available a profile for Esperanto on his website, see open tasks. There are two kinds of profiles. The standard ones created from Wikipedia articles and similar. And the "short text" profiles created from Twitter tweets. Fewer language profiles exist for the short text, more would be available, see #57 Other LanguagesYou can create a language profile for your own language easily. See https://github.com/optimaize/language-detector/blob/master/src/main/resources/README.md How it WorksThe software uses language profiles which were created based on common text for each language. N-grams http://en.wikipedia.org/wiki/N-gram were then extracted from that text, and that's what is stored in the profiles. When trying to figure out in what language a certain text is written, the program goes through the same process: It creates the same kind of n-grams of the input text. Then it compares the relative frequency of them, and finds the language that matches best. ChallengesThis software does not work as well when the input text to analyze is short, or unclean. For example tweets. When a text is written in multiple languages, the default algorithm of this software is not appropriate. You can try to split the text (by sentence or paragraph) and detect the individual parts. Running the language guesser on the whole text will just tell you the language that is most dominant, in the best case. This software cannot handle it well when the input text is in none of the expected (and supported) languages. For example if you only load the language profiles from English and German, but the text is written in French, the program may pick the more likely one, or say it doesn't know. (An improvement would be to clearly detect that it's unlikely one of the supported languages.) If you are looking for a language detector / language guesser library in Java, this seems to be the best open source library you can get at this time. If it doesn't need to be Java, you may want to take a look at https://code.google.com/p/cld2/ How to UseLanguage Detection for your Text
Creating Language Profiles for your Training TextSee https://github.com/optimaize/language-detector/wiki/Creating-Language-Profiles How You Can HelpIf your language is not supported yet, then you can provide clean "training text", that is, common text written in your language. The text should be fairly long (a couple of pages at the very least). If you can provide that, please open a ticket. If your language is supported already, but not identified clearly all the time, you can still provide such training text. We might then be able to improve detection for your language. If you're a programmer, dig in the source and see what you can improve. Check the open tasks. Memory ConsumptionLoading all 71 language profiles uses 74MB ram to store the data in memory. For memory considerations see https://github.com/optimaize/language-detector/wiki/Memory-Consumption History and ChangesThis project is a fork of a fork, the original author is Nakatani Shuyo. For detail see https://github.com/optimaize/language-detector/wiki/History-and-Changes Where it's usedAn adapted version of this is used by the http://www.NameAPI.org server. https://www.languagetool.org/ is a proof-reading software for LibreOffice/OpenOffice, for the Desktop and for Firefox. LicenseApache 2 (business friendly) AuthorsNakatani Shuyo, Fabian Kessler, Francois ROLAND, Robert Theis For detail see https://github.com/optimaize/language-detector/wiki/Authors For Maven UsersThe project is in Maven central http://search.maven.org/#artifactdetails%7Ccom.optimaize.languagedetector%7Clanguage-detector%7C0.4%7Cjar this is the latest version:
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论