PhillyMac commited on
Commit
a2d8775
·
verified ·
1 Parent(s): 90f1e27

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +65 -37
README.md CHANGED
@@ -1,39 +1,67 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- - name: source_url
7
- dtype: string
8
- - name: source_title
9
- dtype: string
10
- - name: source_domain
11
- dtype: string
12
- - name: relevance_score
13
- dtype: float64
14
- - name: quality_score
15
- dtype: float64
16
- - name: topics
17
- dtype: string
18
- - name: character_count
19
- dtype: int64
20
- - name: subject_name
21
- dtype: string
22
- - name: subject_type
23
- dtype: string
24
- - name: extraction_date
25
- dtype: string
26
- - name: embedding
27
- list: float64
28
- splits:
29
- - name: train
30
- num_bytes: 2778333
31
- num_examples: 729
32
- download_size: 2217164
33
- dataset_size: 2778333
34
- configs:
35
- - config_name: default
36
- data_files:
37
- - split: train
38
- path: data/train-*
39
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - text-generation
5
+ - feature-extraction
6
+ language:
7
+ - en
8
+ tags:
9
+ - corpus
10
+ - leadership
11
+ - historical
12
+ - deku-corpus-builder
13
+ size_categories:
14
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ---
16
+
17
+ # Julius Caesar Agent
18
+
19
+ This corpus was automatically generated by the **Deku Corpus Builder** for use in RAG-based AI applications.
20
+
21
+ ## Dataset Description
22
+
23
+ - **Subject**: JUlius Caesar
24
+ - **Subject Type**: personality
25
+ - **Total Items**: 729
26
+ - **Has Embeddings**: Yes (all-MiniLM-L6-v2)
27
+ - **Created**: 2026-01-09
28
+
29
+ ## Dataset Structure
30
+
31
+ Each record contains:
32
+ - `text`: The content text
33
+ - `source_url`: Original source URL
34
+ - `source_title`: Title of the source document
35
+ - `source_domain`: Domain of the source
36
+ - `relevance_score`: Relevance to the subject (0-1)
37
+ - `quality_score`: Content quality score (0-1)
38
+ - `topics`: JSON array of detected topics
39
+ - `character_count`: Length of the text
40
+ - `subject_name`: The subject this content relates to
41
+ - `subject_type`: "personality" or "topic"
42
+ - `extraction_date`: When the content was extracted
43
+ - `embedding`: Pre-computed 384-dimensional embedding vector
44
+
45
+ ## Usage
46
+
47
+ ```python
48
+ from datasets import load_dataset
49
+
50
+ dataset = load_dataset("PhillyMac/JUlius_Caesar_Corpus")
51
+
52
+ # Access the data
53
+ for item in dataset["train"]:
54
+ print(item["text"][:100])
55
+ ```
56
+
57
+ ## Integration with RAG
58
+
59
+ This dataset is designed to be integrated with existing embedded corpuses. The embeddings use the `sentence-transformers/all-MiniLM-L6-v2` model, compatible with FAISS indexing.
60
+
61
+ ## License
62
+
63
+ Content is sourced from public domain and Creative Commons licensed materials.
64
+
65
+ ## Generated By
66
+
67
+ [Deku Corpus Builder](https://github.com/PhillyMac/deku-corpus-builder) - An automated corpus building system for AI applications.