Imported Upstream version 1.18.0
[platform/core/ml/nnfw.git] / compiler / circle-opselector / README.md
1 # circle-opselector\r
2 \r
3 `circle-opselector` is a tool for creating new circle models by selecting nodes from a model.\r
4 \r
5 ## Example\r
6 \r
7 ### 1. Select from location numbers\r
8 \r
9 ```bash\r
10 ./circle-opselector --by_id "1-3,5" input.circle output.circle\r
11 ```\r
12 \r
13 Then, output.circle which has node 1, 2, 3 and 5 will be created.\r
14 \r
15 ### 2. Select from node names\r
16 \r
17 ```bash\r
18 ./circle-opselector --by_name "Add_1,Sub_1,Concat_2" input.circle output.circle\r
19 ```\r
20 \r
21 Then, output.circle which has node Add_1, Sub_1 and Concat_2 will be created.\r