Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- LICENSE +18 -0
- NOTICE +5 -0
- README.md +57 -0
- SOURCE.md +22 -0
- model.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
model.gguf filter=lfs diff=lfs merge=lfs -text
|
LICENSE
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) <year> <copyright holders>
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
| 6 |
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
| 7 |
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 8 |
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
| 9 |
+
following conditions:
|
| 10 |
+
|
| 11 |
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
| 12 |
+
portions of the Software.
|
| 13 |
+
|
| 14 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
| 15 |
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
| 16 |
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
| 17 |
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
| 18 |
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
NOTICE
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
vokra/emotion2vec
|
| 2 |
+
|
| 3 |
+
This artifact is a format conversion of an upstream weight.
|
| 4 |
+
Upstream: emotion2vec/emotion2vec_plus_large
|
| 5 |
+
Upstream licence: mit
|
README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: vokra
|
| 4 |
+
tags:
|
| 5 |
+
- vokra
|
| 6 |
+
- gguf
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# emotion2vec (Vokra GGUF)
|
| 10 |
+
|
| 11 |
+
Converted to the Vokra GGUF format for [Vokra](https://github.com/ayutaz/vokra), a zero-dependency speech-AI inference runtime.
|
| 12 |
+
|
| 13 |
+
**This is a conversion, not a new model.** The weights are the upstream ones; Vokra re-packages them so its runtime can memory-map them directly. Credit for the model belongs upstream — see *Source* below.
|
| 14 |
+
|
| 15 |
+
## Files
|
| 16 |
+
|
| 17 |
+
| File | Size | SHA-256 |
|
| 18 |
+
|---|---|---|
|
| 19 |
+
| `model.gguf` | 618.5 MB | `052efcdaa000208933bfe1633ae81115fa9aa05b043920bb1cfa92f2827f02bc` |
|
| 20 |
+
|
| 21 |
+
## Usage
|
| 22 |
+
|
| 23 |
+
```bash
|
| 24 |
+
# Download (any HTTP client works — the file is a plain GGUF)
|
| 25 |
+
curl -L -o model.gguf \
|
| 26 |
+
https://huggingface.co/vokra/emotion2vec/resolve/main/model.gguf
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
vokra-cli run --model model.gguf --input input.wav
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
## Provenance
|
| 34 |
+
|
| 35 |
+
| Field | Value |
|
| 36 |
+
|---|---|
|
| 37 |
+
| Architecture | `emotion2vec` |
|
| 38 |
+
| Tensors | 185 |
|
| 39 |
+
| Upstream source | emotion2vec/emotion2vec_plus_large |
|
| 40 |
+
| Upstream licence | `mit` |
|
| 41 |
+
| Licence class | `permissive` |
|
| 42 |
+
| Registry model id | `emotion2vec-plus-large` |
|
| 43 |
+
| Vokra GGUF schema | 1 |
|
| 44 |
+
| Converted by | vokra-core 0.1.0-alpha.0 |
|
| 45 |
+
|
| 46 |
+
Every row above is read out of this file's own `vokra.*` metadata, so the card cannot claim something the artifact does not carry.
|
| 47 |
+
|
| 48 |
+
## Licence
|
| 49 |
+
|
| 50 |
+
The weights are distributed under **mit**, unchanged from upstream. Conversion does not alter the licence, and your obligations run to the upstream author.
|
| 51 |
+
|
| 52 |
+
## Verifying this file
|
| 53 |
+
|
| 54 |
+
```bash
|
| 55 |
+
shasum -a 256 model.gguf
|
| 56 |
+
# expect: 052efcdaa000208933bfe1633ae81115fa9aa05b043920bb1cfa92f2827f02bc
|
| 57 |
+
```
|
SOURCE.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Provenance — vokra/emotion2vec
|
| 2 |
+
|
| 3 |
+
| Field | Value |
|
| 4 |
+
|---|---|
|
| 5 |
+
| Upstream source | emotion2vec/emotion2vec_plus_large |
|
| 6 |
+
| Upstream licence | `mit` |
|
| 7 |
+
| Architecture | `emotion2vec` |
|
| 8 |
+
| Tensors | 185 |
|
| 9 |
+
| SHA-256 | `052efcdaa000208933bfe1633ae81115fa9aa05b043920bb1cfa92f2827f02bc` |
|
| 10 |
+
| Converted by | vokra-core 0.1.0-alpha.0 |
|
| 11 |
+
| GGUF schema generation | 1 |
|
| 12 |
+
|
| 13 |
+
Every row is read from the artifact's own `vokra.*` metadata; none of it
|
| 14 |
+
is supplied by hand, so this file cannot disagree with the weight it
|
| 15 |
+
describes.
|
| 16 |
+
|
| 17 |
+
## Reproducing
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
vokra-cli convert --model <kind> --input <upstream> --output model.gguf
|
| 21 |
+
shasum -a 256 model.gguf # expect 052efcdaa000208933bfe1633ae81115fa9aa05b043920bb1cfa92f2827f02bc
|
| 22 |
+
```
|
model.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:052efcdaa000208933bfe1633ae81115fa9aa05b043920bb1cfa92f2827f02bc
|
| 3 |
+
size 648576992
|