Dataset Viewer
Auto-converted to Parquet
audio
audioduration (s)
2.76
11
transcript
stringlengths
24
86
Hope is stronger than fear.
Hard times create strong people.
In the future, I hope to explore philosophy and learn trust deeply.
Can you hear me clearly in this recording?
I always try to keep my promises.
Peace is found within yourself first.
The flowers bloom beautifully in spring.
Learning new history requires dedication, but it always brings great rewards later.
I enjoy learning new technologies every day.
Working with a camera helps me explore better and more efficiently than before.
Thankyou for listening to my recordings.
Traveling to city taught me the value of trust in life.
The sound of river reminds me of school days, which always makes me focused.
My favorite hobby is running, because it makes me feel confident and alive.
She smiled brightly and waved her hand.
Hard work always pays off in the end.
The breeze in the mountains creates a challenging atmosphere for everyone nearby.
Working with a computer helps me work better and more smoothly than before.
I always look forward to learning something new.
Learning new philosophy requires dedication, but it always brings great rewards later.
The sound of forest reminds me of festivals, which always makes me focused.
The sound of sunlight reminds me of childhood, which always makes me happy.
Success is built day by day.
The mountains look stunning in the morning light.
Time management is an essential skill.
Every storm eventually runs out of rain.
Respect for nature is respect for life.
Learning new music requires dedication, but it always brings great rewards later.
Every ending opens a new beginning.
Laughter makes the heart feel lighter.
Consistency is the key to mastering any skill.
Respect earns respect in return.
He opened the door and stepped out.
The library is a peaceful place to study.
Patience and discipline lead to progress.
Sometimes I go for a walk in the evening.
Traveling to forest taught me the value of trust in life.
My favorite hobby is painting, because it makes me feel motivated and alive.
The sound of sunlight reminds me of summer evenings, which always makes me hopeful.
Confidence grows when we face challenges.
I hope these recordings are useful for training.
I want to improve my pronunciation skills.
A challenging meal with vegetables and vegetables keeps the body healthy and strong.
The forest was dark and mysterious.
Working with a computer helps me adapt better and more smoothly than before.
Learning new music requires curiosity but it always brings great rewards later
Helping others is the best success.
Knowledge without action is wasted.
Time lost can never be regained.
Working with a smartphone helps me grow better and more smoothly than before.
I often think about how knowledge changes the way we explore daily.
My favorite hobby is gardening, because it makes me feel happy and alive.
Determination helps overcome all obstacles.
Generosity enriches both giver and receiver.
Success tastes sweeter after failure.
Discipline builds the foundation of success.
Faith gives strength to move forward.
Birds are chirping loudly in the morning.
True strength lies in staying calm.
The road was empty and quiet at night.
My favorite hobby is playing the football.
In the future, I hope to explore technology and learn knowledge deeply.
The sound of music reminds me of family time, which always makes me motivated.
A relaxing meal with nuts and nuts keeps the body healthy and strong.
The stars twinkle brightly at night.
Knowledge is power when applied wisely.
Growth starts where comfort ends.
I want to improve my public speaking skills.
Knowledge grows when shared with others.
Every day brings new opportunities.
I often think about how knowledge changes the way we grow daily.
Change is the only constant in life.
True wealth is health and peace.
Challenges reveal our true potential.
A inspiring meal with vegetables and vegetables keeps the body healthy and strong.
Wisdom grows when mistakes are accepted.
Dreams give us direction and motivation.
The airplane flew high above the clouds.
Success begins with self-discipline.
Traveling to mountains taught me the value of learning in life.
Today is a exciting day, and I feel happy about the future.
Speaking slowly makes the voice more clear.
The breeze in the garden creates a bright atmosphere for everyone nearby.
The sound of birds makes me feel peaceful.
Success is the result of consistent effort.
A joyful meal with fruits and fruits keeps the body healthy and strong.
I like solving puzzles and brain teasers.
I am testing different tones in my voice.
I like to drink coffee in the morning.
In the future, I hope to explore history and learn creativity deeply.
Learning never truly ends in life.
The future depends on what we do today.
A book can change your perspective.
I am working hard to achieve my dreams.
Life is full of opportunities and challenges.
My favorite hobby is cooking, because it makes me feel happy and alive.
True wisdom comes from humble living.
Forgiving frees the heart from pain.
I will record all these sentences carefully.
Traveling to forest taught me the value of knowledge in life.
End of preview. Expand in Data Studio

Audio Transcription Dataset

This dataset contains 297 audio recordings with their corresponding transcriptions for automatic speech recognition (ASR) tasks.

Dataset Description

This dataset includes:

  • Audio files: High-quality voice recordings (.wav format)
  • Transcriptions: Accurate text transcriptions of the spoken content
  • Proper Audio feature type: Ready for model training (not just file paths!)

Dataset Statistics

  • Total samples: 297
  • Audio format: WAV files at 16kHz sampling rate
  • Average transcript length: 50.1 characters
  • Language: English

Sample Data

Audio File Transcript
R1.wav Hope is stronger than fear.
R10.wav Hard times create strong people.
R11.wav In the future, I hope to explore philosophy and learn trust deeply.

Usage

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("Aashish17405/audio-dataset")

# Access audio data (proper Audio type, not string!)
audio_sample = dataset['train'][0]['audio']
print(f"Sampling rate: {audio_sample['sampling_rate']}")
print(f"Audio array shape: {audio_sample['array'].shape}")
print(f"Transcript: {dataset['train'][0]['transcript']}")

# Ready for model training with transformers
from transformers import WhisperProcessor, WhisperForConditionalGeneration

processor = WhisperProcessor.from_pretrained("openai/whisper-tiny")
model = WhisperForConditionalGeneration.from_pretrained("openai/whisper-tiny")

# Process audio
inputs = processor(audio_sample["array"], sampling_rate=audio_sample["sampling_rate"], return_tensors="pt")

Features

Proper Audio Type: Audio column shows as "Audio" feature, not "string"
High Quality: Clear voice recordings
Diverse Content: Various sentences and topics
Training Ready: Formatted for immediate use with speech models

Use Cases

  • Fine-tuning speech recognition models (Whisper, Wav2Vec2, etc.)
  • Voice training and accent recognition
  • Speech-to-text model development
  • Audio processing research

License

MIT License - Free to use for research and commercial purposes.

Downloads last month
94