auto backup: 2026-04-08 08:10:01

This commit is contained in:
ai_member_only 2026-04-08 08:10:01 +08:00
parent febc490c72
commit c0b80ed8d8
4 changed files with 22 additions and 0 deletions

1
22163_data.csv Normal file
View File

@ -0,0 +1 @@
userId,userMsg,source,userName,soeData,audioUrl,asrStatus,componentId,componentType,dataVersion,timeStr
1 userId userMsg source userName soeData audioUrl asrStatus componentId componentType dataVersion timeStr

BIN
22163_data.xlsx Normal file

Binary file not shown.

View File

@ -39,6 +39,12 @@
- 对话节奏快每2-3句台词对应一个剧情节点或互动环节 - 对话节奏快每2-3句台词对应一个剧情节点或互动环节
- 弱化说教感,所有指令和引导都以自然对话的方式呈现 - 弱化说教感,所有指令和引导都以自然对话的方式呈现
### 【教研规则】剧本定稿审校通用规范
1. 标点符号规范:禁止使用「~」「!!!」等非标准标点,统一使用标准英文标点符号
2. 核心句型呈现规范:核心句型第一次出现时需清晰、完整、独立呈现,不与其他干扰信息混杂
3. 语言难度控制规范:优先使用大纲内词汇,避免超纲词汇,确保难度适配对应级别
4. 价值观导向规范:避免使用负面词汇评价自己或他人,优先使用正向引导表述,特殊场景需单独标注说明
## 经验教训 ## 经验教训
(在此记录工作中总结的经验教训,供后续参考) (在此记录工作中总结的经验教训,供后续参考)

15
read_excel.py Normal file
View File

@ -0,0 +1,15 @@
import pandas as pd
# 读取Excel文件
excel_file = pd.ExcelFile('./22163_data.xlsx')
# 获取所有sheet名称
print("所有sheet名称", excel_file.sheet_names)
print("\n" + "="*50 + "\n")
# 遍历每个sheet输出内容
for sheet_name in excel_file.sheet_names:
print(f"Sheet{sheet_name}")
df = pd.read_excel(excel_file, sheet_name=sheet_name)
print(df.to_csv(sep='\t', na_rep='nan'))
print("\n" + "="*50 + "\n")