Shuxun Wang

Results 1 issues of Shuxun Wang

In `experiment/training/data.py`, you load `neg_data` from `train_0.jsonl`, which are actually the positive data, the right code may like this: ```python def load_toxicity_data(data_dir, subset): with open(os.path.join(data_dir, "train_0.jsonl"), "r") as f: pos_data...