ogutsevda commited on
Commit
b2ee95a
·
verified ·
1 Parent(s): cedb44a

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-BRACS** is a graph-level classification dataset derived from the [BRACS (BReAst Carcinoma Subtyping)](https://www.bracs.icar.cnr.it/) histopathology dataset. Each region-of-interest (ROI) image is converted into a **cell-graph** where nodes represent detected cell nuclei and edges encode spatial proximity, enabling graph-based learning for fine-grained breast lesion subtyping across 7 clinically relevant 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
 
@@ -105,12 +105,12 @@ If you use this dataset, please cite both our work, and the original BRACS datas
105
 
106
  **GrapHist (this dataset):**
107
  ```bibtex
108
- @article{graphist2025,
109
- title = {GrapHist: Graph Self-Supervised Learning for Histopathology},
110
- author = {TODO},
111
- journal = {TODO},
112
- year = {TODO},
113
- note = {TODO: add full citation}
114
  }
115
  ```
116
 
 
20
 
21
  **Graph-BRACS** is a graph-level classification dataset derived from the [BRACS (BReAst Carcinoma Subtyping)](https://www.bracs.icar.cnr.it/) histopathology dataset. Each region-of-interest (ROI) image is converted into a **cell-graph** where nodes represent detected cell nuclei and edges encode spatial proximity, enabling graph-based learning for fine-grained breast lesion subtyping across 7 clinically relevant 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
 
 
105
 
106
  **GrapHist (this dataset):**
107
  ```bibtex
108
+ @misc{ogut2026graphist,
109
+ title={GrapHist: Graph Self-Supervised Learning for Histopathology},
110
+ author={Sevda Öğüt and Cédric Vincent-Cuaz and Natalia Dubljevic and Carlos Hurtado and Vaishnavi Subramanian and Pascal Frossard and Dorina Thanou},
111
+ year={2026},
112
+ eprint={2603.00143},
113
+ url={https://arxiv.org/abs/2603.00143},
114
  }
115
  ```
116