Panlingo.LanguageIdentification.CLD3
0.0.0.18
See the version list below for details.
dotnet add package Panlingo.LanguageIdentification.CLD3 --version 0.0.0.18
NuGet\Install-Package Panlingo.LanguageIdentification.CLD3 -Version 0.0.0.18
<PackageReference Include="Panlingo.LanguageIdentification.CLD3" Version="0.0.0.18" />
paket add Panlingo.LanguageIdentification.CLD3 --version 0.0.0.18
#r "nuget: Panlingo.LanguageIdentification.CLD3, 0.0.0.18"
// Install Panlingo.LanguageIdentification.CLD3 as a Cake Addin #addin nuget:?package=Panlingo.LanguageIdentification.CLD3&version=0.0.0.18 // Install Panlingo.LanguageIdentification.CLD3 as a Cake Tool #tool nuget:?package=Panlingo.LanguageIdentification.CLD3&version=0.0.0.18
Panlingo.LanguageIdentification.CLD3
Welcome to Panlingo.LanguageIdentification.CLD3, a .NET wrapper for the Chrome Language Detection (CLD3) library by Google Inc. This package seamlessly integrates language identification capabilities into .NET applications, enabling accurate and efficient recognition of over 107 languages with minimal effort. Perfect for applications dealing with multilingual texts or requiring automatic language detection.
Requirements
- .NET >= 5.0
- Linux
Installation
To integrate the CLD3 functionality, follow these steps:
Install the NuGet package:
dotnet add package Panlingo.LanguageIdentification.CLD3
Install Protobuf:
Depending on your Linux distribution, use the appropriate command to install Protobuf:
Ubuntu/Debian:
sudo apt -y update sudo apt -y install protobuf-compiler libprotobuf-dev
Fedora:
sudo yum install protobuf-devel
CentOS:
sudo yum install epel-release sudo yum install protobuf-devel
Usage
Integrating the CLD3 library into your .NET application is straightforward. Here’s a quick guide to get you started:
- Install the Package: Ensure you have added the
Panlingo.LanguageIdentification.CLD3
package to your project using the provided installation command. - Initialize the Library: Follow the example snippet to initialize and use the CLD3 library for detecting languages.
using Panlingo.LanguageIdentification.CLD3;
class Program
{
static void Main()
{
// Create an instance of the language detector
using var cld3 = new CLD3Detector(minNumBytes: 0, maxNumBytes: 512);
var text = "Hello, how are you? Привіт, як справи? Привет, как дела?";
var singlePrediction = cld3.PredictLanguage("Привіт, як справи?");
Console.WriteLine($"Language: {singlePrediction.Language}");
Console.WriteLine($"Probability: {singlePrediction.Probability}");
Console.WriteLine($"IsReliable: {singlePrediction.IsReliable}");
Console.WriteLine($"Proportion: {singlePrediction.Proportion}");
var predictions = cld3.PredictLanguages("Hello, how are you? Привіт, як справи? Привет, как дела?", 3);
foreach (var prediction in predictions)
{
Console.WriteLine(
$"Language: {prediction.Language}, " +
$"Probability: {prediction.Probability}, " +
$"IsReliable: {prediction.IsReliable}, " +
$"Proportion: {prediction.Proportion}"
);
}
}
}
Alternatives
If you are exploring other options, here are some alternatives to consider:
- NikulovE/cld3.net: An unmaintained wrapper for .NET.
- uranium62/cld3-net: Another unmaintained wrapper for .NET.
Supported languages
Output Code | Language Name | Script Name |
---|---|---|
af | Afrikaans | Latin |
am | Amharic | Ethiopic |
ar | Arabic | Arabic |
bg | Bulgarian | Cyrillic |
bg-Latn | Bulgarian | Latin |
bn | Bangla | Bangla |
bs | Bosnian | Latin |
ca | Catalan | Latin |
ceb | Cebuano | Latin |
co | Corsican | Latin |
cs | Czech | Latin |
cy | Welsh | Latin |
da | Danish | Latin |
de | German | Latin |
el | Greek | Greek |
el-Latn | Greek | Latin |
en | English | Latin |
eo | Esperanto | Latin |
es | Spanish | Latin |
et | Estonian | Latin |
eu | Basque | Latin |
fa | Persian | Arabic |
fi | Finnish | Latin |
fil | Filipino | Latin |
fr | French | Latin |
fy | Western Frisian | Latin |
ga | Irish | Latin |
gd | Scottish Gaelic | Latin |
gl | Galician | Latin |
gu | Gujarati | Gujarati |
ha | Hausa | Latin |
haw | Hawaiian | Latin |
hi | Hindi | Devanagari |
hi-Latn | Hindi | Latin |
hmn | Hmong | Latin |
hr | Croatian | Latin |
ht | Haitian Creole | Latin |
hu | Hungarian | Latin |
hy | Armenian | Armenian |
id | Indonesian | Latin |
ig | Igbo | Latin |
is | Icelandic | Latin |
it | Italian | Latin |
iw | Hebrew | Hebrew |
ja | Japanese | Japanese |
ja-Latn | Japanese | Latin |
jv | Javanese | Latin |
ka | Georgian | Georgian |
kk | Kazakh | Cyrillic |
km | Khmer | Khmer |
kn | Kannada | Kannada |
ko | Korean | Korean |
ku | Kurdish | Latin |
ky | Kyrgyz | Cyrillic |
la | Latin | Latin |
lb | Luxembourgish | Latin |
lo | Lao | Lao |
lt | Lithuanian | Latin |
lv | Latvian | Latin |
mg | Malagasy | Latin |
mi | Maori | Latin |
mk | Macedonian | Cyrillic |
ml | Malayalam | Malayalam |
mn | Mongolian | Cyrillic |
mr | Marathi | Devanagari |
ms | Malay | Latin |
mt | Maltese | Latin |
my | Burmese | Myanmar |
ne | Nepali | Devanagari |
nl | Dutch | Latin |
no | Norwegian | Latin |
ny | Nyanja | Latin |
pa | Punjabi | Gurmukhi |
pl | Polish | Latin |
ps | Pashto | Arabic |
pt | Portuguese | Latin |
ro | Romanian | Latin |
ru | Russian | Cyrillic |
ru-Latn | Russian | English |
sd | Sindhi | Arabic |
si | Sinhala | Sinhala |
sk | Slovak | Latin |
sl | Slovenian | Latin |
sm | Samoan | Latin |
sn | Shona | Latin |
so | Somali | Latin |
sq | Albanian | Latin |
sr | Serbian | Cyrillic |
st | Southern Sotho | Latin |
su | Sundanese | Latin |
sv | Swedish | Latin |
sw | Swahili | Latin |
ta | Tamil | Tamil |
te | Telugu | Telugu |
tg | Tajik | Cyrillic |
th | Thai | Thai |
tr | Turkish | Latin |
uk | Ukrainian | Cyrillic |
ur | Urdu | Arabic |
uz | Uzbek | Latin |
vi | Vietnamese | Latin |
xh | Xhosa | Latin |
yi | Yiddish | Hebrew |
yo | Yoruba | Latin |
zh | Chinese | Han (including Simplified and Traditional) |
zh-Latn | Chinese | Latin |
zu | Zulu | Latin |
We value your feedback. Feel free to open issues or contribute to the repository. Let’s make language detection in .NET even more powerful and versatile! 🌍📝
Happy coding! 👩💻👨💻
Stay updated by following our repository. For any inquiries or support, reach out through the issues page.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net5.0
- Panlingo.LanguageIdentification.CLD3.Native (>= 0.0.0.18)
-
net6.0
- Panlingo.LanguageIdentification.CLD3.Native (>= 0.0.0.18)
-
net7.0
- Panlingo.LanguageIdentification.CLD3.Native (>= 0.0.0.18)
-
net8.0
- Panlingo.LanguageIdentification.CLD3.Native (>= 0.0.0.18)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.1 | 152 | 10/22/2024 |
0.1.0 | 108 | 10/7/2024 |
0.0.0.22 | 133 | 9/22/2024 |
0.0.0.21 | 100 | 9/10/2024 |
0.0.0.20 | 85 | 9/8/2024 |
0.0.0.19 | 109 | 9/1/2024 |
0.0.0.18 | 100 | 8/26/2024 |
0.0.0.17 | 126 | 8/21/2024 |
0.0.0.16 | 132 | 8/9/2024 |
0.0.0.15 | 100 | 8/8/2024 |
0.0.0.14 | 52 | 8/3/2024 |
0.0.0.13 | 65 | 8/1/2024 |
0.0.0.12 | 93 | 7/20/2024 |
0.0.0.11 | 77 | 7/14/2024 |
0.0.0.10 | 75 | 7/14/2024 |
- Initial release