Utils¶
This module provides utility functions for the project.
Functions¶
get_num_scenarios¶
Get total number of scenarios from data directory.
Reads from n_scenarios.txt metadata file in the data directory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data_dir
|
str
|
Directory containing parquet files and n_scenarios.txt |
required |
Returns:
| Type | Description |
|---|---|
int
|
Total number of scenarios |
Raises:
| Type | Description |
|---|---|
ValueError
|
If n_scenarios.txt metadata file not found |
Source code in gridfm_datakit/utils/utils.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |
read_partitions¶
Read sampled partition folders in parallel and concatenate them.
Source code in gridfm_datakit/utils/utils.py
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 | |
write_ram_usage_distributed¶
Source code in gridfm_datakit/utils/utils.py
79 80 81 82 83 84 85 86 87 88 89 90 | |
Classes¶
Tee¶
Source code in gridfm_datakit/utils/utils.py
93 94 95 96 97 98 99 100 101 102 103 104 | |