File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -269,3 +269,41 @@ Current time ....23512.750
269
269
```
270
270
python uno_infer.py --data All.h5 --model_file model.h5 --n_pred 30
271
271
```
272
+
273
+ ## top21 Plans
274
+
275
+ Top21 plans may be generated in JSON format with ` plangen.py ` .
276
+
277
+ JSON plans may be converted to a TXT format via
278
+ ` topN_to_uno.py --convert `
279
+
280
+ The TXT format is (comments are not actually supported yet).
281
+
282
+ ```
283
+ metadata:
284
+ key1: value1 # Some number of key value pairs
285
+ key2: value2
286
+ ...
287
+
288
+ node: <NODE ID> # Some NODE ID, e.g., 1.2.3
289
+ val_sets: 1 # Number of validation sets
290
+ index: 0 # The current validation set index
291
+ val CELLS: count: 175 # Number of CELLs in validation set
292
+ CCL_100 CCL_1000 CCL_1001 CCL_1002 # CCLs up till blank line
293
+ CCL_1013 CCL_1016 CCL_1017 CCL_1020
294
+
295
+ train_sets: 3 # Number of training sets
296
+ index: 0 # The current training set index
297
+ train CELLs: count: <N> # Number of CELLs in training set
298
+ ... # CCLs as above
299
+
300
+ index: 1
301
+ train CELLS: count: <N>
302
+ ... # CCLs as above
303
+
304
+ node: <NODE ID> # Start next node...
305
+
306
+ ```
307
+
308
+ The TXT format is much faster to load and search with, e.g.,
309
+ ` get-node-txt.sh ` .
You can’t perform that action at this time.
0 commit comments