speech-to-text / README.md
jaishah2808's picture
Update README.md
da0b2f3 verified
metadata
license: apache-2.0
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
dataset_info:
  features:
    - name: file_name
      dtype: string
    - name: text
      dtype: string
    - name: category
      dtype: string
    - name: duration
      dtype: int64
    - name: audio
      dtype: audio
  splits:
    - name: train
      num_bytes: 60788913
      num_examples: 31
  download_size: 59847161
  dataset_size: 60788913

My Audio Dataset

This dataset contains audio recordings with corresponding transcriptions and metadata.

Columns

  • audio: Audio files (WAV format).
  • text: Transcription of the audio.
  • category: Category of the audio (if applicable).
  • duration: Duration of the audio in seconds.

Usage

Load the dataset using the datasets library:

from datasets import load_dataset
dataset = load_dataset("jaishah2808/speech-to-text")