Panlingo.LanguageIdentification.CLD2.Native
0.0.0.21
See the version list below for details.
dotnet add package Panlingo.LanguageIdentification.CLD2.Native --version 0.0.0.21
NuGet\Install-Package Panlingo.LanguageIdentification.CLD2.Native -Version 0.0.0.21
<PackageReference Include="Panlingo.LanguageIdentification.CLD2.Native" Version="0.0.0.21" />
paket add Panlingo.LanguageIdentification.CLD2.Native --version 0.0.0.21
#r "nuget: Panlingo.LanguageIdentification.CLD2.Native, 0.0.0.21"
// Install Panlingo.LanguageIdentification.CLD2.Native as a Cake Addin #addin nuget:?package=Panlingo.LanguageIdentification.CLD2.Native&version=0.0.0.21 // Install Panlingo.LanguageIdentification.CLD2.Native as a Cake Tool #tool nuget:?package=Panlingo.LanguageIdentification.CLD2.Native&version=0.0.0.21
Panlingo.LanguageIdentification.CLD2
Welcome to Panlingo.LanguageIdentification.CLD2, a .NET wrapper for the Chrome Language Detection (CLD2) library by Google Inc. This package seamlessly integrates language identification capabilities into .NET applications, enabling accurate and efficient recognition of over 80 languages with minimal effort. Perfect for applications dealing with multilingual texts or requiring automatic language detection.
Requirements
- Runtime: .NET >= 5.0
- OS: Linux
- Arch: AMD64
Installation
To integrate the CLD2 functionality, you need to add this NuGet package to your project:
dotnet add package Panlingo.LanguageIdentification.CLD2
Usage
Integrating the CLD2 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.CLD2
package to your project using the provided installation command. - Initialize the Library: Follow the example snippet to initialize and use the CLD2 library for detecting languages.
using Panlingo.LanguageIdentification.CLD2;
class Program
{
static void Main()
{
// Create an instance of the language detector
using var cld2 = new CLD2Detector();
// Input text to detect language
var predictions = cld2.PredictLanguage("Привіт, як справи?");
// Print the language
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:
- diadistis/cld2.net: An unmaintained wrapper for .NET.
- nuvi/NCLD2: Another unmaintained wrapper for .NET (NuGet).
- curiosity-ai/catalyst: Contains CLD2, with an example available here.
Supported languages
Language Name | ISO 639-1 |
---|---|
Afrikaans | af |
Albanian | sq |
Arabic | ar |
Armenian | hy |
Azerbaijani | az |
Basque | eu |
Belarusian | be |
Bengali | bn |
Bihari | bh |
Bulgarian | bg |
Catalan | ca |
Cebuano | ceb |
Cherokee | chr |
Croatian | hr |
Czech | cs |
Chinese | zh |
Chinese_T | zh-Hant |
Danish | da |
Dhivehi | dv |
Dutch | nl |
English | en |
Estonian | et |
Finnish | fi |
French | fr |
Galician | gl |
Ganda | lg |
Georgian | ka |
German | de |
Greek | el |
Gujarati | gu |
Haitian_Creole | ht |
Hebrew | iw |
Hindi | hi |
Hmong | hmn |
Hungarian | hu |
Icelandic | is |
Indonesian | id |
Inuktitut | iu |
Irish | ga |
Italian | it |
Javanese | jw |
Japanese | ja |
Kannada | kn |
Khmer | km |
Kinyarwanda | rw |
Korean | ko |
Laothian | lo |
Latvian | lv |
Limbu | lif |
Lithuanian | lt |
Macedonian | mk |
Malay | ms |
Malayalam | ml |
Maltese | mt |
Marathi | mr |
Nepali | ne |
Norwegian | no |
Oriya | or |
Persian | fa |
Polish | pl |
Portuguese | pt |
Punjabi | pa |
Romanian | ro |
Russian | ru |
Scots_Gaelic | gd |
Serbian | sr |
Sinhalese | si |
Slovak | sk |
Slovenian | sl |
Spanish | es |
Swahili | sw |
Swedish | sv |
Syriac | syr |
Tagalog | tl |
Tamil | ta |
Telugu | te |
Thai | th |
Turkish | tr |
Ukrainian | uk |
Urdu | ur |
Vietnamese | vi |
Welsh | cy |
Yiddish | yi |
Sources
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 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Panlingo.LanguageIdentification.CLD2.Native:
Package | Downloads |
---|---|
Panlingo.LanguageIdentification.CLD2
This is a .NET wrapper for the Chrome Language Detection (CLD2) library by Google Inc. This package facilitates the integration of language identification capabilities into .NET applications, allowing for accurate and efficient recognition of over 80 languages with minimal effort. Perfect for applications dealing with multilingual texts or requiring automatic language detection. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.1 | 227 | 10/22/2024 |
0.1.0 | 160 | 10/7/2024 |
0.0.0.22 | 164 | 9/22/2024 |
0.0.0.21 | 171 | 9/10/2024 |
0.0.0.20 | 138 | 9/8/2024 |
0.0.0.19 | 153 | 9/1/2024 |
0.0.0.18 | 119 | 8/26/2024 |
0.0.0.17 | 165 | 8/21/2024 |
0.0.0.16 | 161 | 8/9/2024 |
0.0.0.15 | 138 | 8/8/2024 |
0.0.0.14 | 104 | 8/3/2024 |
0.0.0.13 | 112 | 8/1/2024 |
0.0.0.12 | 126 | 7/20/2024 |
0.0.0.10 | 112 | 7/14/2024 |
- Initial release