Use cleaned trigger events in input.jsonl

This commit is contained in:
William Jeynes
2026-02-19 12:23:38 +00:00
parent 5efce05821
commit 8ffe8dec82
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ Final Dissertation Submission Repository
| ├── claims.json # Retreived claims from dbkf fetcher
| ├── dev-eng.csv
| ├── train-eng.csv # Normalized disinformation claims in CSV format from CLAN
| ├── input.jsonl # Response in raw format to give as context to agent
| ├── input.jsonl # Response in cleaned format to give as context to agent
| ├── ranked.jsonl # Cleaned trigger event response from scorer frontend
| └── results.jsonl # Output from wrapper script, read and modified by scorer
├── literature/
+1 -1
View File
@@ -256,7 +256,7 @@ async function ensureExampleClaimJsonlLoaded(): Promise<void> {
jsonlRawtexts.push(text);
const parsed_content = row.output[0].content_parsed;
const parsed_content = row.events;
const filtered_content = parsed_content.filter(itm => itm.human_score > 0.5 && itm.score > 0.5)