NLDF icon indicating copy to clipboard operation
NLDF copied to clipboard

Results 6 NLDF issues
Sort by recently updated
recently updated
newest added

请问PR曲线是用python 的代码运行的,能否提供下评测PR曲线的代码

您好!我将您代码中的网络结构简化为以下代码: self.pool5_conv1 = self.Conv_2d(vgg.pool5, [3, 3, 512, 128], 0.01, padding='SAME', name='c1_') self.contrast_1 = self.Contrast_Layer(self.pool5_conv1, 3) self.pool5_conv2 = self.Conv_2d(tf.concat([self.pool5_conv1, self.contrast_1], axis=3), [3, 3, 256, 256], 0.01, padding='SAME', name='c2_') self.pool5_conv3 = self.Conv_2d(self.pool5_conv2,...

Hi, I'm trying to train my own model according to your implementation. Since I encounter some gradient error cause Nan or Inf error. Below is the log when training crash...

I met the following error: Traceback (most recent call last): File "TestingModel.py", line 75, in model.keep_prob: 1}) AttributeError: 'Model' object has no attribute 'keep_prob' How can I fix it?