pvleopard 2.0.0__tar.gz → 2.0.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pvleopard-2.0.0 → pvleopard-2.0.1}/PKG-INFO +8 -6
- {pvleopard-2.0.0 → pvleopard-2.0.1}/README.md +7 -5
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/jetson/cortex-a57-aarch64/libpv_leopard.so +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/linux/x86_64/libpv_leopard.so +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/mac/arm64/libpv_leopard.dylib +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/mac/x86_64/libpv_leopard.dylib +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/raspberry-pi/cortex-a53/libpv_leopard.so +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/raspberry-pi/cortex-a53-aarch64/libpv_leopard.so +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/raspberry-pi/cortex-a72/libpv_leopard.so +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/raspberry-pi/cortex-a72-aarch64/libpv_leopard.so +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/windows/amd64/libpv_leopard.dll +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard.egg-info/PKG-INFO +8 -6
- {pvleopard-2.0.0 → pvleopard-2.0.1}/setup.py +1 -1
- {pvleopard-2.0.0 → pvleopard-2.0.1}/MANIFEST.in +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/LICENSE +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/__init__.py +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/_factory.py +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/_leopard.py +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/_util.py +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/common/leopard_params.pv +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard.egg-info/SOURCES.txt +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard.egg-info/dependency_links.txt +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard.egg-info/top_level.txt +0 -0
- {pvleopard-2.0.0 → pvleopard-2.0.1}/setup.cfg +0 -0
@@ -1,18 +1,20 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pvleopard
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.1
|
4
4
|
Summary: Leopard Speech-to-Text Engine.
|
5
5
|
Home-page: https://github.com/Picovoice/leopard
|
6
6
|
Author: Picovoice
|
7
7
|
Author-email: hello@picovoice.ai
|
8
8
|
License: UNKNOWN
|
9
|
-
Description: # Leopard
|
9
|
+
Description: # Leopard Binding for Python
|
10
|
+
|
11
|
+
## Leopard Speech-to-Text Engine
|
10
12
|
|
11
13
|
Made in Vancouver, Canada by [Picovoice](https://picovoice.ai)
|
12
14
|
|
13
15
|
Leopard is an on-device speech-to-text engine. Leopard is:
|
14
16
|
|
15
|
-
- Private; All voice processing runs locally.
|
17
|
+
- Private; All voice processing runs locally.
|
16
18
|
- [Accurate](https://picovoice.ai/docs/benchmark/stt/)
|
17
19
|
- [Compact and Computationally-Efficient](https://github.com/Picovoice/speech-to-text-benchmark#rtf)
|
18
20
|
- Cross-Platform:
|
@@ -56,7 +58,7 @@ Description: # Leopard Speech-to-Text Engine
|
|
56
58
|
```
|
57
59
|
|
58
60
|
Replace `${ACCESS_KEY}` with yours obtained from [Picovoice Console](https://console.picovoice.ai/) and
|
59
|
-
`${AUDIO_PATH}` to the path an audio file.
|
61
|
+
`${AUDIO_PATH}` to the path an audio file.
|
60
62
|
|
61
63
|
Finally, when done be sure to explicitly release the resources:
|
62
64
|
```python
|
@@ -65,8 +67,8 @@ Description: # Leopard Speech-to-Text Engine
|
|
65
67
|
|
66
68
|
## Language Model
|
67
69
|
|
68
|
-
The Leopard Python SDK comes preloaded with a default English language model (`.pv` file).
|
69
|
-
Default models for other supported languages can be found in [lib/common](../../lib/common).
|
70
|
+
The Leopard Python SDK comes preloaded with a default English language model (`.pv` file).
|
71
|
+
Default models for other supported languages can be found in [lib/common](../../lib/common).
|
70
72
|
|
71
73
|
Create custom language models using the [Picovoice Console](https://console.picovoice.ai/). Here you can train
|
72
74
|
language models with custom vocabulary and boost words in the existing vocabulary.
|
@@ -1,10 +1,12 @@
|
|
1
|
-
# Leopard
|
1
|
+
# Leopard Binding for Python
|
2
|
+
|
3
|
+
## Leopard Speech-to-Text Engine
|
2
4
|
|
3
5
|
Made in Vancouver, Canada by [Picovoice](https://picovoice.ai)
|
4
6
|
|
5
7
|
Leopard is an on-device speech-to-text engine. Leopard is:
|
6
8
|
|
7
|
-
- Private; All voice processing runs locally.
|
9
|
+
- Private; All voice processing runs locally.
|
8
10
|
- [Accurate](https://picovoice.ai/docs/benchmark/stt/)
|
9
11
|
- [Compact and Computationally-Efficient](https://github.com/Picovoice/speech-to-text-benchmark#rtf)
|
10
12
|
- Cross-Platform:
|
@@ -48,7 +50,7 @@ for word in words:
|
|
48
50
|
```
|
49
51
|
|
50
52
|
Replace `${ACCESS_KEY}` with yours obtained from [Picovoice Console](https://console.picovoice.ai/) and
|
51
|
-
`${AUDIO_PATH}` to the path an audio file.
|
53
|
+
`${AUDIO_PATH}` to the path an audio file.
|
52
54
|
|
53
55
|
Finally, when done be sure to explicitly release the resources:
|
54
56
|
```python
|
@@ -57,8 +59,8 @@ leopard.delete()
|
|
57
59
|
|
58
60
|
## Language Model
|
59
61
|
|
60
|
-
The Leopard Python SDK comes preloaded with a default English language model (`.pv` file).
|
61
|
-
Default models for other supported languages can be found in [lib/common](../../lib/common).
|
62
|
+
The Leopard Python SDK comes preloaded with a default English language model (`.pv` file).
|
63
|
+
Default models for other supported languages can be found in [lib/common](../../lib/common).
|
62
64
|
|
63
65
|
Create custom language models using the [Picovoice Console](https://console.picovoice.ai/). Here you can train
|
64
66
|
language models with custom vocabulary and boost words in the existing vocabulary.
|
{pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/jetson/cortex-a57-aarch64/libpv_leopard.so
RENAMED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
{pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/raspberry-pi/cortex-a53-aarch64/libpv_leopard.so
RENAMED
Binary file
|
Binary file
|
{pvleopard-2.0.0 → pvleopard-2.0.1}/pvleopard/lib/raspberry-pi/cortex-a72-aarch64/libpv_leopard.so
RENAMED
Binary file
|
Binary file
|
@@ -1,18 +1,20 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pvleopard
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.1
|
4
4
|
Summary: Leopard Speech-to-Text Engine.
|
5
5
|
Home-page: https://github.com/Picovoice/leopard
|
6
6
|
Author: Picovoice
|
7
7
|
Author-email: hello@picovoice.ai
|
8
8
|
License: UNKNOWN
|
9
|
-
Description: # Leopard
|
9
|
+
Description: # Leopard Binding for Python
|
10
|
+
|
11
|
+
## Leopard Speech-to-Text Engine
|
10
12
|
|
11
13
|
Made in Vancouver, Canada by [Picovoice](https://picovoice.ai)
|
12
14
|
|
13
15
|
Leopard is an on-device speech-to-text engine. Leopard is:
|
14
16
|
|
15
|
-
- Private; All voice processing runs locally.
|
17
|
+
- Private; All voice processing runs locally.
|
16
18
|
- [Accurate](https://picovoice.ai/docs/benchmark/stt/)
|
17
19
|
- [Compact and Computationally-Efficient](https://github.com/Picovoice/speech-to-text-benchmark#rtf)
|
18
20
|
- Cross-Platform:
|
@@ -56,7 +58,7 @@ Description: # Leopard Speech-to-Text Engine
|
|
56
58
|
```
|
57
59
|
|
58
60
|
Replace `${ACCESS_KEY}` with yours obtained from [Picovoice Console](https://console.picovoice.ai/) and
|
59
|
-
`${AUDIO_PATH}` to the path an audio file.
|
61
|
+
`${AUDIO_PATH}` to the path an audio file.
|
60
62
|
|
61
63
|
Finally, when done be sure to explicitly release the resources:
|
62
64
|
```python
|
@@ -65,8 +67,8 @@ Description: # Leopard Speech-to-Text Engine
|
|
65
67
|
|
66
68
|
## Language Model
|
67
69
|
|
68
|
-
The Leopard Python SDK comes preloaded with a default English language model (`.pv` file).
|
69
|
-
Default models for other supported languages can be found in [lib/common](../../lib/common).
|
70
|
+
The Leopard Python SDK comes preloaded with a default English language model (`.pv` file).
|
71
|
+
Default models for other supported languages can be found in [lib/common](../../lib/common).
|
70
72
|
|
71
73
|
Create custom language models using the [Picovoice Console](https://console.picovoice.ai/). Here you can train
|
72
74
|
language models with custom vocabulary and boost words in the existing vocabulary.
|
@@ -48,7 +48,7 @@ with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f:
|
|
48
48
|
|
49
49
|
setuptools.setup(
|
50
50
|
name="pvleopard",
|
51
|
-
version="2.0.
|
51
|
+
version="2.0.1",
|
52
52
|
author="Picovoice",
|
53
53
|
author_email="hello@picovoice.ai",
|
54
54
|
description="Leopard Speech-to-Text Engine.",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|