dwb2023 commited on
Commit
fb36bff
·
verified ·
1 Parent(s): 8de15c2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +72 -49
README.md CHANGED
@@ -1,51 +1,74 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: page_content
5
- dtype: string
6
- - name: metadata
7
- struct:
8
- - name: author
9
- dtype: string
10
- - name: creationDate
11
- dtype: string
12
- - name: creationdate
13
- dtype: string
14
- - name: creator
15
- dtype: string
16
- - name: file_path
17
- dtype: string
18
- - name: format
19
- dtype: string
20
- - name: keywords
21
- dtype: string
22
- - name: modDate
23
- dtype: string
24
- - name: moddate
25
- dtype: string
26
- - name: page
27
- dtype: int64
28
- - name: producer
29
- dtype: string
30
- - name: source
31
- dtype: string
32
- - name: subject
33
- dtype: string
34
- - name: title
35
- dtype: string
36
- - name: total_pages
37
- dtype: int64
38
- - name: trapped
39
- dtype: string
40
- splits:
41
- - name: train
42
- num_bytes: 158682
43
- num_examples: 38
44
- download_size: 87008
45
- dataset_size: 158682
46
- configs:
47
- - config_name: default
48
- data_files:
49
- - split: train
50
- path: data/train-*
51
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-retrieval
5
+ - question-answering
6
+ tags:
7
+ - rag
8
+ - gdelt
9
+ - knowledge-graphs
10
+ - retrieval
11
+ pretty_name: GDELT RAG Source Documents
12
+ size_categories:
13
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ---
15
+
16
+ # GDELT RAG Source Documents
17
+
18
+ ## Dataset Description
19
+
20
+ This dataset contains source documents extracted from the research paper "Talking to GDELT Through Knowledge Graphs"
21
+ (arXiv:2503.07584v3). The documents are used as the knowledge base for a Retrieval-Augmented Generation (RAG) system
22
+ focused on GDELT (Global Database of Events, Language, and Tone) analysis.
23
+
24
+ ### Dataset Summary
25
+
26
+ - **Total Documents**: 38 pages
27
+ - **Source**: Research paper on GDELT Knowledge Graphs
28
+ - **Format**: PDF pages with extracted text and metadata
29
+ - **Use Case**: RAG knowledge base for GDELT-related queries
30
+
31
+ ### Data Fields
32
+
33
+ - `page_content` (string): Extracted text content from the PDF page
34
+ - `metadata` (dict): Document metadata including:
35
+ - `title`: Paper title
36
+ - `author`: Paper authors
37
+ - `page`: Page number
38
+ - `total_pages`: Total pages in source document
39
+ - `file_path`: Original file path
40
+ - `format`: Document format (PDF)
41
+ - `producer`, `creator`: PDF metadata
42
+ - Other PDF metadata fields
43
+
44
+ ### Data Splits
45
+
46
+ This dataset contains a single split with all 38 documents.
47
+
48
+ ### Source Data
49
+
50
+ The source material is the research paper:
51
+ - **Title**: "Talking to GDELT Through Knowledge Graphs"
52
+ - **Authors**: Audun Myers, Max Vargas, Sinan G. Aksoy, Cliff Joslyn, Benjamin Wilson, Lee Burke, Tom Grimes
53
+ - **arXiv ID**: 2503.07584v3
54
+
55
+ ### Licensing
56
+
57
+ This dataset is released under the Apache 2.0 license.
58
+
59
+ ### Citation
60
+
61
+ If you use this dataset, please cite the original paper:
62
+
63
+ ```
64
+ @article{myers2025talking,
65
+ title={Talking to GDELT Through Knowledge Graphs},
66
+ author={Myers, Audun and Vargas, Max and Aksoy, Sinan G and Joslyn, Cliff and Wilson, Benjamin and Burke, Lee and Grimes, Tom},
67
+ journal={arXiv preprint arXiv:2503.07584},
68
+ year={2025}
69
+ }
70
+ ```
71
+
72
+ ### Dataset Creation
73
+
74
+ This dataset was created as part of the AI Engineering Bootcamp Cohort 8 certification challenge project.