Skip to content

Commit e9b1c54

Browse files
authored
Fix typos in the diagram (#173)
Some arrows had wrong text attach to them. --------- Signed-off-by: Justin Chu <justinchuby@users.noreply.github.com>
1 parent d794fca commit e9b1c54

File tree

4 files changed

+347
-54
lines changed

4 files changed

+347
-54
lines changed

.lintrunner.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,13 @@ is_formatter = true
9090

9191
[[linter]]
9292
code = 'EDITORCONFIG-CHECKER'
93-
include_patterns = ['**']
94-
exclude_patterns = [
95-
'**/*.ipynb',
96-
'**/*.onnx',
97-
'**/*.pb'
93+
include_patterns = [
94+
'**/*.md',
95+
'**/*.txt',
96+
'**/*.yml',
97+
'**/*.rst',
9898
]
99+
exclude_patterns = []
99100
command = [
100101
'python',
101102
'-m',

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ pip install git+https://github.com/onnx/ir-py.git
3636
- Pythonic and familiar APIs: Classes define Pythonic apis and still map to ONNX protobuf concepts in an intuitive way.
3737
- No protobuf dependency: The IR does not require protobuf once the model is converted to the IR representation, decoupling from the serialization format.
3838

39-
## Concepts Diagram
39+
## Concept Diagram
4040

41-
![Concepts Diagram](docs/resource/onnx-ir-entities.svg)
41+
![Concept Diagram](docs/resource/onnx-ir-entities.svg)
4242

4343
## Code Organization 🗺️
4444

0 commit comments

Comments
 (0)