Skip to content

Commit 3560450

Browse files
committed
Start documenting top21 tools
1 parent 7462622 commit 3560450

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

Pilot1/Uno/README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,3 +269,41 @@ Current time ....23512.750
269269
```
270270
python uno_infer.py --data All.h5 --model_file model.h5 --n_pred 30
271271
```
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`.

0 commit comments

Comments
 (0)