selfmaker commited on
Commit
53a72dc
·
verified ·
1 Parent(s): 7fe00fa

Create README.md

Browse files

Creation of the dataset card.

Files changed (1) hide show
  1. README.md +115 -0
README.md ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ # For reference on dataset card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
3
+ # Doc / guide: https://huggingface.co/docs/hub/datasets-cards
4
+ {}
5
+ ---
6
+
7
+ # Dataset Card for Dataset Name
8
+
9
+ <!-- Provide a quick summary of the dataset. -->
10
+
11
+ We provide here datasets to help in building classification for quality of astronomical images. It is inspired from the publication
12
+ [Assessment of Astronomical Images Using Combined Machine-learning Models](https://doi.org/10.3847/1538-3881/ab7938).
13
+ Authors of the publication did not provide access to the datasets used.
14
+ We provide 2 different datasets:
15
+ - raw dataset: astronomical images with LDAC files containing features extracted with the tool SExtractor,
16
+ - processed dataset: catalogs of features usable as inputs for modeling.
17
+
18
+ These datasets are part of the project [astro_iqa](https://github.com/mfournigault/astro_iqa).
19
+
20
+ ## Raw Dataset Details
21
+
22
+ ### Dataset Description
23
+
24
+ <!-- Provide a longer summary of what this dataset is. -->
25
+
26
+ Raw data sources are a compilation of images captured by the MegaCam camera at the Canada-France-Hawaii Telescope, and captured with my personal telescope/camera.
27
+ Features are extracted from images by using the software SExtractor.
28
+ For each FITS file present in the directory "./data/raw", the software will produce a LDAC file in the format "FITS_1.0".
29
+ Each image is associated to one LDAC file.
30
+
31
+ - **Curated by:** [selfmaker]
32
+ - **Funded by [selfmaker]:**
33
+ - **Shared by [selfmaker]:**
34
+ - **License:** [CC-BY-NC-SA-4.0]
35
+
36
+ ### Dataset Sources
37
+
38
+ <!-- Provide the basic links for the dataset. -->
39
+
40
+ - **Repository:** [./raw]
41
+ - **Demo:** [For usage details, see the notebooks SOM_datasets_preparation and dnn_datasets_preparation in the github project repo]
42
+
43
+ ## Processed Dataset Details
44
+
45
+ ### Dataset Description
46
+
47
+ <!-- Provide a longer summary of what this dataset is. -->
48
+ The dataset is composed of feature catalogs and image annotations.
49
+
50
+ **The catalogs** are built by combining all the LDAC files produced by the SExtractor software. For each object, SExtractor is used to output the following features:
51
+ - X and Y coordinates of the object in the image,
52
+ - ISO0,
53
+ - ELONGATION,
54
+ - ELLIPTICITY,
55
+ - CLASS_STAR,
56
+ - BACKGROUND.
57
+ The exposure time of the image is also added to the catalog as it can significantly affect the quality and characteristics of the detected sources.
58
+
59
+ - **Curated by:** [selfmaker]
60
+ - **Funded by [selfmaker]:**
61
+ - **Shared by [selfmaker]:**
62
+ - **License:** [CC-BY-NC-SA-4.0]
63
+
64
+ ### Dataset Sources
65
+
66
+ <!-- Provide the basic links for the dataset. -->
67
+
68
+ - **Repository:** [./for_modeling]
69
+ - **Demo:** [For usage details, see the notebooks SOM_datasets_preparation, dnn_datasets_preparation and datasets_verifiation in the github project repo]
70
+
71
+
72
+ Annotations follow the COCO format:
73
+ "info": {
74
+ ...
75
+ },
76
+ "images": [
77
+ filenames, ...
78
+ ],
79
+ "categories": [
80
+ "GOOD",
81
+ "B_SEEING",
82
+ "BGP",
83
+ "BT",
84
+ "RBT"
85
+ ],
86
+ "annotations": { ... }
87
+ Annotations files are located in the fold "data/for_modeling". The ones used to compose the current dataset are:
88
+ - map_images_labels_cadc2.json
89
+ - map_images_labels_ngc0869.json
90
+ - map_images_labels_ngc0896.json
91
+ - 8595 map_images_labels_ngc7000.json
92
+
93
+ Annotations are already reported in the parquet files.
94
+
95
+ To built tensorflow datasets from the parquet catalogs see the github project repo: [https://github.com/mfournigault/astro_iqa](https://github.com/mfournigault/astro_iqa).
96
+
97
+ ## Uses
98
+
99
+ <!-- Address questions around how the dataset is intended to be used. -->
100
+ These datasets aim to develop a quality assessment tool for astronomical images.
101
+ Given an astronomical image, to classify the image between categories: good, bad tracking, very bad tracking, bad seeing, or background issues.
102
+ This classification can then be used:
103
+ - during image capturing with a telescope to warn the user of potential issues,
104
+ - during image stacking to discard bad images of bad quality, and so enable a stacking pipeline completely automated.
105
+ For usage details, see the notebooks SOM_datasets_preparation, dnn_datasets_preparation and datasets_verification in the github project repo
106
+
107
+ ## Dataset Structure
108
+
109
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
110
+ See the project documentation for a complete description of dataset structures..
111
+
112
+
113
+ ## More Information [optional]
114
+
115
+ For more information, see the documentation of the project [astro_iqa](https://github.com/mfournigault/astro_iqa).