pengzhou1108 / RGB-N

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Testing for single image

saurav4098 opened this issue · comments

Hi Peng,
I have two questions for you.
Ques-1
I trained the model on Coco Synthetic dataset provided by you. I got the attached curve.Is it good enough?
tamper

Ques-2
While testing for single image , I have set the classes=2 as below.
net.create_architecture(sess, "TEST",2, tag='default',
anchor_scales=ANCHOR_SCALES,anchor_ratios=ANCHOR_RATIOS)

Is that correct??
I am getting the attached scores and boxes. Can you suggest me how to move forward after scores and boxes calculation
scores

Thank you in advance.

Hi Peng,
I have two questions for you.
Ques-1
I trained the model on Coco Synthetic dataset provided by you. I got the attached curve.Is it good enough?
tamper

Ques-2
While testing for single image , I have set the classes=2 as below.
net.create_architecture(sess, "TEST",2, tag='default',
anchor_scales=ANCHOR_SCALES,anchor_ratios=ANCHOR_RATIOS)

Is that correct??
I am getting the attached scores and boxes. Can you suggest me how to move forward after scores and boxes calculation
scores

Thank you in advance.

Hi,

The result looks good. For single image test, you can take a look at tools/demo.py. Hope it helps.

Thank you Peng