AbhiKand commited on
Commit
9c65f68
·
verified ·
1 Parent(s): f8e971b

Configure image dataset viewer

Browse files
Files changed (1) hide show
  1. README.md +11 -6
README.md CHANGED
@@ -10,10 +10,13 @@ tags:
10
  - image-classification
11
  pretty_name: Lurcher 10x Microscopy
12
  configs:
13
- - config_name: viewer
 
14
  data_files:
15
- - split: folds
16
- path: viewer/lurcher_folds.parquet
 
 
17
  ---
18
 
19
  # Lurcher 10x Microscopy Dataset
@@ -50,16 +53,18 @@ Each row has a path relative to the dataset repository root and a normalized cla
50
 
51
  ## Dataset Viewer
52
 
53
- The Hub dataset viewer uses:
54
 
55
  ```text
56
- viewer/lurcher_folds.parquet
 
57
  ```
58
 
59
- This table mirrors the released fold manifests and includes both `image_path` and an `image` column so the viewer can render thumbnails directly.
60
 
61
  ## Metadata
62
 
 
63
  - `metadata/images.csv`: one row per image with class and case id.
64
  - `metadata/folds.csv`: per-fold split counts and manifest file paths.
65
 
 
10
  - image-classification
11
  pretty_name: Lurcher 10x Microscopy
12
  configs:
13
+ - config_name: images
14
+ drop_labels: true
15
  data_files:
16
+ - split: train
17
+ path:
18
+ - images/**/*.jpg
19
+ - metadata.csv
20
  ---
21
 
22
  # Lurcher 10x Microscopy Dataset
 
53
 
54
  ## Dataset Viewer
55
 
56
+ The Hub dataset viewer is configured as an image dataset using:
57
 
58
  ```text
59
+ images/**/*.jpg
60
+ metadata.csv
61
  ```
62
 
63
+ `metadata.csv` links each image to its relative path, class, and case id so the viewer can render thumbnails directly while preserving the original `image_path` column. The predefined experiment folds remain in the JSONL manifests below `folds/`.
64
 
65
  ## Metadata
66
 
67
+ - `metadata.csv`: one row per image for the Dataset Viewer, with `file_name`, `image_path`, class, and case id.
68
  - `metadata/images.csv`: one row per image with class and case id.
69
  - `metadata/folds.csv`: per-fold split counts and manifest file paths.
70