Faster-RCNN produces different region proposals on each debug. I found that the file under the path below included a forward function producing different outputs.
mmdetection/mmdet/models/backbones/resnet.py
x = self.conv1(x)
x = self.norm1(x)
x = self.relu(x)
I already set the seed properly as follows:
--cfg-options randomness.seed=$SEED \
randomness.deterministic=True \
both self.conv1 and self.norm1 produce different outputs per run. Does anyone know how to solve this?
Faster-RCNN produces different region proposals on each debug. I found that the file under the path below included a forward function producing different outputs.
x = self.conv1(x) x = self.norm1(x) x = self.relu(x)
I already set the seed properly as follows: --cfg-options randomness.seed=$SEED \ randomness.deterministic=True \
both self.conv1 and self.norm1 produce different outputs per run. Does anyone know how to solve this?