From 4ac291204224557702192e812d646c418a9a5678 Mon Sep 17 00:00:00 2001 From: ZhangGe6 Date: Sun, 1 May 2022 11:47:54 +0800 Subject: [PATCH] fix readme typo --- readme.md | 2 -- readme_zh-CN.md.md => readme_zh-CN.md | 11 +---------- 2 files changed, 1 insertion(+), 12 deletions(-) rename readme_zh-CN.md.md => readme_zh-CN.md (95%) diff --git a/readme.md b/readme.md index 5058ace..4151cac 100644 --- a/readme.md +++ b/readme.md @@ -1,9 +1,7 @@ - English | [简体中文](readme_zh-CN.md) - # Introduction To edit an ONNX model, One common way is to visualize the model graph, and edit it using ONNX Python API. This works fine. However, we have to code to edit, then visualize to check. The two processes may iterate for many times, which is time-consuming. :wave: diff --git a/readme_zh-CN.md.md b/readme_zh-CN.md similarity index 95% rename from readme_zh-CN.md.md rename to readme_zh-CN.md index e45d2f3..140df4f 100644 --- a/readme_zh-CN.md.md +++ b/readme_zh-CN.md @@ -1,16 +1,7 @@ ---- -title: onnx-modifier-ONNX可视化编辑 -author: Zhang Ge -date: 2022-04-29 09:09:00 +0800 -categories: [专业积累, 工具开发] -tags: [onnx] -math: true ---- + 简体中文 | [English](readme.md) - - `ONNX `(Open Neural Network Exchange) 是一种针对机器学习所设计的开放式的文件格式,经常作为不同框架模型转化的中间文件。有时我们拿到ONNX文件,想将它进行一些修改,比如: - **删除部分节点。** 比如,`ONNX`文件中一些前后处理的算子节点。