rchiera commited on
Commit
263985f
·
verified ·
1 Parent(s): 579de7d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-generation
5
+ - automatic-speech-recognition
6
+ language:
7
+ - en
8
+ tags:
9
+ - podcast
10
+ - transcript
11
+ - bitcoin
12
+ - audio
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+
17
+ # Podcast Transcripts Dataset
18
+
19
+ This dataset contains transcripts from Bitcoin and cryptocurrency podcasts,
20
+ processed by the belief-engines ETL pipeline.
21
+
22
+ ## Files
23
+
24
+ - `transcripts.parquet` - Full episode transcripts with speaker diarization
25
+ - `transcript_chunks.parquet` - Transcript chunks (512 tokens) with optional embeddings
26
+
27
+ ## Schema
28
+
29
+ ### transcripts.parquet
30
+ - `episode_id`: Unique episode identifier
31
+ - `podcast_slug`: Podcast name slug
32
+ - `episode_slug`: Episode name slug
33
+ - `episode_title`: Episode title
34
+ - `published_at`: Publication date
35
+ - `duration_seconds`: Episode duration
36
+ - `transcript_text`: Full transcript text
37
+ - `segments`: List of speaker segments
38
+
39
+ ### transcript_chunks.parquet
40
+ - `chunk_id`: Unique chunk identifier
41
+ - `episode_id`: Parent episode ID
42
+ - `text`: Chunk text (~512 tokens)
43
+ - `timestamp_start`: Start time in seconds
44
+ - `timestamp_end`: End time in seconds
45
+ - `speakers`: List of speakers in chunk
46
+ - `primary_speaker`: Main speaker in chunk
47
+ - `embedding`: Optional text embedding (text-embedding-3-large)
48
+
49
+ ## Usage
50
+
51
+ ```python
52
+ from datasets import load_dataset
53
+
54
+ # Load full transcripts
55
+ transcripts = load_dataset("rchiera/podcast-transcripts", data_files="data/transcripts.parquet")
56
+
57
+ # Load chunks
58
+ chunks = load_dataset("rchiera/podcast-transcripts", data_files="data/transcript_chunks.parquet")
59
+ ```
60
+
61
+ ## License
62
+
63
+ MIT License