FPN_Tensorflow
FPN_Tensorflow copied to clipboard
This is a tensorflow re-implementation of Feature Pyramid Networks for Object Detection.
大佬你好。我运行同样的代码在一个tfrecord文件时正常运行。在另一个tfrecord文件时报错,不知道这是什么原因?用的multi_gpu_train,两块1080ti卡。 Traceback (most recent call last): File "/home/allent/anaconda3/envs/tensorflow_py35/lib/python3.5/site-packages/tensorflow/python/client/session.py", line 1278, in _do_call return fn(*args) File "/home/allent/anaconda3/envs/tensorflow_py35/lib/python3.5/site-packages/tensorflow/python/client/session.py", line 1263, in _run_fn options, feed_dict, fetch_list, target_list, run_metadata) File "/home/allent/anaconda3/envs/tensorflow_py35/lib/python3.5/site-packages/tensorflow/python/client/session.py", line 1350, in...
saved model转onnx时,报错: ValueError: Node 'gradients/resnet_v1_101_4/block4/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNorm_grad/FusedBatchNormGrad' has an _output_shapes attribute inconsistent with the GraphDef for output #3: Dimension 0 in both shapes must be equal, but are 0 and 2048. Shapes...
demos跑不出
作者你好,我在跑demo的时候出现 No module named 'libs.box_utils.cython_utils.cython_bbox' 这个问题,请问如何解决?
demo测试失败
按照步骤操做运行infernce.py 测试的图片没有画出检测框等任何检测结果,将置信度降到0.1,出现检测结果,但是结果是错的
感谢您的项目。我的问题时处理的是比较大的遥感影像,进行了裁剪然后使用FPN进行训练及预测。但是裁剪后的影像有一些是纯黑色的,识别过后这些影像有一部分变成了绿色。这是什么原因呢? 是不是pixel_mean的原因?
博主能重新提交一下吗?谢谢
在训练的时候,有的跑几十个step有时候跑几百个就卡顿了,也不报错也没有继续运行,在win10下跑的,这是为什么,怎么解决这个问题呀,求助
`def fusion_two_layer(C_i, P_j, scope): ''' i = j+1 :param C_i: shape is [1, h, w, c] :param P_j: shape is [1, h/2, w/2, 256] :return: P_i ''' with tf.variable_scope(scope): level_name...