Use cleaned trigger events in input.jsonl
This commit is contained in:
@@ -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/
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user