Dataset Viewer
Auto-converted to Parquet
audio
audioduration (s)
1.58
7.5
text
stringlengths
1
77
fell
this is a good place though small
beat
sign
feed
knock
bit
travel is about the only leisure we have
sight
this railroad's future is in the west
slip
corn
up
menu
stretch
select
lip
they'll never fit me again
bagpipes and bongos are musical instruments
reap
fool
duck
hall
left
hail
slip
most young rise early every morning
forks
liquor
heart
share
flicker
cheer
it looked like an accordion
slid
seam
sierra
some hotels are available nearby
and
thorn
see
beef
the golfing fathers ruled in his favor
the job provides many benefits
cat
panel
neat
heat
tore
arm
that's what life is really all about
the little schoolhouse stood empty
fell
whip
pain
dark
lisp
blend
leak
go
fold
zip
zero
list
mole
i loved every minute of it
he
zulu
sport
i got into acting by accident
this is not a program of socialized medicine
shore
we got drenched from the uninterrupted rain
the prowler wore a ski mask for disguise
it's illegal to postdate a check
form
seven
occur
i was pleased with the way things went
loop
mother sews yellow gingham aprons
pant
wax
dress
sheet
hate
nap
a large household needs lots of appliances
goose
good service should be rewarded by big tips
lend
beat
fudge
sit
echo
grandmother outgrew her upbringing in petticoats
i'm willing to experiment for the first time
rise
spark
sake
End of preview. Expand in Data Studio

Torgo Healthy Female Dataset (Updated)

Overview

This dataset contains healthy control speech samples from a female speaker (FC02) in the TORGO corpus, prepared for pathological speech synthesis research.

Speaker Information:

  • Speaker ID: FC02
  • Corpus: TORGO
  • Gender: Female
  • Speech Status: Healthy Control

Dataset Statistics

  • Total Samples: 800
  • Total Duration: 0.63 hours
  • Sampling Rate: 24,000 Hz
  • Format: Audio arrays with transcriptions

Training Split

  • Samples: 700
  • Duration: 0.55 hours
  • Avg Duration: 2.9s
  • Duration Range: 1.6s - 7.5s
  • Avg Text Length: 13 characters

Test Split

  • Samples: 100
  • Duration: 0.08 hours
  • Avg Duration: 2.9s
  • Duration Range: 1.9s - 6.3s
  • Avg Text Length: 14 characters

Loading the Dataset

from datasets import load_dataset

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

# 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/torgo_healthy_female")
trainer = Trainer(
    train_dataset=dataset['train'],
    eval_dataset=dataset['test'],
    # ... other trainer arguments
)
Downloads last month
116