ContinualRE
ContinualRE copied to clipboard
Results
2
ContinualRE issues
Sort by
recently updated
recently updated
newest added
您好,我在学习您代码的过程中,看到使用的数据为.npy格式,请问以下几个.npy文件分别是由什么源文件生成的呢? ``` rel_cluster_label.npy rel_feature.npy re_index.npy trainning_file.npy valid_data.npy ``` 期待您的回复~
在windows运行时,出了两个小BUG:😀 1. 在tacred/lifelong/data/sampler/data_sampler.py 文件中,第128行: 把 ` with open(file) as file_in: ` 改成 ` with open(file, encoding='utf-8') as file_in: ` 否则,报错unicode...(具体忘记了...😂) 2. 在 tacred/run_multi_proto.py 文件中,第29行: 把 ` short_logits = distances `...