klamike commited on
Commit
3a45cfd
·
verified ·
1 Parent(s): 724aaee

Delete loading script

Browse files
Files changed (1) hide show
  1. PGLearn-Large-6470_rte.py +0 -429
PGLearn-Large-6470_rte.py DELETED
@@ -1,429 +0,0 @@
1
- from __future__ import annotations
2
- from dataclasses import dataclass
3
- from pathlib import Path
4
- import json
5
- import shutil
6
-
7
- import datasets as hfd
8
- import h5py
9
- import pgzip as gzip
10
- import pyarrow as pa
11
-
12
- # ┌──────────────┐
13
- # │ Metadata │
14
- # └──────────────┘
15
-
16
- @dataclass
17
- class CaseSizes:
18
- n_bus: int
19
- n_load: int
20
- n_gen: int
21
- n_branch: int
22
-
23
- CASENAME = "6470_rte"
24
- SIZES = CaseSizes(n_bus=6470, n_load=3670, n_gen=761, n_branch=9005)
25
- NUM_TRAIN = 73912
26
- NUM_TEST = 18478
27
- NUM_INFEASIBLE = 7628
28
- SPLITFILES = {
29
- "train/SOCOPF/dual.h5.gz": ["train/SOCOPF/dual/xaa", "train/SOCOPF/dual/xab"],
30
- }
31
-
32
- URL = "https://huggingface.co/datasets/PGLearn/PGLearn-Large-6470_rte"
33
- DESCRIPTION = """\
34
- The 6470_rte PGLearn optimal power flow dataset, part of the PGLearn-Large collection. \
35
- """
36
- VERSION = hfd.Version("1.0.0")
37
- DEFAULT_CONFIG_DESCRIPTION="""\
38
- This configuration contains feasible input, primal solution, and dual solution data \
39
- for the ACOPF, DCOPF, and SOCOPF formulations on the {case} system. For case data, \
40
- download the case.json.gz file from the `script` branch of the repository. \
41
- https://huggingface.co/datasets/PGLearn/PGLearn-Large-6470_rte/blob/script/case.json.gz
42
- """
43
- USE_ML4OPF_WARNING = """
44
- ================================================================================================
45
- Loading PGLearn-Large-6470_rte through the `datasets.load_dataset` function may be slow.
46
-
47
- Consider using ML4OPF to directly convert to `torch.Tensor`; for more info see:
48
- https://github.com/AI4OPT/ML4OPF?tab=readme-ov-file#manually-loading-data
49
-
50
- Or, use `huggingface_hub.snapshot_download` and an HDF5 reader; for more info see:
51
- https://huggingface.co/datasets/PGLearn/PGLearn-Large-6470_rte#downloading-individual-files
52
- ================================================================================================
53
- """
54
- CITATION = """\
55
- @article{klamkinpglearn,
56
- title={{PGLearn - An Open-Source Learning Toolkit for Optimal Power Flow}},
57
- author={Klamkin, Michael and Tanneau, Mathieu and Van Hentenryck, Pascal},
58
- year={2025},
59
- }\
60
- """
61
-
62
- IS_COMPRESSED = True
63
-
64
- # ┌──────────────────┐
65
- # │ Formulations │
66
- # └──────────────────┘
67
-
68
- def acopf_features(sizes: CaseSizes, primal: bool, dual: bool, meta: bool):
69
- features = {}
70
- if primal: features.update(acopf_primal_features(sizes))
71
- if dual: features.update(acopf_dual_features(sizes))
72
- if meta: features.update({f"ACOPF/{k}": v for k, v in META_FEATURES.items()})
73
- return features
74
-
75
- def dcopf_features(sizes: CaseSizes, primal: bool, dual: bool, meta: bool):
76
- features = {}
77
- if primal: features.update(dcopf_primal_features(sizes))
78
- if dual: features.update(dcopf_dual_features(sizes))
79
- if meta: features.update({f"DCOPF/{k}": v for k, v in META_FEATURES.items()})
80
- return features
81
-
82
- def socopf_features(sizes: CaseSizes, primal: bool, dual: bool, meta: bool):
83
- features = {}
84
- if primal: features.update(socopf_primal_features(sizes))
85
- if dual: features.update(socopf_dual_features(sizes))
86
- if meta: features.update({f"SOCOPF/{k}": v for k, v in META_FEATURES.items()})
87
- return features
88
-
89
- FORMULATIONS_TO_FEATURES = {
90
- "ACOPF": acopf_features,
91
- "DCOPF": dcopf_features,
92
- "SOCOPF": socopf_features,
93
- }
94
-
95
- # ┌───────────────────┐
96
- # │ BuilderConfig │
97
- # └───────────────────┘
98
-
99
- class PGLearnLarge6470_rteConfig(hfd.BuilderConfig):
100
- """BuilderConfig for PGLearn-Large-6470_rte.
101
- By default, primal solution data, metadata, input, casejson, are included for the train and test splits.
102
-
103
- To modify the default configuration, pass attributes of this class to `datasets.load_dataset`:
104
-
105
- Attributes:
106
- formulations (list[str]): The formulation(s) to include, e.g. ["ACOPF", "DCOPF"]
107
- primal (bool, optional): Include primal solution data. Defaults to True.
108
- dual (bool, optional): Include dual solution data. Defaults to False.
109
- meta (bool, optional): Include metadata. Defaults to True.
110
- input (bool, optional): Include input data. Defaults to True.
111
- casejson (bool, optional): Include case.json data. Defaults to True.
112
- train (bool, optional): Include training samples. Defaults to True.
113
- test (bool, optional): Include testing samples. Defaults to True.
114
- infeasible (bool, optional): Include infeasible samples. Defaults to False.
115
- """
116
- def __init__(self,
117
- formulations: list[str],
118
- primal: bool=True, dual: bool=False, meta: bool=True, input: bool = True, casejson: bool=True,
119
- train: bool=True, test: bool=True, infeasible: bool=False,
120
- compressed: bool=IS_COMPRESSED, **kwargs
121
- ):
122
- super(PGLearnLarge6470_rteConfig, self).__init__(version=VERSION, **kwargs)
123
-
124
- self.case = CASENAME
125
- self.formulations = formulations
126
-
127
- self.primal = primal
128
- self.dual = dual
129
- self.meta = meta
130
- self.input = input
131
- self.casejson = casejson
132
-
133
- self.train = train
134
- self.test = test
135
- self.infeasible = infeasible
136
-
137
- self.gz_ext = ".gz" if compressed else ""
138
-
139
- @property
140
- def size(self):
141
- return SIZES
142
-
143
- @property
144
- def features(self):
145
- features = {}
146
- if self.casejson: features.update(case_features())
147
- if self.input: features.update(input_features(SIZES))
148
- for formulation in self.formulations:
149
- features.update(FORMULATIONS_TO_FEATURES[formulation](SIZES, self.primal, self.dual, self.meta))
150
- return hfd.Features(features)
151
-
152
- @property
153
- def splits(self):
154
- splits: dict[hfd.Split, dict[str, str | int]] = {}
155
- if self.train:
156
- splits[hfd.Split.TRAIN] = {
157
- "name": "train",
158
- "num_examples": NUM_TRAIN
159
- }
160
- if self.test:
161
- splits[hfd.Split.TEST] = {
162
- "name": "test",
163
- "num_examples": NUM_TEST
164
- }
165
- if self.infeasible:
166
- splits[hfd.Split("infeasible")] = {
167
- "name": "infeasible",
168
- "num_examples": NUM_INFEASIBLE
169
- }
170
- return splits
171
-
172
- @property
173
- def urls(self):
174
- urls: dict[str, None | str | list] = {
175
- "case": None, "train": [], "test": [], "infeasible": [],
176
- }
177
-
178
- if self.casejson:
179
- urls["case"] = f"case.json" + self.gz_ext
180
- else:
181
- urls.pop("case")
182
-
183
- split_names = []
184
- if self.train: split_names.append("train")
185
- if self.test: split_names.append("test")
186
- if self.infeasible: split_names.append("infeasible")
187
-
188
- for split in split_names:
189
- if self.input: urls[split].append(f"{split}/input.h5" + self.gz_ext)
190
- for formulation in self.formulations:
191
- if self.primal:
192
- filename = f"{split}/{formulation}/primal.h5" + self.gz_ext
193
- if filename in SPLITFILES: urls[split].append(SPLITFILES[filename])
194
- else: urls[split].append(filename)
195
- if self.dual:
196
- filename = f"{split}/{formulation}/dual.h5" + self.gz_ext
197
- if filename in SPLITFILES: urls[split].append(SPLITFILES[filename])
198
- else: urls[split].append(filename)
199
- if self.meta:
200
- filename = f"{split}/{formulation}/meta.h5" + self.gz_ext
201
- if filename in SPLITFILES: urls[split].append(SPLITFILES[filename])
202
- else: urls[split].append(filename)
203
- return urls
204
-
205
- # ┌────────────────────┐
206
- # │ DatasetBuilder │
207
- # └────────────────────┘
208
-
209
- class PGLearnLarge6470_rte(hfd.ArrowBasedBuilder):
210
- """DatasetBuilder for PGLearn-Large-6470_rte.
211
- The main interface is `datasets.load_dataset` with `trust_remote_code=True`, e.g.
212
-
213
- ```python
214
- from datasets import load_dataset
215
- ds = load_dataset("PGLearn/PGLearn-Large-6470_rte", trust_remote_code=True,
216
- # modify the default configuration by passing kwargs
217
- formulations=["DCOPF"],
218
- dual=False,
219
- meta=False,
220
- )
221
- ```
222
- """
223
-
224
- DEFAULT_WRITER_BATCH_SIZE = 10000
225
- BUILDER_CONFIG_CLASS = PGLearnLarge6470_rteConfig
226
- DEFAULT_CONFIG_NAME=CASENAME
227
- BUILDER_CONFIGS = [
228
- PGLearnLarge6470_rteConfig(
229
- name=CASENAME, description=DEFAULT_CONFIG_DESCRIPTION.format(case=CASENAME),
230
- formulations=list(FORMULATIONS_TO_FEATURES.keys()),
231
- primal=True, dual=True, meta=True, input=True, casejson=False,
232
- train=True, test=True, infeasible=False,
233
- )
234
- ]
235
-
236
- def _info(self):
237
- return hfd.DatasetInfo(
238
- features=self.config.features, splits=self.config.splits,
239
- description=DESCRIPTION + self.config.description,
240
- homepage=URL, citation=CITATION,
241
- )
242
-
243
- def _split_generators(self, dl_manager: hfd.DownloadManager):
244
- hfd.logging.get_logger().warning(USE_ML4OPF_WARNING)
245
-
246
- filepaths = dl_manager.download_and_extract(self.config.urls)
247
-
248
- splits: list[hfd.SplitGenerator] = []
249
- if self.config.train:
250
- splits.append(hfd.SplitGenerator(
251
- name=hfd.Split.TRAIN,
252
- gen_kwargs=dict(case_file=filepaths.get("case", None), data_files=tuple(filepaths["train"]), n_samples=NUM_TRAIN),
253
- ))
254
- if self.config.test:
255
- splits.append(hfd.SplitGenerator(
256
- name=hfd.Split.TEST,
257
- gen_kwargs=dict(case_file=filepaths.get("case", None), data_files=tuple(filepaths["test"]), n_samples=NUM_TEST),
258
- ))
259
- if self.config.infeasible:
260
- splits.append(hfd.SplitGenerator(
261
- name=hfd.Split("infeasible"),
262
- gen_kwargs=dict(case_file=filepaths.get("case", None), data_files=tuple(filepaths["infeasible"]), n_samples=NUM_INFEASIBLE),
263
- ))
264
- return splits
265
-
266
- def _generate_tables(self, case_file: str | None, data_files: tuple[hfd.utils.track.tracked_str | list[hfd.utils.track.tracked_str]], n_samples: int):
267
- case_data: str | None = json.dumps(json.load(open_maybe_gzip_cat(case_file))) if case_file is not None else None
268
- data: dict[str, h5py.File] = {}
269
- for file in data_files:
270
- v = h5py.File(open_maybe_gzip_cat(file), "r")
271
- if isinstance(file, list):
272
- k = "/".join(Path(file[0].get_origin()).parts[-3:-1]).split(".")[0]
273
- else:
274
- k = "/".join(Path(file.get_origin()).parts[-2:]).split(".")[0]
275
- data[k] = v
276
- for k in list(data.keys()):
277
- if "/input" in k: data[k.split("/", 1)[1]] = data.pop(k)
278
-
279
- batch_size = self._writer_batch_size or self.DEFAULT_WRITER_BATCH_SIZE
280
- for i in range(0, n_samples, batch_size):
281
- effective_batch_size = min(batch_size, n_samples - i)
282
-
283
- sample_data = {
284
- f"{dk}/{k}":
285
- hfd.features.features.numpy_to_pyarrow_listarray(v[i:i + effective_batch_size, ...])
286
- for dk, d in data.items() for k, v in d.items() if f"{dk}/{k}" in self.config.features
287
- }
288
-
289
- if case_data is not None:
290
- sample_data["case/json"] = pa.array([case_data] * effective_batch_size)
291
-
292
- yield i, pa.Table.from_pydict(sample_data)
293
-
294
- for f in data.values():
295
- f.close()
296
-
297
- # ┌──────────────┐
298
- # │ Features │
299
- # └──────────────┘
300
-
301
- FLOAT_TYPE = "float32"
302
- INT_TYPE = "int64"
303
- BOOL_TYPE = "bool"
304
- STRING_TYPE = "string"
305
-
306
- def case_features():
307
- # FIXME: better way to share schema of case data -- need to treat jagged arrays
308
- return {
309
- "case/json": hfd.Value(STRING_TYPE),
310
- }
311
-
312
- META_FEATURES = {
313
- "meta/seed": hfd.Value(dtype=INT_TYPE),
314
- "meta/formulation": hfd.Value(dtype=STRING_TYPE),
315
- "meta/primal_objective_value": hfd.Value(dtype=FLOAT_TYPE),
316
- "meta/dual_objective_value": hfd.Value(dtype=FLOAT_TYPE),
317
- "meta/primal_status": hfd.Value(dtype=STRING_TYPE),
318
- "meta/dual_status": hfd.Value(dtype=STRING_TYPE),
319
- "meta/termination_status": hfd.Value(dtype=STRING_TYPE),
320
- "meta/build_time": hfd.Value(dtype=FLOAT_TYPE),
321
- "meta/extract_time": hfd.Value(dtype=FLOAT_TYPE),
322
- "meta/solve_time": hfd.Value(dtype=FLOAT_TYPE),
323
- }
324
-
325
- def input_features(sizes: CaseSizes):
326
- return {
327
- "input/pd": hfd.Sequence(length=sizes.n_load, feature=hfd.Value(dtype=FLOAT_TYPE)),
328
- "input/qd": hfd.Sequence(length=sizes.n_load, feature=hfd.Value(dtype=FLOAT_TYPE)),
329
- "input/gen_status": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=BOOL_TYPE)),
330
- "input/branch_status": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=BOOL_TYPE)),
331
- "input/seed": hfd.Value(dtype=INT_TYPE),
332
- }
333
-
334
- def acopf_primal_features(sizes: CaseSizes):
335
- return {
336
- "ACOPF/primal/vm": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
337
- "ACOPF/primal/va": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
338
- "ACOPF/primal/pg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
339
- "ACOPF/primal/qg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
340
- "ACOPF/primal/pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
341
- "ACOPF/primal/pt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
342
- "ACOPF/primal/qf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
343
- "ACOPF/primal/qt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
344
- }
345
- def acopf_dual_features(sizes: CaseSizes):
346
- return {
347
- "ACOPF/dual/kcl_p": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
348
- "ACOPF/dual/kcl_q": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
349
- "ACOPF/dual/vm": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
350
- "ACOPF/dual/pg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
351
- "ACOPF/dual/qg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
352
- "ACOPF/dual/ohm_pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
353
- "ACOPF/dual/ohm_pt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
354
- "ACOPF/dual/ohm_qf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
355
- "ACOPF/dual/ohm_qt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
356
- "ACOPF/dual/pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
357
- "ACOPF/dual/pt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
358
- "ACOPF/dual/qf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
359
- "ACOPF/dual/qt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
360
- "ACOPF/dual/va_diff": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
361
- "ACOPF/dual/sm_fr": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
362
- "ACOPF/dual/sm_to": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
363
- "ACOPF/dual/slack_bus": hfd.Value(dtype=FLOAT_TYPE),
364
- }
365
- def dcopf_primal_features(sizes: CaseSizes):
366
- return {
367
- "DCOPF/primal/va": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
368
- "DCOPF/primal/pg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
369
- "DCOPF/primal/pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
370
- }
371
- def dcopf_dual_features(sizes: CaseSizes):
372
- return {
373
- "DCOPF/dual/kcl_p": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
374
- "DCOPF/dual/pg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
375
- "DCOPF/dual/ohm_pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
376
- "DCOPF/dual/pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
377
- "DCOPF/dual/va_diff": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
378
- "DCOPF/dual/slack_bus": hfd.Value(dtype=FLOAT_TYPE),
379
- }
380
- def socopf_primal_features(sizes: CaseSizes):
381
- return {
382
- "SOCOPF/primal/w": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
383
- "SOCOPF/primal/pg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
384
- "SOCOPF/primal/qg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
385
- "SOCOPF/primal/pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
386
- "SOCOPF/primal/pt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
387
- "SOCOPF/primal/qf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
388
- "SOCOPF/primal/qt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
389
- "SOCOPF/primal/wr": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
390
- "SOCOPF/primal/wi": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
391
- }
392
- def socopf_dual_features(sizes: CaseSizes):
393
- return {
394
- "SOCOPF/dual/kcl_p": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
395
- "SOCOPF/dual/kcl_q": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
396
- "SOCOPF/dual/w": hfd.Sequence(length=sizes.n_bus, feature=hfd.Value(dtype=FLOAT_TYPE)),
397
- "SOCOPF/dual/pg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
398
- "SOCOPF/dual/qg": hfd.Sequence(length=sizes.n_gen, feature=hfd.Value(dtype=FLOAT_TYPE)),
399
- "SOCOPF/dual/ohm_pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
400
- "SOCOPF/dual/ohm_pt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
401
- "SOCOPF/dual/ohm_qf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
402
- "SOCOPF/dual/ohm_qt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
403
- "SOCOPF/dual/jabr": hfd.Array2D(shape=(sizes.n_branch, 4), dtype=FLOAT_TYPE),
404
- "SOCOPF/dual/sm_fr": hfd.Array2D(shape=(sizes.n_branch, 3), dtype=FLOAT_TYPE),
405
- "SOCOPF/dual/sm_to": hfd.Array2D(shape=(sizes.n_branch, 3), dtype=FLOAT_TYPE),
406
- "SOCOPF/dual/va_diff": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
407
- "SOCOPF/dual/wr": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
408
- "SOCOPF/dual/wi": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
409
- "SOCOPF/dual/pf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
410
- "SOCOPF/dual/pt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
411
- "SOCOPF/dual/qf": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
412
- "SOCOPF/dual/qt": hfd.Sequence(length=sizes.n_branch, feature=hfd.Value(dtype=FLOAT_TYPE)),
413
- }
414
-
415
- # ┌─────────��─────┐
416
- # │ Utilities │
417
- # └───────────────┘
418
-
419
- def open_maybe_gzip_cat(path: str | list):
420
- if isinstance(path, list):
421
- dest = Path(path[0]).parent.with_suffix(".h5")
422
- if not dest.exists():
423
- with open(dest, "wb") as dest_f:
424
- for piece in path:
425
- with open(piece, "rb") as piece_f:
426
- shutil.copyfileobj(piece_f, dest_f)
427
- shutil.rmtree(Path(piece).parent)
428
- path = dest.as_posix()
429
- return gzip.open(path, "rb") if path.endswith(".gz") else open(path, "rb")