ogutsevda commited on
Commit
b0d5488
·
verified ·
1 Parent(s): 57a7ef9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -20,7 +20,7 @@ size_categories:
20
 
21
  **Graph-NuCLS** is a node-level classification dataset derived from the [NuCLS](https://sites.google.com/view/nucls/home) dataset with "main" labels. 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 7 classes. Note that node features describe cell morphology, texture, and color intensity whereas edge features are Euclidean distance in micrometers.
22
 
23
- This dataset is part of the paper **GrapHist: Graph Self-Supervised Learning for Histopathology**.
24
 
25
  > ⚠️ **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.
26
 
@@ -111,12 +111,12 @@ If you use this dataset, please cite both our work, and the original NuCLS datas
111
 
112
  **GrapHist (this dataset):**
113
  ```bibtex
114
- @article{graphist2025,
115
- title = {GrapHist: Graph Self-Supervised Learning for Histopathology},
116
- author = {TODO},
117
- journal = {TODO},
118
- year = {TODO},
119
- note = {TODO: add full citation}
120
  }
121
  ```
122
 
 
20
 
21
  **Graph-NuCLS** is a node-level classification dataset derived from the [NuCLS](https://sites.google.com/view/nucls/home) dataset with "main" labels. 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 7 classes. Note that node features describe cell morphology, texture, and color intensity whereas edge features are Euclidean distance in micrometers.
22
 
23
+ This dataset is part of the paper [GrapHist: Graph Self-Supervised Learning for Histopathology](https://arxiv.org/pdf/2603.00143).
24
 
25
  > ⚠️ **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.
26
 
 
111
 
112
  **GrapHist (this dataset):**
113
  ```bibtex
114
+ @misc{ogut2026graphist,
115
+ title={GrapHist: Graph Self-Supervised Learning for Histopathology},
116
+ author={Sevda Öğüt and Cédric Vincent-Cuaz and Natalia Dubljevic and Carlos Hurtado and Vaishnavi Subramanian and Pascal Frossard and Dorina Thanou},
117
+ year={2026},
118
+ eprint={2603.00143},
119
+ url={https://arxiv.org/abs/2603.00143},
120
  }
121
  ```
122