Implementation of Dropout

I would like to use Dropout with SameDiff.

public DropOut(SameDiff sameDiff, SDVariable input, double p) {
    super(sameDiff, input);
    this.p = p;
    //https://github.com/deeplearning4j/deeplearning4j/issues/5650
    throw new UnsupportedOperationException("Dropout SameDiff support disabled pending backprop support");
}

is closed.
Can I have any crue to implemnt this part on my own?

It is available on the native side already, but as you have found it wasn’t integrated to java just yet:

But in principle you can implement that integration on your own, as you’ve seen when we fixed the issue with batchNorm in the other thread.

If you are willing to do that, the starting point would be the native op definition: