astroshawn commited on
Commit
d8ba43a
·
verified ·
1 Parent(s): e0b9765

Upload dataset_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. dataset_config.json +26 -0
dataset_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0.0",
3
+ "description": "Test data for SpecCLIP - Paired Gaia XP and LAMOST LRS spectra",
4
+ "license": "cc-by-4.0",
5
+ "files": {
6
+ "gaia_lamost_test_only.h5": {
7
+ "description": "Test set with paired Gaia XP and LAMOST LRS spectra",
8
+ "size": "~10 MB",
9
+ "format": "HDF5",
10
+ "contents": {
11
+ "test/source_ids": "Gaia source identifiers",
12
+ "test/gaia_spectra": "Gaia XP spectra (N, 343)",
13
+ "test/lamost_spectra": "LAMOST LRS spectra (N, 1462)"
14
+ },
15
+ "required_for": [
16
+ "retrieval",
17
+ "embedding_database",
18
+ "cross_modal_prediction"
19
+ ]
20
+ }
21
+ },
22
+ "usage": {
23
+ "download_command": "huggingface-cli download astroshawn/SpecCLIP-TestData-Small --local-dir ./test_data",
24
+ "python_example": "\nfrom huggingface_hub import hf_hub_download\n\n# Download test data\ntest_data_path = hf_hub_download(\n repo_id=\"astroshawn/SpecCLIP-TestData-Small\",\n filename=\"gaia_lamost_test_only.h5\",\n repo_type=\"dataset\",\n local_dir=\"./test_data\"\n)\n"
25
+ }
26
+ }