hyfi.batch
Batch
Bases: BaseConfig
Configuration class for batch processing.
Attributes:
Name | Type | Description |
---|---|---|
batch_name |
str
|
Name of the batch. |
batch_num |
Optional[int]
|
Number of the batch. If None, it will be set to -1. |
batch_root |
str
|
Root directory for the batch. |
output_suffix |
str
|
Suffix to be added to the output file name. |
output_extention |
str
|
Extension of the output file. |
random_seed |
bool
|
Whether to use a random seed for the batch. |
seed |
int
|
Seed to be used for the batch. If random_seed is True or seed is None or negative, a random seed will be generated. |
resume_run |
bool
|
Whether to resume a previous run of the batch. |
resume_latest |
bool
|
Whether to resume the latest run of the batch. |
device |
str
|
Device to be used for the batch. |
num_devices |
int
|
Number of devices to be used for the batch. |
num_workers |
int
|
Number of workers to be used for the batch. |
config_yaml |
str
|
Name of the YAML configuration file. |
config_json |
str
|
Name of the JSON configuration file. |
config_dirname |
str
|
Name of the directory for the configuration files. |
Source code in hyfi/batch/batch.py
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 |
|
batch_dir: Path
property
Returns the path to the batch directory.
batch_id: str
property
Prefix for the output file name.
config_dir: Path
property
Directory for the configuration files.
config_filename: str
property
Name of the YAML configuration file.
config_filepath: Path
property
Path to the YAML configuration file.
config_filepattern: str
property
File pattern for the configuration files.
config_jsonfile: str
property
Name of the JSON configuration file.
config_jsonpath: Path
property
Path to the JSON configuration file.
output_file: str
property
Output file name.
root_dir: Path
property
Root directory for the batch.
__init__(**data)
Initializes the BatchConfig object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**data
|
dict
|
Dictionary containing the configuration data. |
{}
|
set_batch_num(val=None)
Sets the batch number.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
int
|
Batch number. |
None
|