frappuccino commited on
Commit ·
14c53a3
1
Parent(s): 124b146
Add embedded-audio preview.parquet (LFS) for viewer; point viewer at preview; document full-corpus access
Browse files- README.md +23 -12
- preview.parquet +3 -0
README.md
CHANGED
|
@@ -23,14 +23,9 @@ size_categories:
|
|
| 23 |
- 10K<n<100K
|
| 24 |
configs:
|
| 25 |
- config_name: default
|
| 26 |
-
sep: "|"
|
| 27 |
data_files:
|
| 28 |
-
- split:
|
| 29 |
-
path:
|
| 30 |
-
- split: validation
|
| 31 |
-
path: val.csv
|
| 32 |
-
- split: test
|
| 33 |
-
path: test.csv
|
| 34 |
---
|
| 35 |
|
| 36 |
# Dialogs: A Studio-Quality Expressive Conversational Russian Speech Corpus
|
|
@@ -55,9 +50,16 @@ Presented at **Interspeech 2026** — I. Shigabeev and I. Latyshev (Langswap).
|
|
| 55 |
(19.9 h / 0.30 h / 0.37 h); test/dev stratified (5 per speaker per emotion)
|
| 56 |
- ✅ **Open & commercial-friendly** under a responsible-use license
|
| 57 |
|
| 58 |
-
##
|
| 59 |
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
|
| 62 |
| field | description |
|
| 63 |
|---|---|
|
|
@@ -71,12 +73,21 @@ Metadata is **pipe-delimited (`|`)**. Each row:
|
|
| 71 |
|
| 72 |
## Usage
|
| 73 |
|
|
|
|
|
|
|
| 74 |
```python
|
| 75 |
from datasets import load_dataset
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
```
|
| 81 |
|
| 82 |
## Intended use
|
|
|
|
| 23 |
- 10K<n<100K
|
| 24 |
configs:
|
| 25 |
- config_name: default
|
|
|
|
| 26 |
data_files:
|
| 27 |
+
- split: preview
|
| 28 |
+
path: preview.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
---
|
| 30 |
|
| 31 |
# Dialogs: A Studio-Quality Expressive Conversational Russian Speech Corpus
|
|
|
|
| 50 |
(19.9 h / 0.30 h / 0.37 h); test/dev stratified (5 per speaker per emotion)
|
| 51 |
- ✅ **Open & commercial-friendly** under a responsible-use license
|
| 52 |
|
| 53 |
+
## Contents & layout
|
| 54 |
|
| 55 |
+
- **`preview.parquet`** — a small sample (5 utterances per style, 60 total) with
|
| 56 |
+
**audio embedded**. This is what powers the dataset viewer above, so you can
|
| 57 |
+
listen before downloading. It is *not* the full corpus.
|
| 58 |
+
- **Full corpus** — all 11,796 utterances live in the split files
|
| 59 |
+
**`train.csv` / `val.csv` / `test.csv`** (and `metadata.csv` for everything),
|
| 60 |
+
with the audio in **`wavs/`**.
|
| 61 |
+
|
| 62 |
+
The CSVs are **pipe-delimited (`|`)**. Each row:
|
| 63 |
|
| 64 |
| field | description |
|
| 65 |
|---|---|
|
|
|
|
| 73 |
|
| 74 |
## Usage
|
| 75 |
|
| 76 |
+
**Preview (60 samples, audio included):**
|
| 77 |
+
|
| 78 |
```python
|
| 79 |
from datasets import load_dataset
|
| 80 |
+
preview = load_dataset("langswap/dialogs-ru-emotional-conversations", split="preview")
|
| 81 |
+
print(preview[0]) # has a decoded `audio` column
|
| 82 |
+
```
|
| 83 |
|
| 84 |
+
**Full corpus** — download the repo and read the split files + `wavs/`:
|
| 85 |
+
|
| 86 |
+
```python
|
| 87 |
+
import pandas as pd
|
| 88 |
+
from huggingface_hub import snapshot_download
|
| 89 |
+
local = snapshot_download("langswap/dialogs-ru-emotional-conversations", repo_type="dataset")
|
| 90 |
+
train = pd.read_csv(f"{local}/train.csv", sep="|") # audio at f"{local}/{train.audio_path}"
|
| 91 |
```
|
| 92 |
|
| 93 |
## Intended use
|
preview.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fba7215964aee4da95fe412d5ff434a912fe961be10b5eff6e9a9af49a315add
|
| 3 |
+
size 29319422
|