You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

39 lines
805 B

# CSV文件配置
csv:
# A_TREE CSV文件路径
a_csv_path: "data/a.csv"
# B_TREE CSV文件路径
b_csv_path: "data/b.csv"
# 输出CSV文件路径
output_csv_path: "output/ab.csv"
# 匹配配置
matching:
# 相似度阈值
similarity_threshold: 0.8
# 最大匹配数
max_matches: 5
# 是否启用简称匹配
enable_abbreviation: true
# 日志配置
logging:
# 日志级别
level: "INFO"
# 日志格式
format: "{time:YYYY-MM-DD HH:mm:ss} | {level} | {message}"
# 日志文件
file: "logs/matching.log"
# 日志轮转大小
rotation: "10 MB"
# 日志保留时间
retention: "30 days"
# 输出配置
output:
# 匹配结果文件
result_file: "output/matching_results.csv"
# 日志文件目录
log_dir: "logs"
# 临时文件目录
temp_dir: "temp"