Skip to content

Commit 255d89e

Browse files
authored
Update README.md
1 parent 65d2e9b commit 255d89e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,24 @@ model = ...
6363

6464
# Extract your own model
6565
model = graph_net.torch.extract(name="model_name", dynamic="True")(model)
66-
67-
# After running, the extracted graph will be saved to:
68-
# $GRAPH_NET_EXTRACT_WORKSPACE/model_name/
6966
```
7067

71-
For details, see docstring of `graph_net.torch.extract` defined in `graph_net/torch/extractor.py`.
68+
After running, the extracted graph will be saved to: `$GRAPH_NET_EXTRACT_WORKSPACE/model_name/`.
69+
70+
For more details, see docstring of `graph_net.torch.extract` defined in `graph_net/torch/extractor.py`.
7271

7372
**Step 2: graph_net.torch.validate**
7473

75-
To verify that the extracted model meets requirements, we use `graph_net.torch.validate` in CI tool and ask contributors to self-check in advance:
74+
To verify that the extracted model meets requirements in **construction constraints**, we use `graph_net.torch.validate` in CI tool and also ask contributors to self-check in advance:
7675

7776
```bash
7877
python -m graph_net.torch.validate \
7978
--model-path $GRAPH_NET_EXTRACT_WORKSPACE/model_name
8079
```
8180

81+
A unique `graph_hash.txt` will be generated after validation and examined in CI procedure to avoid redundant.
82+
83+
8284
## ⚖️ Compiler Evaluation
8385

8486
**Step 1: Benchmark**

0 commit comments

Comments
 (0)