mdsajjadullah commited on
Commit
6d474fa
·
verified ·
1 Parent(s): 1b1dfcf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -3
README.md CHANGED
@@ -1,3 +1,54 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - tabular-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - federated-learning
9
+ - medical
10
+ - chest-xray
11
+ - fairness
12
+ - healthcare
13
+ - benchmark
14
+ - chexpert
15
+ - densenet
16
+ pretty_name: FL-CheX Federated Learning Benchmark
17
+ size_categories:
18
+ - 10K<n<100K
19
+ ---
20
+
21
+ # FL-CheX: Federated Learning Benchmark for Chest Disease Classification
22
+
23
+ **Author:** Md. Sajjad Ullah
24
+ **Affiliation:** CSE, University of Asia Pacific, Bangladesh
25
+ **Date:** March 2026
26
+
27
+ ## Dataset Summary
28
+ FL-CheX is the first federated learning benchmark
29
+ combining demographic, Non-IID, and scanner heterogeneity
30
+ for chest disease classification research.
31
+
32
+ 15 pre-partitioned FL client nodes built from CheXpert
33
+ (Stanford) with real DenseNet-121 features.
34
+
35
+ ## Load Dataset
36
+ ```python
37
+ from datasets import load_dataset
38
+ ds = load_dataset("YOUR_USERNAME/fl-chex-benchmark")
39
+ ```
40
+
41
+ ## Dataset Structure
42
+ - 5 Demographic nodes (age × gender)
43
+ - 5 Non-IID Hospital nodes (disease-specialized)
44
+ - 5 Scanner nodes (hardware quality variation)
45
+
46
+ ## Citation
47
+ ```bibtex
48
+ @misc{flchex2026,
49
+ author = {Md. Sajjad Ullah},
50
+ title = {FL-CheX: A Federated Learning Benchmark},
51
+ year = {2026}
52
+ }
53
+ ```
54
+ ```