Andrew

Results 3 comments of Andrew

My solution: Under the `./dataset/data-split/event/` folder, there are a total of five fold data samples. `vid_fold_no_1.txt` is the other four folds combined together, e.g., `vid_fold_2.txt + ... + vid_fold_5.txt`.

The data.json file does not contain the 'label' column. My way to solve this problem is to modify the `SVFENDDataset` as follows: ```Python replace_values = {'辟谣': 2, '假': 1, '真':0}...

> The data.json file does not contain the 'label' column. My way to solve this problem is to modify the `SVFENDDataset` as follows: > > ```python > replace_values = {'辟谣':...