Leopard 1.0.4
See the version list below for details.
dotnet add package Leopard --version 1.0.4
NuGet\Install-Package Leopard -Version 1.0.4
<PackageReference Include="Leopard" Version="1.0.4" />
paket add Leopard --version 1.0.4
#r "nuget: Leopard, 1.0.4"
// Install Leopard as a Cake Addin #addin nuget:?package=Leopard&version=1.0.4 // Install Leopard as a Cake Tool #tool nuget:?package=Leopard&version=1.0.4
Rhino Demos for .NET
This package contains .NET Core command line demos for processing real-time audio (i.e. microphone) and audio files using Rhino Speech-to-Intent engine.
Rhino
Made in Vancouver, Canada by Picovoice
Rhino is Picovoice's Speech-to-Intent engine. It directly infers intent from spoken commands within a given context of interest, in real-time. For example, given a spoken command
Can I have a small double-shot espresso?
Rhino infers that the user wants to order a drink and emits the following inference result:
{
"isUnderstood": "true",
"intent": "orderBeverage",
"slots": {
"beverage": "espresso",
"size": "small",
"numberOfShots": "2"
}
}
Rhino is:
- using deep neural networks trained in real-world environments.
- compact and computationally-efficient. It is perfect for IoT.
- self-service. Developers can train custom models using Picovoice Console.
Requirements
- .NET Core 3.1
Compatibility
- Linux (x86_64)
- macOS (x86_64)
- Windows (x86_64)
- Raspberry Pi:
- 2
- 3 (32 and 64 bit)
- 4 (32 and 64 bit)
- NVIDIA Jetson Nano
- BeagleBone
Installation
Both demos use Microsoft's .NET Core framework.
Build with the dotnet CLI:
dotnet build -c MicDemo.Release
dotnet build -c FileDemo.Release
AccessKey
Rhino requires a valid Picovoice AccessKey
at initialization. AccessKey
acts as your credentials when using Rhino SDKs.
You can get your AccessKey
for free. Make sure to keep your AccessKey
secret.
Signup or Login to Picovoice Console to get your AccessKey
.
Usage
NOTE: File path arguments must be absolute paths. The working directory for the following dotnet commands is:
rhino/demo/dotnet/RhinoDemo
File Demo
The file demo uses Rhino to get an inference result from an audio file. This demo is mainly useful for quantitative performance benchmarking against a corpus of audio data. Note that only the relevant spoken command should be present in the file and no other speech. There also needs to be at least one second of silence at the end of the file.
dotnet run -c FileDemo.Release -- \
--input_audio_path ${AUDIO_PATH} \
--access_key ${ACCESS_KEY} \
--context_path ${CONTEXT_PATH}
Microphone Demo
The microphone demo opens an audio stream from a microphone and performs inference on spoken commands:
dotnet run -c MicDemo.Release -- \
--access_key ${ACCESS_KEY} \
--context_path ${CONTEXT_PATH}
It is possible that the default audio input device is not the one you wish to use. There are a couple of debugging facilities baked into the demo application to solve this. First, type the following into the console:
dotnet run -c MicDemo.Release -- --show_audio_devices
It provides information about various audio input devices on the box. This is an example of the output:
index: 0, device name: USB Audio Device
index: 1, device name: MacBook Air Microphone
You can use the device index to specify which microphone to use for the demo. For instance, if you want to use the USB Audio Device in the above example, you can invoke the demo application as below:
dotnet run -c MicDemo.Release -- \
--access_key ${ACCESS_KEY} \
--context_path ${CONTEXT_PATH} \
--audio_device_index 0
If the problem persists we suggest storing the recorded audio into a file for inspection. This can be achieved with:
dotnet run -c MicDemo.Release -- \
--access_key ${ACCESS_KEY} \
--context_path ${CONTEXT_PATH} \
--output_path ./test.wav
If after listening to the stored file there is no apparent problem detected, please open an issue.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. 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 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net6.0
- No dependencies.
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 | |
---|---|---|---|
2.0.5 | 181 | 2/11/2025 | |
2.0.4 | 631 | 1/15/2025 | |
2.0.3 | 1,087 | 9/16/2024 | |
2.0.2 | 1,253 | 2/5/2024 | |
2.0.1 | 1,099 | 11/30/2023 | |
2.0.0 | 797 | 11/24/2023 | |
1.2.1 | 782 | 8/25/2023 | |
1.1.1 | 956 | 12/14/2022 | |
1.1.0 | 966 | 8/11/2022 | |
1.0.4 | 938 | 6/13/2022 | |
1.0.3 | 804 | 5/16/2022 | |
1.0.2 | 785 | 4/11/2022 | |
1.0.1 | 723 | 3/11/2022 | |
1.0.0 | 758 | 2/25/2022 |