Datasets:

DOI:
License:
mhmdjouni commited on
Commit
6e630b8
·
1 Parent(s): 8fff7bc

Fixed README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -23
README.md CHANGED
@@ -12,17 +12,38 @@ The dataset includes hyperspectral images acquired with four different devices,
12
 
13
  ## Contents
14
  - **Hyperspectral cubes** (raw and preprocessed)
15
- - **RGB images** (EOS M50 camera)
16
  - **Physicochemical annotations** (fermentation degree, moisture content, etc.)
17
- - **Metadata files**: acquisition conditions, calibration details, sample identifiers
18
 
19
  ## Data Structure
 
20
  ```
 
 
 
 
 
 
 
 
 
 
21
  ```
22
 
23
- ## Access
24
- The dataset is hosted on [Hugging Face Datasets](https://huggingface.co/datasets/ecos-nord-ginp-uis/CoCoaSpec).
25
- Please cite this dataset using the reference in the **Citation** section below.
 
 
 
 
 
 
 
 
 
 
26
 
27
  ## License
28
  This dataset is released under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/) license.
@@ -31,28 +52,18 @@ This dataset is released under the [Creative Commons Attribution 4.0 Internation
31
  If you use this dataset, please cite:
32
 
33
  ```bibtex
34
- @misc{ecos_nord_grenoble-santander_2025,
35
- author = { Contreras, Kebin and Jouni, Mohamad and Dalla Mura, Mauro and Bacca, Jorge},
36
- title = { CoCoaSpec (Revision 7c05ea0) },
37
- year = 2025,
38
- url = { https://huggingface.co/datasets/ecos-nord-ginp-uis/CoCoaSpec },
39
- doi = { 10.57967/hf/6532 },
40
- publisher = { Hugging Face }
41
  }
42
  ```
43
 
44
- ## How to Use
45
- You can load the dataset with the Hugging Face `datasets` library:
46
-
47
- ```python
48
- from datasets import load_dataset
49
-
50
- # Login using e.g. `huggingface-cli login` to access this dataset
51
- ds = load_dataset("ecos-nord-ginp-uis/CoCoaSpec")
52
- ```
53
-
54
  ## Acknowledgements
55
- This dataset was developed at Universidad Industrial de Santander (Colombia) in collaboration with Université Grenoble Alpes – GIPSA-Lab (France).
56
  We thank all contributors for their efforts in acquisition, annotation, and validation.
57
 
58
  ## Contact
 
12
 
13
  ## Contents
14
  - **Hyperspectral cubes** (raw and preprocessed)
15
+ - **RGB images** (EOS M50 camera)
16
  - **Physicochemical annotations** (fermentation degree, moisture content, etc.)
17
+ - **Calibration & metadata** (dark/flat fields, wavelength centers, camera metadata, acquisition conditions, calibration details, sample identifiers)
18
 
19
  ## Data Structure
20
+ The dataset is organized as follows:
21
  ```
22
+ data/
23
+ ├── scenes/ # Scene-level acquisitions across devices
24
+ ├── resources/ # Calibration and metadata resources
25
+ │ ├── dark_fields/
26
+ │ ├── flat_fields/
27
+ │ ├── metadata/ # cameras.json, campaign_metadata.json
28
+ │ ├── wavelengths/ # per-device band centers
29
+ │ └── physicochemical.csv # physicochemical information
30
+ ├── README.md
31
+ └── data.rar # Full dataset as a single archive
32
  ```
33
 
34
+ ## How to Use
35
+ You can load the dataset with the Hugging Face `datasets` library:
36
+
37
+ ```python
38
+ from datasets import load_dataset
39
+
40
+ # Login using e.g. `huggingface-cli login` to access this dataset
41
+ ds = load_dataset("ecos-nord-ginp-uis/CoCoaSpec")
42
+ ```
43
+
44
+ ## Code (Loading, Preprocessing, Visualization)
45
+ Example Python scripts for loading, visualization, and preprocessing are available in the public GitHub repository:
46
+ https://github.com/kebincontreras/CoCoaSpec
47
 
48
  ## License
49
  This dataset is released under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/) license.
 
52
  If you use this dataset, please cite:
53
 
54
  ```bibtex
55
+ @dataset{contreras2025cocoaspec,
56
+ author = {Contreras, Kebin and Jouni, Mohamad and Dalla Mura, Mauro and Bacca, Jorge},
57
+ title = {CoCoaSpec: Multimodal Hyperspectral Cocoa Beans with Physicochemical Annotations},
58
+ year = {2025},
59
+ publisher = {Hugging Face},
60
+ doi = {10.57967/hf/6532},
61
+ url = {https://huggingface.co/datasets/ecos-nord-ginp-uis/CoCoaSpec}
62
  }
63
  ```
64
 
 
 
 
 
 
 
 
 
 
 
65
  ## Acknowledgements
66
+ This dataset was developed at Universidad Industrial de Santander (Colombia) in collaboration with Université Grenoble Alpes – GIPSA-Lab (France).
67
  We thank all contributors for their efforts in acquisition, annotation, and validation.
68
 
69
  ## Contact