--- size_categories: - 1K Here are some examples of common artefacts in the dataset: Examples of common artefacts in the OM observations. # Annotation platforms The images have been annotated using the following platform: - [Zooniverse](https://www.zooniverse.org/projects/ori-j/ai-for-artefacts-in-sky-images), where the resulted annotations are not externally visible. - [Roboflow](https://universe.roboflow.com/iuliaelisa/xmm_om_artefacts_512/), which allows for more interactive and visual annotation tools. # The dataset format The dataset is splited into train and validation categories and contains annotated artefacts in COCO format for Instance Segmentation. We use multilabel Stratified K-fold (**k=4**) to balance class distributions across splits. We choose to work with a single dataset splits version (out of 4) but also provide means to work with all 4 versions. Please check [Dataset Structure](Datasets-Structure.md) for a more detailed structure of our dataset in COCO-IS and YOLOv8-Seg format. # Downloading the dataset ### *(Option 1)* Downloading the dataset **archive** from HuggingFace - using a python script: ```python import os import json import pandas as pd from huggingface_hub import hf_hub_download dataset_name = 'xami_dataset' # the dataset name of Huggingface images_dir = '.' # the output directory of the dataset images hf_hub_download( repo_id="iulia-elisa/XAMI-dataset", # the Huggingface repo ID repo_type='dataset', filename=dataset_name+'.zip', local_dir=images_dir ); # Unzip file !unzip -q "xami_dataset.zip" # Read the train json annotations file annotations_path = os.path.join(images_dir, dataset_name, 'train/', '_annotations.coco.json') with open(annotations_path) as f: data_in = json.load(f) data_in['images'][0] ``` or - using a CLI command: ```bash huggingface-cli download iulia-elisa/XAMI-dataset xami_dataset.zip --repo-type dataset --local-dir '/path/to/local/dataset/dir' ``` ### *(Option 2)* Cloning the repository for more visualization tools ```bash # Github git clone https://github.com/ESA-Datalabs/XAMI-dataset.git cd XAMI-dataset ``` ## Licence ...