Datasets:
Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html>
<h"... is not valid JSON
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.
Podcast Transcripts Dataset
This dataset contains transcripts from Bitcoin and cryptocurrency podcasts, processed by the belief-engines ETL pipeline.
Files
transcripts.parquet- Full episode transcripts with speaker diarizationtranscript_chunks.parquet- Transcript chunks (512 tokens) with optional embeddings
Schema
transcripts.parquet
episode_id: Unique episode identifierpodcast_slug: Podcast name slugepisode_slug: Episode name slugepisode_title: Episode titlepublished_at: Publication dateduration_seconds: Episode durationtranscript_text: Full transcript textsegments: List of speaker segments
transcript_chunks.parquet
chunk_id: Unique chunk identifierepisode_id: Parent episode IDtext: Chunk text (~512 tokens)timestamp_start: Start time in secondstimestamp_end: End time in secondsspeakers: List of speakers in chunkprimary_speaker: Main speaker in chunkembedding: Optional text embedding (text-embedding-3-large)
Usage
from datasets import load_dataset
# Load full transcripts
transcripts = load_dataset("rchiera/podcast-transcripts", data_files="data/transcripts.parquet")
# Load chunks
chunks = load_dataset("rchiera/podcast-transcripts", data_files="data/transcript_chunks.parquet")
License
MIT License
- Downloads last month
- 28