Fix annotation error in gold_reference.jsonl line 503#8
Open
Copilot wants to merge 3 commits into
Open
Conversation
Co-authored-by: chenlong-clock <77712760+chenlong-clock@users.noreply.github.com>
Co-authored-by: chenlong-clock <77712760+chenlong-clock@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix possible annotation error in dataset
Fix annotation error in gold_reference.jsonl line 503
Oct 9, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Line 503 in
data/gold_reference.jsonlcontained a critical data annotation error where themeta_timelinefield had events from a completely unrelated topic.The main timeline is about 金晓钟金泫雅恋情 (Kim Hyuna and Dawn's relationship, ID: 1022), but the
meta_timeline['5']incorrectly contained events about 河南一女孩实名举报父亲被打死后失联 (the Ye Hongqing case in Henan, ID: 19841).Example of the Error
{ "title": "金晓钟金泫雅恋情", "id": 1022, "timeline": [ {"id": 5, "summary": "泫雅金晓钟将合体出道", ...} ], "meta_timeline": { "5": { "timeline": [ {"id": 0, "summary": "杞县公安局通报:村民叶洪青被打死 犯罪嫌疑人已抓获", ...} ] } } }The meta_timeline clearly contains unrelated content about a different news event.
Solution
Set
meta_timelinetonullfor entry ID 1022, which is the correct state when no finer-grained timeline exists for a particular event. This ensures data consistency across the dataset.Changes
meta_timeline: null__pycache__filesVerification
meta_timeline: nullThis fix prevents potential issues when training or evaluating timeline summarization models that rely on the consistency between main timelines and their meta_timelines.
Closes #[issue_number]
Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
github.com (HTTP Only)/usr/bin/ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack '/half-pie/half-json.git'(packet block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
Fixes #4
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.