graph_dataloader
Bases: dataloader
A dataloader class for graph-based datasets.
This class extends the base dataloader
class to handle graph data, including nodes, links, and associated features.
Attributes:
Name | Type | Description |
---|---|---|
data_profile |
dict
|
The data profile containing metadata and download links for the graph dataset. |
graph |
graph
|
The loaded graph structure. |
Methods:
Name | Description |
---|---|
__init__ |
Initializes the graph dataloader. |
download_data |
Downloads the graph dataset files. |
load_raw |
Loads the raw graph data from files. |
save_graph |
Saves the graph structure to a file. |
load_graph |
Loads the graph structure from a file. |
get_graph |
Retrieves the loaded graph structure. |
get_adj |
Retrieves the adjacency matrix of the graph. |
load |
Loads the dataset, either in transductive or inductive mode. |
get_train_test_idx |
Abstract method to generate train and test indices for the dataset. |
Source code in tinybig/data/graph_dataloader.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 |
|
__init__(data_profile=None, name='graph_data', train_batch_size=64, test_batch_size=64)
Initializes the graph dataloader.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_profile
|
dict
|
Metadata and download links for the graph dataset. |
None
|
name
|
str
|
The name of the dataloader instance. |
'graph_data'
|
train_batch_size
|
int
|
Batch size for the training dataset. |
64
|
test_batch_size
|
int
|
Batch size for the testing dataset. |
64
|
Returns:
Type | Description |
---|---|
None
|
|
Source code in tinybig/data/graph_dataloader.py
download_data(data_profile, cache_dir=None, file_name=None)
staticmethod
Downloads the graph dataset files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_profile
|
dict
|
Metadata and download links for the graph dataset. |
required |
cache_dir
|
str
|
Directory to store the downloaded files. Defaults to './data/'. |
None
|
file_name
|
str
|
Specific file name to download. If None, all files in the |
None
|
Returns:
Type | Description |
---|---|
None
|
|
Raises:
Type | Description |
---|---|
ValueError
|
If |
Source code in tinybig/data/graph_dataloader.py
get_adj(graph=None)
Retrieves the adjacency matrix of the graph.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
graph
|
graph
|
The graph structure to use. If None, the internal graph is used. |
None
|
Returns:
Type | Description |
---|---|
Tensor
|
The adjacency matrix of the graph. |
Raises:
Type | Description |
---|---|
ValueError
|
If no graph structure is loaded. |
Source code in tinybig/data/graph_dataloader.py
get_graph()
Retrieves the loaded graph structure.
Returns:
Type | Description |
---|---|
graph
|
The loaded graph structure, or None if no graph is loaded. |
get_train_test_idx(X=None, y=None, *args, **kwargs)
abstractmethod
Abstract method to generate train and test indices for the dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X
|
Tensor
|
Node features. |
None
|
y
|
Tensor
|
Labels. |
None
|
Returns:
Type | Description |
---|---|
tuple
|
Train and test indices. |
Source code in tinybig/data/graph_dataloader.py
load(mode='transductive', cache_dir=None, device='cpu', train_percentage=0.5, random_state=1234, shuffle=False, *args, **kwargs)
Loads the dataset in either transductive or inductive mode.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mode
|
str
|
Mode of loading the dataset ('transductive' or 'inductive'). |
'transductive'
|
cache_dir
|
str
|
Directory containing the graph data files. Defaults to './data/{name}'. |
None
|
device
|
str
|
Device to store the data. |
'cpu'
|
train_percentage
|
float
|
Percentage of data to use for training in inductive mode. |
0.5
|
random_state
|
int
|
Seed for random number generation. |
1234
|
shuffle
|
bool
|
Whether to shuffle the data. |
False
|
Returns:
Type | Description |
---|---|
dict
|
A dictionary containing train/test loaders and graph structure. |
Raises:
Type | Description |
---|---|
ValueError
|
If required files are not found or the graph is not properly loaded. |
Source code in tinybig/data/graph_dataloader.py
load_graph(complete_path)
Loads the graph structure from a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
complete_path
|
str
|
The file path to load the graph structure from. |
required |
Returns:
Type | Description |
---|---|
graph
|
The loaded graph structure. |
Raises:
Type | Description |
---|---|
ValueError
|
If the file path is not provided. |
Source code in tinybig/data/graph_dataloader.py
load_raw(cache_dir, device='cpu', normalization=True, normalization_mode='row')
Loads the raw graph data from files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cache_dir
|
str
|
Directory containing the graph data files. |
required |
device
|
str
|
Device to store the data. |
'cpu'
|
normalization
|
bool
|
Whether to normalize the node features. |
True
|
normalization_mode
|
str
|
Mode of normalization ('row' or 'column'). |
'row'
|
Returns:
Type | Description |
---|---|
tuple
|
The graph structure, node features (X), and labels (y). |
Raises:
Type | Description |
---|---|
FileNotFoundError
|
If the required files are not found in the cache directory. |
Source code in tinybig/data/graph_dataloader.py
save_graph(complete_path, graph=None)
Saves the graph structure to a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
complete_path
|
str
|
The file path to save the graph structure. |
required |
graph
|
graph
|
The graph structure to save. If None, the internal graph is used. |
None
|
Returns:
Type | Description |
---|---|
str
|
The path to the saved graph file. |
Raises:
Type | Description |
---|---|
ValueError
|
If no graph structure is loaded or the path is not provided. |