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`文件中一些前后处理的算子节点。