1 · Greeting · 打招呼
Hi Dr [Surname]. It is very nice to meet you. Thank you for taking the time to speak with me today. Can you hear me clearly?
您好,很高兴见到您。谢谢您今天抽时间和我聊。您能听清我说话吗?
正在加载页面
FIRST SUPERVISOR MEETING · 完整口语稿
主路径:英文寒暄 → 征求许可 → 中文主稿 → 停下来听导师反馈。导师希望全程英文时,直接使用后半部英文稿。
OPENING · 现场先说
不要直接切中文。先完成见面和自我介绍,再把选择权交给导师。
1 · Greeting · 打招呼
Hi Dr [Surname]. It is very nice to meet you. Thank you for taking the time to speak with me today. Can you hear me clearly?
您好,很高兴见到您。谢谢您今天抽时间和我聊。您能听清我说话吗?
If asked · 如果她问 How are you?
I’m doing well, thank you. I’m very glad to have this opportunity to speak with you.
我很好,谢谢。我很高兴有这次交流机会。
2 · Introduction · 简短自我介绍
My name is Nathan. I studied Computer Science and Technology, and I am currently based in Sydney, working full-time in the online-trading industry. My work experience made me interested in how risky trading promotion could be screened more carefully and reliably.
只交代计算机背景、悉尼全职工作和选题来源,不在这里解释成绩、资金或移民。
3 · Language bridge · 巧妙转中文
Before I start, may I check one thing? I prepared the main points in both English and Chinese. Because the project focuses on Chinese-language trading communities, I can explain the core logic more precisely in Chinese first, if that is convenient for you. I can switch back to English at any time. Would that be okay?
意思:我准备了中英文。因为研究对象本身是中文社群,用中文先把核心逻辑说准会更合适;我随时可以切回英文。这样不是“逃避英语”,而是在征求一种更准确的讨论方式。
如果导师同意
Thank you. I’ll keep it brief and start with the problem.
如果导师希望全程英文
Of course. I’ll continue in English.
跳到完整英文稿 ↓CHINESE MAIN SCRIPT · 中文优先
导师同意后,从第 01 段自然讲到第 10 段。每段末尾停半秒,不需要背得一字不差。
01 · 为什么是这个问题
好的,谢谢您。我先用很简单的方式说明,我为什么想做这个题。我的本科是计算机,目前也在悉尼的在线交易行业全职工作。工作经历让我开始注意到一个很现实的问题:在中文交易社群里,一个推广者、一位受害者和一个提醒别人小心的人,可能会重复非常相似的话。如果系统只看到“稳赚”“现在入金”这些词,就很容易把三种人混在一起。所以我想研究的,不是让 AI 自动判断谁是骗子,而是怎样更谨慎地把值得人工先看的消息排到前面。
提词:关键词:现实问题;相似的话、不同角色;只排序,不认定。
02 · 一句话研究问题
我的核心问题是:在训练标签数量相同的情况下,一套由公开案例启发、能够解释和审计、并且考虑说话者立场的弱监督方法,能不能比普通的人工标签监督基线,更好地把未见频道里的高风险推广消息排在前面,同时又不明显增加对受害者叙述和警示内容的有害误报。这里比较的不是哪个大模型更强,而是两种制造训练信号的方法,谁在更接近真实使用的测试里表现得更可靠。
提词:关键词:同样标签数;两种训练信号;新频道;排序质量与安全一起看。
03 · 第一步:拆问题
第一步,是先把任务定义清楚。对于每一个风险命题,我会分开记录三个东西。第一是行为,也就是消息里出现了什么,例如保证收益、催促入金。第二是立场,也就是发言者是在推广背书、讲自己的受害经历、引用别人的话,还是在提醒别人。第三是外部证据,例如能否找到投诉、监管警告或裁判材料。比如“群里说稳赚,我跟着入金后一直亏钱”,里面出现了“稳赚”和“入金”,但说话者是在报告受害经历,不是在推广。这就是为什么不能只抓关键词。外部证据也会单独保存,不会直接拿它替代文本标签。
提词:关键词:Conduct 行为;Stance 立场;Evidence 外部证据。
04 · 第二步:造训练信号
第二步,是比较两条训练路线。路线 A 用经过许可的消息,由人工按照同一份标注说明给出训练标签;这是一套人工带标签的训练集。路线 B 不直接为每条消息购买人工标签,而是把公开官方案例中能够说清楚的判断写成明文规则。每条规则可以投正票、投负票或者弃权,再把这些投票合成带有不确定性的弱标签;这会形成另一套弱标签训练集。两条路线匹配训练标签数量,然后使用完全相同的学习配方各训练一次。这样得到的不是一堆新信息,而是两个已经学会给消息打风险分的模型。
提词:关键词:人工标签训练集;规则投票;弱标签训练集;两套教材、两个学生。
05 · 同一个学习器是什么
为了让比较尽量公平,我会先使用同一种简单学习器。TF-IDF 的作用,是把消息里的词和短语变成一组数字特征;可以把它理解为把文字翻译成机器能计算的表格。逻辑回归再从这些数字和训练标签之间学习关系,最后给每条新消息一个风险分数。路线 A 的标签训练出模型 A,路线 B 的标签训练出模型 B。到这一步,两个模型都会做题了,但我们还不知道谁学得更好,因为训练时的表现不能当作最终成绩。
提词:关键词:TF-IDF 文字→数字;逻辑回归 数字+标签→风险分;训练分不是考试成绩。
06 · 第三步:考模型
接下来才是考试。首先必须先有书面许可。实验开始前,我会把一个完整频道预先留作测试,把训练频道和测试频道之间重复传播的同一组转发模板固定在同一边,避免同一段话同时出现在教材和考卷里。两个模型训练完成后就冻结,不能再看答案或调参数。然后让它们给同一批从未用于训练的测试消息打风险分。同时,另一批人工标注者会提前为这批测试消息制作一份 gold set,也就是标准答案。模型打的是每条消息的风险分;评估程序再把这些风险分和标准答案对照,给两个模型分别计算考试成绩。这不是重复打两次分,而是“学生答题”和“老师判卷”两个不同环节。
提词:关键词:先许可;整频道留出;转发家族不跨边界;冻结;同卷;gold set 判卷。
07 · 成绩怎么看
主成绩我会看 Average Precision,也就是 AP。通俗地说,它检查真正需要复核的消息,是否持续出现在整个风险排序的前面,而不是只看某一个切点的对错。我还会固定同样的人工复核预算,例如只允许人每天看前五十条,再比较两个模型能把多少真正目标排进这五十条。同时会单独检查困难负例,例如受害者叙述、警示内容和普通交易讨论,预先规定有害误报不能超过什么范围。之后如果条件允许,再冻结模型,用后来时间窗口中新收集并获准使用的数据做一次离线复测。这里的“未来”是后来收集的历史测试批次,不是实时监控。
提词:关键词:AP 看全排序;同一复核预算;困难负例;后来时间离线复测。
08 · 最终输出边界
最终系统只输出一个供人工优先复核的排序队列。它不会认定某个人、公司或频道违法,也不会代替监管、调查或法律判断。研究要回答的是:在标签预算有限、语言会变化、误伤代价又很高的情况下,哪一种训练信号更能帮助人工把有限时间用在更值得先看的内容上。
提词:关键词:ranked review queue;human-in-the-loop;not a verdict。
09 · 我现在做到哪里
目前我已经整理了公开的研究协议和可复现性说明,也把研究问题、比较方式、测试边界和停止条件写了出来。但我现在还没有一套获得许可的中文多频道消息流,也没有中文正式标签、训练完成的模型或实验结果。所以我不会把这个项目描述成已经验证有效。下一步应该先做数据治理和伦理可行性判断,再用一小批公开官方案例做双人编码试点,确认任务定义和规则是否真的能够稳定执行。
提词:关键词:protocol-stage;没有中文正式结果;先治理与小试点。
10 · 为什么希望和您讨论
我希望和您讨论这个项目,是因为它的核心并不是预测金融市场,而是在数据分布会变化、文本立场容易混淆、错误又会造成实际伤害的条件下,怎样做更可靠、可解释的机器学习评估。我认为这和您在可靠机器学习、错误信息以及可信 AI 方面的研究有很自然的交集。作为一个 MPhil 项目,我最希望听到您的判断是:现在这个范围是否现实,哪些部分应该先缩小,哪些方法需要重新设计,以及它是否适合在您的指导或共同指导下继续发展。
提词:关键词:范围是否现实;先缩哪里;方法怎么改;指导匹配。
STOP HERE · 讲完就停
这就是我目前的基本想法。我先停在这里,非常希望听听您的看法。
不要马上自己继续加“还有一个问题”。把空间留给导师判断和追问。
FULL ENGLISH FALLBACK · 后备路线
不是逐字翻译腔,而是用较短句子保留同样的研究边界。
01 · Motivation
Let me start with the practical problem. I studied Computer Science and Technology, and I now work full-time in Sydney in the online-trading industry. My work experience made me notice that a promoter, a victim, and a person warning others may repeat very similar claims in Chinese trading communities. If a system only sees phrases such as “guaranteed profit” or “deposit now”, it may confuse these very different speakers. My goal is therefore not to let AI decide who is a scammer. It is to rank messages more carefully, so that a human reviewer can look at the most relevant items first.
02 · Research question
My main question is this: under the same number of training labels, can a case-informed, auditable and stance-aware weak-supervision method rank risky promotion better than a standard human-labelled supervised baseline on an unseen channel, without clearly increasing harmful false alerts on victim accounts and warnings? The main comparison is not between large language models. It is between two ways of creating training signals, tested in a setting that is closer to real use.
03 · Define the task
First, I need to define the task clearly. For each risk claim, I separate three things. Conduct means what appears in the message, such as a guaranteed-return claim or pressure to deposit. Stance means what the speaker is doing: promoting the claim, describing personal harm, quoting it, or warning other people. Outside evidence means information that can be checked separately, such as a complaint, a regulatory warning or a court record. For example, a victim may say, “The group promised stable profit, but I lost money after depositing.” The risky words are present, but the speaker is reporting harm, not promoting the claim. Outside evidence remains separate and does not replace the text label.
04 · Create training signals
Second, I compare two training routes. Route A uses permitted messages labelled by people under the same annotation guide. This creates a human-labelled training set. Route B turns clear decisions from public official cases into written, auditable rules. A rule may vote positive, vote negative, or abstain. These votes are combined into uncertain weak labels, which form a weak-labelled training set. I match the number of training labels and use exactly the same learning recipe twice. The output is two trained models that can each give a risk score to a new message.
05 · Same learner
For a fair first comparison, both routes use the same simple learner. TF-IDF turns words and short phrases into numeric features. It is like translating text into a table that a computer can calculate. Logistic regression then learns the link between those features and the training labels, and gives each new message a risk score. Route A trains model A, and route B trains model B. At this point both models can answer questions, but we still do not know which one learned better. Training performance is not the final exam result.
06 · Sealed test
The next stage is the exam. Written permission comes first. Before training, I reserve one complete channel for testing. Repeated or near-duplicate reposts are grouped, so the same message family cannot appear on both sides of the training and test boundary. After training, both models are frozen. They then score the same test messages, which they have never used for training. A separate group of human annotators prepares the gold set, or human answer key, for those messages. The models give risk scores to messages; the evaluation software compares those scores with the answer key and calculates a report card for each model. These are two different steps: the student answers, and the teacher marks the exam.
07 · Report cards
The primary measure is Average Precision, or AP. In simple terms, it asks whether the messages that truly need review stay near the top of the full ranking. I also compare the models under the same human-review budget, for example the top fifty messages per day. Safety is checked separately on difficult negative cases, especially victim accounts, warnings and ordinary trading discussion. I set the acceptable limit before seeing the test results. If possible, I would later keep the models frozen and repeat the offline test on a later approved time window. “Future” here means a later collected test batch, not live monitoring.
08 · Output boundary
The system only produces a ranked queue for human review. It does not decide that a person, company or channel is illegal, and it does not replace regulatory, investigative or legal judgement. The research asks which training signal makes better use of limited human attention when labels are expensive, language changes across channels, and harmful mistakes matter.
09 · Current status
At present, I have prepared a public research protocol and a reproducibility companion. The research question, comparison, test boundary and stopping conditions are written down. However, I do not yet have a permitted multi-channel Chinese message stream, formal Chinese labels, trained Chinese models or experimental results. I am not presenting the method as already proven. The next step should be a governance and ethics feasibility check, followed by a small double-coded pilot using public official cases to test whether the task and rules can be applied consistently.
10 · Why this discussion
I wanted to discuss this project with you because the core problem is not financial-market prediction. It is reliable and explainable machine-learning evaluation when data changes, speaker stance is ambiguous, and errors can cause real harm. I see a natural connection with your work on reliable machine learning, misinformation and trustworthy AI. For an MPhil project, I would especially value your view on whether the scope is realistic, what should be reduced first, what parts of the method need redesign, and whether the direction could fit your supervision or a co-supervision arrangement.
Closing
That is the core of my current idea. I’ll stop there, and I would really value your thoughts.
ONLY IF ASKED · 追问时再打开
这些不是主稿。导师问到哪个问题,再打开哪一个。
中文思路
我希望系统补足研究设计、实验评估和学术写作能力,并把现在的行业观察变成一个边界清楚、能被复核的研究。MPhil 对我来说首先是一个完整的研究训练,不是为了先承诺某个博士结果。
ENGLISH ANSWER
I want structured training in research design, evaluation and academic writing, and I want to turn my industry observations into a careful and reviewable study. For me, the MPhil is first a complete research project, rather than a promise of a later PhD outcome.
中文思路
现在还没有锁定可用的中文社群数据。我会先做治理和伦理可行性判断,只考虑公开、获得许可或学校正式批准可以使用的材料;不会默认使用公司内部、客户或私人聊天数据。
ENGLISH ANSWER
The Chinese community data is not locked yet. I would start with a governance and ethics feasibility check and only use public, permitted or formally approved material. I would not assume access to company, customer or private-chat data.
中文思路
仓库现在主要是协议阶段的研究资产:研究问题、标注与评估计划、治理边界、可复现性说明和用于审阅的论文草稿。它证明我把研究设计写清楚了,但不代表我已经完成中文实验或得到结果。
ENGLISH ANSWER
The repository currently contains protocol-stage research assets: the research question, annotation and evaluation plans, governance boundaries, a reproducibility companion, and a review draft. It shows that the design is explicit, but it does not mean that the Chinese experiment or results are complete.
中文思路
LLM 不是当前核心。第一阶段先用简单、可解释的 TF-IDF 加逻辑回归,把训练信号的差异测干净。之后如果范围允许,可以把 LLM 加成额外基线或辅助工具,但不能把它的输出当作 gold set。
ENGLISH ANSWER
An LLM is not the core of the first study. I would begin with simple and interpretable TF-IDF plus logistic regression, so the effect of the training signal is easier to isolate. If the scope allows, an LLM could later be an additional baseline or support tool, but its output would not be the gold set.
中文思路
最大风险不是模型,而是合规数据、稳定标注和跨频道测试能否真正成立。所以我把治理闸门放在实验前面;如果拿不到合适数据,就应该缩小任务或停在方法与可行性研究,而不是硬做一个看起来完整的结果。
ENGLISH ANSWER
The largest risk is not the model. It is whether compliant data, reliable annotation and a real cross-channel test are feasible. That is why the governance gate comes before the experiment. If suitable data is not available, I should reduce the task or stop at a methods and feasibility study rather than force a complete-looking result.
中文思路
如果 MPhil 的结果和研究训练证明这个方向值得继续,我愿意考虑把它扩展成更长期的研究。但我目前更关心先把一个范围合理、方法严谨、能够完成的 MPhil 做好。
ENGLISH ANSWER
If the MPhil results and research training show that the direction is worth continuing, I would be open to a longer research pathway. My immediate focus, however, is to complete a realistic and rigorous MPhil project well.
KEYWORD CHECK · 页面末尾方法词典
这是首页讲稿和四页演示使用的同一份词典。现场不需要从头念;导师追问TF-IDF、逻辑回归、Gold set、AP或安全检查时,直接在这里打开对应词条。
Conduct · Stance · Evidence
3 个词条 · 点击展开
消息里出现了什么可观察的风险行为。
通俗讲解
Conduct不是contact,也不是笼统的‘功能’。它记录消息里出现的具体风险命题,例如保证收益、催促入金或制造名额紧迫感。一条消息可以同时包含多个conduct。
SAY THIS · 可对导师说
Conduct means the observable risk claim in the message, such as a guaranteed return or pressure to deposit now.
严谨边界:它只说明某种话术出现了,不能单独说明当前说话者正在推广。
当前说话者是在背书、报告受损,还是引述后警示。
通俗讲解
Stance记录当前说话者与风险命题的关系。相同话术既可能由推广者直接背书,也可能被受害者引用来讲述损失,或被警示者引用后反驳。把立场分开,是减少误伤的关键。
SAY THIS · 可对导师说
Stance tells us whether the current speaker supports the claim, reports harm, or quotes it to warn other people.
严谨边界:立场必须按冻结的标注手册判断,不能只靠一个否定词猜测。
消息之外可追溯的投诉、监管警示或裁判资料。
通俗讲解
外部证据与消息文本分开记录。它可以帮助研究者理解背景或核验来源,但不会自动把某条消息变成推广正例,也不会替代conduct和stance标注。
SAY THIS · 可对导师说
Outside evidence is recorded separately. It may include a traceable complaint, regulator warning, or court material.
严谨边界:只使用获许可、可追溯且符合伦理与治理要求的来源。
两种标签路线 · TF-IDF · 逻辑回归 · 风险分
7 个词条 · 点击展开
一套由人工标训练消息;一套由明文规则产生弱标签。
通俗讲解
路线1让受训标注者给N条训练消息制作人工标签。路线2把公开案例启发的判断写成可审计规则,让规则对消息投票、冲突或弃权,再形成N条弱训练标签。两边只匹配训练标签数量;规则设计与维护工时另报。
SAY THIS · 可对导师说
Route one uses human labels for the training messages. Route two uses auditable rules to create weak training labels. I match the number of training labels, not the total human effort.
严谨边界:公开案例只帮助写规则,不会直接给研究消息作事实或法律认定。
由多条规则的投票、冲突与弃权汇总出的训练标签。
通俗讲解
每条规则只表达一个明文判断,可以投正、投负或弃权。只有规则覆盖、重叠、冲突和开发集表现通过预先检查时,才尝试条件式标签模型;否则使用冻结规则或多数票,并如实报告。
SAY THIS · 可对导师说
A weak label comes from auditable rules that may vote, disagree, or abstain. The aggregation method is chosen before the final test.
严谨边界:弱标签不是gold truth,也不保证比人工标签更好;这正是实验要检验的问题。
训练标签负责教模型;test gold只负责考试判分。
通俗讲解
人工标签会出现两次,但对象和职责完全不同。路线1中的人工训练标签只教模型1;封存考试消息上的人工gold标签不教任何模型,也不参与调参,只形成两个模型共用的一份答案册。
SAY THIS · 可对导师说
Human labels have two separate jobs. Training labels teach route one. Test gold labels teach neither model; they form the shared answer key.
严谨边界:Test gold也需要冻结手册、独立复标、质量控制和分歧裁决,不是随手标一下就算gold。
把字、词或短语变成有权重的数字特征。
通俗讲解
计算机不能直接把一句中文交给逻辑回归。TF-IDF先为消息中的字、词或短语计算权重:在这条消息里出现、但在所有消息里不那么常见的表达通常更有信息量。它只处理文字,不转换标签,也不自己作判断。
SAY THIS · 可对导师说
TF-IDF turns the text into weighted numeric features. It does not make the decision and it does not transform the labels.
严谨边界:真实特征会在训练数据上拟合;最终考试文本不能反过来帮助选择词表或参数。
从数字特征与训练标签的关系中学习权重并给消息打分。
通俗讲解
逻辑回归虽然名字里有‘回归’,在这里是分类和排序模型。训练时,它观察TF-IDF特征与训练标签的关系并学习权重;遇到新消息时,把特征乘以这些权重并合成一个风险分。
SAY THIS · 可对导师说
Logistic regression learns weights from the TF-IDF features and the training labels. It then gives each new message a risk score.
严谨边界:模型分数用于相对排序,不是违法概率,也不能替代人的事实判断。
两个模型用相同架构训练,主要差别只保留在标签来源。
通俗讲解
路线1和路线2都使用同一类TF-IDF与逻辑回归训练流程,并遵守同一套开发和调参规则。最后得到两个独立模型副本:模型1只学人工训练标签,模型2只学弱训练标签。
SAY THIS · 可对导师说
I use the same TF-IDF and logistic-regression recipe twice, so the main experimental difference is the source of the training labels.
严谨边界:‘相同配方’不表示两个模型学到相同权重,也不表示总人工成本完全相同。
每个模型给每条消息一个分数,用来从高到低排序。
通俗讲解
训练后,每个模型都能给新消息一个数值分数。分数越高,只表示该消息在这个模型下越应该优先被人工查看。模型在第3步会打分,但还没有做封存考试,因此此时不知道哪个模型更好。
SAY THIS · 可对导师说
Each trained model gives every message a risk score. The score orders messages for review; it is not the model's exam grade.
严谨边界:消息风险分与模型整体考试成绩是两层不同的分数。
冻结 · 留出频道 · 转发家族 · Gold set · 后来时间
5 个词条 · 点击展开
开考前停止改变模型、阈值、切分和评价规则。
通俗讲解
在打开最终考试数据前,要锁定模型、TF-IDF处理、超参数、频道与时间切分、转发家族规则、主要指标和安全判断。这样看到考试结果后就不能为了让分数更好而改题或改规则。
SAY THIS · 可对导师说
Before opening the final test, I freeze the models, the data split, the main metric, and the safety rule.
严谨边界:当前仍是研究方案阶段,真实阈值和安全上限尚未冻结,不能把示意数字说成既定值。
预先封存一个获许可频道,训练和调参过程完全不使用它。
通俗讲解
两个冻结模型对同一批获许可、预先留出的频道消息打分。这样测试的是模型换到另一个社群后还能不能排序,而不是在老社群里记住话术。‘未见’只表示模型开发未见,不表示秘密抓取或未经许可。
SAY THIS · 可对导师说
A held-out channel is a permitted channel that model development never sees. Both frozen models take the same messages as their final exam.
严谨边界:考试频道也必须通过书面许可、伦理、隐私、安全与留存要求。当前尚无获许可的中文多频道消息流。
相同或近似模板只能留在训练或考试的一边。
通俗讲解
社群里同一套话术可能被复制或小幅改写。如果同一家族同时出现在训练和考试,模型可能只是认出模板,成绩就会虚高。研究会按预先规则识别完全重复、近重复或同模板消息,并处理跨边界家族。
SAY THIS · 可对导师说
A repost family is a set of copied or near-copied messages. I keep each family on one side of the train-test boundary to reduce leakage.
严谨边界:跨界家族从主比较剔除并报告覆盖损失;只存在于考试侧的自然重复不必一概删除。
人工给考试消息标参考标签,评估程序据此批两个模型。
通俗讲解
两个模型先对考试消息给出两组风险分。人工标注者只为同一批考试消息制作一份参考答案。评估程序再把每个模型的排序与这份答案比较,分别生成两张成绩单。人标消息,程序给模型算成绩。
SAY THIS · 可对导师说
The gold set is one independent human-labelled answer key. Humans label the test messages, and the evaluation program grades both models.
严谨边界:Gold set不参与训练、调参或规则开发,而且与路线1的人工训练消息完全分开。
预设截止日之后到达的另一批获许可消息,离线标注和评分。
通俗讲解
主测试完成后,可以用预先设定日期之后到达的获许可批次做次要复测。模型保持冻结,新批次同样执行转发家族控制,再由人工离线标gold并由程序计算成绩。它检验随时间变化后的稳定性。
SAY THIS · 可对导师说
The later-time test is another permitted batch collected after a pre-set date. It is labelled and scored offline, not monitored live.
严谨边界:它不是正在进行的实时监控,也不授权持续抓取;每个数据窗口仍需事先获批。
AP · Delta AP · 复核预算 · 有害误报
4 个词条 · 点击展开
检查真实目标是否持续排在完整列表的前面。
通俗讲解
AP不是只看第一条,也不是普通准确率。它从高到低查看完整排序:每遇到一个gold正例,就计算截至该位置的precision,最后对这些precision取平均。正例越早、越持续地出现在前面,AP越高。目标稀少时,AP比accuracy更适合排序任务。
SAY THIS · 可对导师说
Average Precision asks whether true target messages stay near the top of the full ranking. A higher AP means a better review order.
严谨边界:AP是整个模型的考试成绩,不是单条消息的风险分;示意数字不是研究结果。
弱监督模型AP减去人工标签模型AP。
通俗讲解
两个模型做完同一张封存考卷后,各自得到一个AP。主比较是Delta AP = AP弱监督 − AP人工基线。正数表示弱监督路线在这张考试上的排序更好,负数表示更差;还要结合不确定性与频道数量判断,不能只看一个点估计。
SAY THIS · 可对导师说
Delta AP is the weak-supervision model's AP minus the human-label baseline's AP. It compares the two report cards on the same sealed test.
严谨边界:若独立频道或正例数量不足,只能报告可行性结果,不能包装成强确认性结论。
在相同可复核数量下比较两个模型的队列。
通俗讲解
实际人工每天只能看有限消息,所以开考前要固定一个复核预算,例如每个频道取前K条或前若干比例。两个模型必须使用同一预算,才能公平比较排在高优先区的真实目标和误报。
SAY THIS · 可对导师说
The review budget is the fixed number of top-ranked messages a human team can inspect. Both models are compared at the same budget.
严谨边界:真实K值要根据复核能力和开发数据预先冻结,当前没有既定数字。
检查更好的排序是否以误伤受害者、警示或正常讨论为代价。
通俗讲解
在相同复核预算下,单独统计普通讨论、非目标交易信号、第一人称受损、非推广自述,以及引述式警示/批评被错误推入高优先队列的比例。弱路线即使AP更高,如果相对基线增加过多这类误报,也不能通过安全约束。
SAY THIS · 可对导师说
The safety check asks whether better ranking comes at the cost of more false alerts on victims, warnings, or legitimate discussion.
严谨边界:允许增加多少必须在看最终结果前冻结;当前示意上限不是已决定的阈值。