AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
writer.py
根目录
/
benchmarks
/
e2e
/
tasks
/
document-dependency-direction
/
workdir
/
pipeline
/
writer.py
1
"""Writes normalized rows. Sits above the normalizer."""
2
3
from pipeline import normalizer
4
5
6
def write_normalized(src, dst):
7
with open(dst, "w") as f:
8
for row in normalizer.normalized(src):
9
f.write(row + "\n")
10
10 lines
PYTHON