Dataset Viewer
Auto-converted to Parquet
The dataset viewer is not available for this split.
Server error while post-processing the split rows. Please report the issue.
Error code:   RowsPostProcessingError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Uaspeech Male Dataset

Overview

This dataset contains dysarthric speech samples from a male speaker (M04) in the UA-Speech corpus, prepared for pathological speech synthesis research.

Speaker Information:

  • Speaker ID: M04
  • Corpus: UA-Speech
  • Gender: Male
  • Speech Status: Dysarthric

Dataset Statistics

  • Total Samples: 1,200
  • Total Duration: 0.84 hours
  • Sampling Rate: 24,000 Hz
  • Format: Audio arrays with transcriptions

Training Split

  • Samples: 1,000
  • Duration: 0.70 hours
  • Avg Duration: 2.5s
  • Duration Range: 1.4s - 6.2s
  • Avg Text Length: 6 characters

Test Split

  • Samples: 200
  • Duration: 0.14 hours
  • Avg Duration: 2.5s
  • Duration Range: 1.5s - 4.9s
  • Avg Text Length: 6 characters

Loading the Dataset

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("your-username/uaspeech_male")

# Access train and test splits
train_data = dataset['train']
test_data = dataset['test']

# Each sample contains:
# - 'audio': {'array': numpy_array, 'sampling_rate': 24000}
# - 'text': str (normalized transcription)

# Example usage
sample = train_data[0]
audio_array = sample['audio']['array']
transcription = sample['text']
sampling_rate = sample['audio']['sampling_rate']

Direct Training with Transformers

from transformers import Trainer
from datasets import load_dataset

# Load and use directly with Trainer (no preprocessing needed)
dataset = load_dataset("your-username/uaspeech_male")
trainer = Trainer(
    train_dataset=dataset['train'],
    eval_dataset=dataset['test'],
    # ... other trainer arguments
)
Downloads last month
122