mmellis commited on
Commit
3f6bd4a
·
verified ·
1 Parent(s): b50ea4b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -3
README.md CHANGED
@@ -1,3 +1,86 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - earth-science
7
+ - named-entity-recognition
8
+ - natural-language-processing
9
+ - agentic-ai
10
+ - multimodal
11
+ - scientific-workflows
12
+ pretty_name: Open Earth Science (OES) via NLP Dataset
13
+ ---
14
+ ## Dataset Summary
15
+ **Toward Open Earth Science as Fast and Accessible as Natural Language**
16
+
17
+ This dataset was curated to accompany the EO-via-NLP [code](https://github.com/NASA-IMPACT/EO-via-NLP) and the following paper:
18
+
19
+ > Ellis, M., Gurung, I., Ramasubramanian, M., & Ramachandran, R. (2025).
20
+ > *Toward Open Earth Science as Fast and Accessible as Natural Language*.
21
+ > [arXiv:2505.15690](https://arxiv.org/abs/2505.15690)
22
+
23
+ ## Supported Tasks
24
+
25
+ This dataset was primarily designed for:
26
+
27
+ - Named Entity Recognition (NER) in earth science contexts.
28
+
29
+ ## Languages
30
+
31
+ - English (`en`)
32
+
33
+ ## Intended Use
34
+
35
+ This dataset is intended for:
36
+ * Research in agentic AI systems for Earth science,
37
+ * Development of natural language interfaces for software and scientific workflows,
38
+ * Benchmarking multimodal and task-oriented models in geoscience contexts.
39
+
40
+ ## How to Use
41
+
42
+ See the EO-via-NLP [repository](https://github.com/NASA-IMPACT/EO-via-NLP).
43
+
44
+ To simply load it:
45
+ ```python
46
+ from datasets import load_dataset
47
+
48
+ dataset = load_dataset("nasa-impact/EO-via-NLP")
49
+ ```
50
+
51
+ ## Dataset Creation
52
+
53
+ This dataset was curated by the authors of the accompanying paper and EO-via-NLP codebase. All annotations and selections were created by humans.
54
+
55
+
56
+ ## License
57
+
58
+ This dataset is licensed under **Creative Commons Attribution 4.0 International (CC BY 4.0)**.
59
+
60
+ You are free to:
61
+
62
+ - **Share** — copy and redistribute the material in any medium or format
63
+ - **Adapt** — remix, transform, and build upon the material for any purpose, even commercially
64
+
65
+ **Attribution is required.** Please cite the following work when using this dataset:
66
+
67
+ ## Citation
68
+
69
+ ### BibTeX
70
+
71
+ ```bibtex
72
+ @article{ellis2025oes,
73
+ title={Toward Open Earth Science as Fast and Accessible as Natural Language},
74
+ author={Ellis, Marquita and Gurung, Iksha and Ramasubramanian, Muthukumaran and Ramachandran, Rahul},
75
+ journal={arXiv preprint arXiv:2505.15690},
76
+ year={2025},
77
+ month={May},
78
+ doi={10.48550/arXiv.2505.15690},
79
+ url={https://arxiv.org/abs/2505.15690}
80
+ }
81
+ ```
82
+
83
+ Please open an issue or discussion on the Hugging Face dataset page, or contact the authors via the corresponding author listed in the paper.
84
+
85
+ ## README Attribution
86
+ This README was drafted with assistance from Copilot, an AI system based on GPT-4, to ensure clarity, consistency, and alignment with Hugging Face dataset standards.