sleeperscio commited on
Commit
4d42537
·
verified ·
1 Parent(s): a73fc58

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -3
README.md CHANGED
@@ -1,3 +1,76 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```Documents:``` 12,007
15
+ ```Pages:``` 362,716
16
+ ```Tokens:``` 75,284,385
17
+
18
+ # A Curated Research Corpus for Agricultural Advisory AI Applications
19
+ Each document has been systematically processed using [GROBID](https://grobid.readthedocs.io/en/latest/Introduction/) to extract
20
+ structured content while preserving critical scientific context, metadata, and domain-specific agricultural knowledge. Morever, chunking
21
+ methods that preserver the semantic coherence have been applied. More specifically, documents are split
22
+ into chunks based on a fixed number of tokens and a portion of tokens at the end of each chunk
23
+ overlaps with the beginning of the next chunk. This implementation Preserves contextual continuity between chunks,
24
+ which improves the model's understanding of the document's flow and can lead to better predictions and is useful
25
+ for tasks that rely on context spread over multiple chunks, such as question answering or summarization
26
+ ([Chunking Methods](https://scio.atlassian.net/wiki/spaces/CiGi/pages/221675526/Chunking+methods)).
27
+ The corpus covers diverse agricultural topics including crop management, pest control, climate adaptation, and farming systems,
28
+ with particular emphasis on small-scale producer contexts in low and middle-income countries.
29
+ This machine-readable dataset is specifically curated to enhance the accuracy and contextual relevance of
30
+ AI-generated agricultural advisories through Retrieval-Augmented Generation (RAG) frameworks,
31
+ ensuring that advanced agricultural science can effectively benefit those at the heart of agriculture.
32
+
33
+ ### Data Sources and RAG Pipeline
34
+ The dataset is sourced from [GARDIAN](https://gardian.bigdata.cgiar.org/),
35
+ a comprehensive hub for agri-food data and publications. Utilizing its robust API,
36
+ the GAIA-CIGI pipeline has systematically discovered and gathered all open-access reports and publications
37
+ 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/),
38
+ 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)
39
+
40
+ ### Document Structure
41
+ ```
42
+ {
43
+ "metadata": {
44
+ "gardian_id": "",
45
+ "source": "",
46
+ "url": "",
47
+ "id": ""
48
+ },
49
+ "keywords":["keywords"],
50
+ "sieverID": "",
51
+ "content": "",
52
+ "images":[],
53
+ "tables":[]
54
+ }
55
+ ```
56
+
57
+ ### Property Description
58
+ <ol>
59
+ <li>"metadata" (object, required): Contains information related to the document's metadata.
60
+ <ol>
61
+ <li>"gardian_id" (string): an identifier for the document within the GARDIAN ecosystem.</li>
62
+ <li>"source" (string): the source or origin of the document.</li>
63
+ <li>"url" (string): the url of the downloaded document.</li>
64
+ <li>"id" (string): internal identifier of the document generated by hashing the URL string.</li>
65
+ </ol>
66
+ </li>
67
+ <li>"keywords" (list of strings): the keyword list as obtained from origin index metadata.</li>
68
+ <li>"sieverID" (string, required): internal identifier of the document.</li>
69
+ <li>"content" (string): The useful textual content of the publication as retrieved using GROBID and PDFbox.</li>
70
+ <li>"images" (list of strings): It containes the keys of the extracted images by PDFbox. To access the image create the following URL https://cigi-images.s3.us-east-2.amazonaws.com/{image_key}</li>
71
+ <li>"tables" (list of strings): It containes the keys of the extracted datatables by Tabula. To access the datatables create the following URL https://cigi-tables.s3.us-east-2.amazonaws.com/{tables_key}</li>
72
+ </ol>
73
+
74
+ ### Acknowledgement
75
+ This dataset was developed for the [Generative AI for Agriculture (GAIA)](https://www.ifpri.org/project/generative-ai-for-agriculture-gaia/) project, supported by the Gates Foundation, in collaboration between [CGIAR](https://www.cgiar.org/)
76
+ and [SCiO](https://scio.systems/)