diff --git a/paddle/operators/nce_op.h b/paddle/operators/nce_op.h index 7a910703293a63decf5b7f42bae20e568d713381..8df20f432dadebf9815edd9f9c35bc60983ed07c 100644 --- a/paddle/operators/nce_op.h +++ b/paddle/operators/nce_op.h @@ -60,7 +60,7 @@ void PrepareSamples(const framework::ExecutionContext& context) { } } else { for (; j < sample_labels_dims[1]; ++j) { - // TODO: support more distribution sampling + // TODO(wanghaoshuang): support more distribution sampling sample_labels_data[index++] = rand(rng); } }