-
Notifications
You must be signed in to change notification settings - Fork 2
Description
This paper has problems. After carefully checking the code, I found that there was information leakage. In the 183rd line of the "evaluate_models_utils.py" file, the random_projections.update function is responsible for adding the samples from the validation set and the test set to the model. However, theoretically, there were no separate positive and negative samples added to the model at this time. That is to say, at this point, the true labels in the validation set and the test set have been leaked to the model for training. If this random_projections.update is removed, the performance of the model in this paper will significantly drop.
It is suggested that future researchers should not make comparisons with this paper. This paper is clearly a case of cheating.