Panlingo.LanguageIdentification.MediaPipe
0.0.0.22
See the version list below for details.
dotnet add package Panlingo.LanguageIdentification.MediaPipe --version 0.0.0.22
NuGet\Install-Package Panlingo.LanguageIdentification.MediaPipe -Version 0.0.0.22
<PackageReference Include="Panlingo.LanguageIdentification.MediaPipe" Version="0.0.0.22" />
paket add Panlingo.LanguageIdentification.MediaPipe --version 0.0.0.22
#r "nuget: Panlingo.LanguageIdentification.MediaPipe, 0.0.0.22"
// Install Panlingo.LanguageIdentification.MediaPipe as a Cake Addin #addin nuget:?package=Panlingo.LanguageIdentification.MediaPipe&version=0.0.0.22 // Install Panlingo.LanguageIdentification.MediaPipe as a Cake Tool #tool nuget:?package=Panlingo.LanguageIdentification.MediaPipe&version=0.0.0.22
Panlingo.LanguageIdentification.MediaPipe
Welcome to Panlingo.LanguageIdentification.MediaPipe, a .NET wrapper for the MediaPipe 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
- Runtime: .NET >= 5.0
- OS: Linux
- Arch: AMD64
Installation
To integrate the MediaPipe functionality, follow these steps:
Install the NuGet package:
dotnet add package Panlingo.LanguageIdentification.MediaPipe
Usage
Integrating the MediaPipe 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.MediaPipe
package to your project using the provided installation command. - Initialize the Library: Follow the example snippet to initialize and use the MediaPipe library for detecting languages.
using Panlingo.LanguageIdentification.MediaPipe;
class Program
{
static void Main()
{
using var mediaPipe = new MediaPipeDetector(
options: MediaPipeOptions.FromDefault()
);
var text = "Привіт, як справи?";
var predictions = mediaPipe.PredictLanguages(text);
foreach (var prediction in predictions)
{
Console.WriteLine(
$"Language: {prediction.Language}, " +
$"Probability: {prediction.Probability}"
);
}
}
}
Custom models
Download the Pretrained Models
Download the pretrained language identification (LID) model provided by Google:
curl --location -o /models/mediapipe_language_detector.tflite https://storage.googleapis.com/mediapipe-models/language_detector/language_detector/float32/1/language_detector.tflite
Learn more about this model here:
Use custom model in code
var modelPath = "/models/mediapipe_language_detector.tflite";
using var mediaPipe = new MediaPipeDetector(
options: MediaPipeOptions.FromFile(modelPath)
);
OR
var modelPath = "/models/mediapipe_language_detector.tflite";
using var stream = File.Open(modelPath, FileMode.Open);
using var mediaPipe = new MediaPipeDetector(
options: MediaPipeOptions.FromStream(stream)
);
Sources
- Original MediaPipe Repository
- Language detection guide
- Language detector (model card)
- Language identification at Wikipedia
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! 👩💻👨💻
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.MediaPipe.Native (>= 0.0.0.22)
-
net6.0
- Panlingo.LanguageIdentification.MediaPipe.Native (>= 0.0.0.22)
-
net7.0
- Panlingo.LanguageIdentification.MediaPipe.Native (>= 0.0.0.22)
-
net8.0
- Panlingo.LanguageIdentification.MediaPipe.Native (>= 0.0.0.22)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
0.0.0.21:
- Default MediaPipe model is included in NuGet package
0.0.0.10:
- Initial release