sleeperscio commited on
Commit
5143804
·
verified ·
1 Parent(s): dd67022

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - summarization
5
+ language:
6
+ - en
7
+ tags:
8
+ - science
9
+ - agriculture
10
+ - academic
11
+ size_categories:
12
+ - 10M<n<100M
13
+ ---
14
+
15
+ # A Curated Research Corpus for Agricultural Advisory AI Applications
16
+ This dataset represents a comprehensive collection of 53,981 agricultural research publications from [CGIAR](https://cgiar.org/),
17
+ specifically processed and structured for Large Language Model (LLM) applications in agricultural advisory services.
18
+ This dataset bridges the gap between advanced agricultural research and field-level advisory needs,
19
+ drawing from CGIAR's extensive scientific knowledge base that has been used by both public and private extension services.
20
+ Each document has been systematically processed using [GROBID](https://grobid.readthedocs.io/en/latest/Introduction/) to extract
21
+ structured content while preserving critical scientific context, metadata, and domain-specific agricultural knowledge. Morever, chunking
22
+ methods that preserver the semantic coherence have been applied. More specifically, documents are split
23
+ into chunks based on a fixed number of tokens and a portion of tokens at the end of each chunk
24
+ overlaps with the beginning of the next chunk. This implementation Preserves contextual continuity between chunks,
25
+ which improves the model's understanding of the document's flow and can lead to better predictions and is useful
26
+ for tasks that rely on context spread over multiple chunks, such as question answering or summarization
27
+ ([Chunking Methods](https://scio.atlassian.net/wiki/spaces/CiGi/pages/221675526/Chunking+methods)).
28
+ The corpus covers diverse agricultural topics including crop management, pest control, climate adaptation, and farming systems,
29
+ with particular emphasis on small-scale producer contexts in low and middle-income countries.
30
+ This machine-readable dataset is specifically curated to enhance the accuracy and contextual relevance of
31
+ AI-generated agricultural advisories through Retrieval-Augmented Generation (RAG) frameworks,
32
+ ensuring that advanced agricultural science can effectively benefit those at the heart of agriculture.
33
+
34
+ ### Data Sources and RAG Pipeline
35
+ The dataset is sourced from [GARDIAN](https://gardian.bigdata.cgiar.org/),
36
+ a comprehensive hub for agri-food data and publications. Utilizing its robust API,
37
+ the GAIA-CIGI pipeline has systematically discovered and gathered all open-access reports and publications
38
+ from the various CGIAR centers. Each document has been converted into a structured, machine-readable format using [GROBID](https://grobid.readthedocs.io/en/latest/Introduction/),
39
+ a specialized tool for extracting the structure of scientific publications. A complete description of the system architecture can be found [here](https://scio.atlassian.net/wiki/spaces/CiGi/pages/45711361/Pipeline+Architecture)
40
+
41
+ ### Document Structure
42
+ ```
43
+ {
44
+ "metadata": {
45
+ "gardian_id": "",
46
+ "source": "",
47
+ "url": "",
48
+ "id": ""
49
+ },
50
+ "keywords":["keywords"],
51
+ "sieverID": "",
52
+ "content": ""
53
+ }
54
+ ```
55
+
56
+ ### Property Description
57
+ <ol>
58
+ <li>"metadata" (object, required): Contains information related to the document's metadata.
59
+ <ol>
60
+ <li>"gardian_id" (string): an identifier for the document within the GARDIAN ecosystem.</li>
61
+ <li>"source" (string): the source or origin of the document.</li>
62
+ <li>"url" (string): the url of the downloaded document.</li>
63
+ <li>"id" (string): internal identifier of the document generated by hashing the URL string.</li>
64
+ </ol>
65
+ </li>
66
+ <li>"keywords" (list of strings): the keyword list as obtained from origin index metadata.</li>
67
+ <li>"sieverID" (string, required): internal identifier of the document.</li>
68
+ <li>"content" (string): The useful textual content of the publication as retrieved using GROBID and PDFbox.</li>
69
+ </ol>
70
+
71
+ ### Acknowledgement
72
+ This dataset was developed for the Generative AI for Agriculture (GAIA) project, supported by the Bill and Melinda Gates Foundation, in collaboration between [CGIAR](https://www.cgiar.org/)
73
+ and [SCiO](https://scio.systems/)