ogutsevda commited on
Commit
a0fb42b
·
verified ·
1 Parent(s): d983533

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -19,7 +19,7 @@ size_categories:
19
 
20
  **Graph-PanNuke** is a node-level classification dataset derived from the [PanNuke](https://warwick.ac.uk/fac/sci/dcs/research/tia/data/pannuke/) pan-cancer histology dataset. We use all slides at 40× magnification. Each tissue patch is converted into a **cell-graph** where nodes represent detected cell nuclei and edges encode spatial proximity. The task is predicting the cell type of each nucleus across 5 classes. Note that node features describe cell morphology, texture, and color intensity whereas edge features are Euclidean distance in micrometers.
21
 
22
- This dataset is part of the paper **GrapHist: Graph Self-Supervised Learning for Histopathology**.
23
 
24
  > ⚠️ **Edge Weight Note**: While the architecture in GrapHist supports both positive and negative edge weights, by default edge features represent Euclidean distances—meaning farther nodes have larger, positive values. This can be counterintuitive for many graph neural network models. We recommend experimenting with edge weights, such as using their inverse (e.g., `1/distance`) or negative distance (e.g., `-distance`), to better capture proximity and benefit learning.
25
 
@@ -94,12 +94,12 @@ If you use this dataset, please cite both our work, and the original PanNuke dat
94
 
95
  **GrapHist (this dataset):**
96
  ```bibtex
97
- @article{graphist2025,
98
- title = {GrapHist: Graph Self-Supervised Learning for Histopathology},
99
- author = {TODO},
100
- journal = {TODO},
101
- year = {TODO},
102
- note = {TODO: add full citation}
103
  }
104
  ```
105
 
 
19
 
20
  **Graph-PanNuke** is a node-level classification dataset derived from the [PanNuke](https://warwick.ac.uk/fac/sci/dcs/research/tia/data/pannuke/) pan-cancer histology dataset. We use all slides at 40× magnification. Each tissue patch is converted into a **cell-graph** where nodes represent detected cell nuclei and edges encode spatial proximity. The task is predicting the cell type of each nucleus across 5 classes. Note that node features describe cell morphology, texture, and color intensity whereas edge features are Euclidean distance in micrometers.
21
 
22
+ This dataset is part of the paper [GrapHist: Graph Self-Supervised Learning for Histopathology](https://arxiv.org/pdf/2603.00143).
23
 
24
  > ⚠️ **Edge Weight Note**: While the architecture in GrapHist supports both positive and negative edge weights, by default edge features represent Euclidean distances—meaning farther nodes have larger, positive values. This can be counterintuitive for many graph neural network models. We recommend experimenting with edge weights, such as using their inverse (e.g., `1/distance`) or negative distance (e.g., `-distance`), to better capture proximity and benefit learning.
25
 
 
94
 
95
  **GrapHist (this dataset):**
96
  ```bibtex
97
+ @misc{ogut2026graphist,
98
+ title={GrapHist: Graph Self-Supervised Learning for Histopathology},
99
+ author={Sevda Öğüt and Cédric Vincent-Cuaz and Natalia Dubljevic and Carlos Hurtado and Vaishnavi Subramanian and Pascal Frossard and Dorina Thanou},
100
+ year={2026},
101
+ eprint={2603.00143},
102
+ url={https://arxiv.org/abs/2603.00143},
103
  }
104
  ```
105