File size: 1,546 Bytes
263985f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
license: mit
task_categories:
  - text-generation
  - automatic-speech-recognition
language:
  - en
tags:
  - podcast
  - transcript
  - bitcoin
  - audio
size_categories:
  - 1K<n<10K
---

# 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 diarization
- `transcript_chunks.parquet` - Transcript chunks (512 tokens) with optional embeddings

## Schema

### transcripts.parquet
- `episode_id`: Unique episode identifier
- `podcast_slug`: Podcast name slug
- `episode_slug`: Episode name slug
- `episode_title`: Episode title
- `published_at`: Publication date
- `duration_seconds`: Episode duration
- `transcript_text`: Full transcript text
- `segments`: List of speaker segments

### transcript_chunks.parquet
- `chunk_id`: Unique chunk identifier
- `episode_id`: Parent episode ID
- `text`: Chunk text (~512 tokens)
- `timestamp_start`: Start time in seconds
- `timestamp_end`: End time in seconds
- `speakers`: List of speakers in chunk
- `primary_speaker`: Main speaker in chunk
- `embedding`: Optional text embedding (text-embedding-3-large)

## Usage

```python
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