balancap / SSD-Tensorflow

Single Shot MultiBox Detector in TensorFlow
4.11k stars 1.89k forks source link

test VOC2007, but VOC2017 appeared #302

Open sibangde opened 5 years ago

sibangde commented 5 years ago

I just eval the model on voc2007 like this, EVAL_DIR=${TRAIN_DIR}/eval python eval_ssd_network.py \ --eval_dir=${EVAL_DIR} \ --dataset_dir=${DATASET_DIR} \ --dataset_name=pascalvoc_2007 \ --dataset_split_name=test \ --model_name=ssd_300_vgg \ --checkpoint_path=${TRAIN_DIR} \ --wait_for_checkpoints=True \ --batch_size=1 \ --max_num_batches=500 but it got both voc2007 and voc2012's mAP ,why?

_20181109110736
shenmayufei commented 5 years ago

can you tell me your python and tensorflow version? because i ran the project i got a error map W .\tensorflow/core/grappler/optimizers/graph_optimizer_stage.h:237] Failed to run optimizer ArithmeticOptimizer, stage HoistCommonFactor. Error: Node average_precision_voc07/ArithmeticOptimizer/HoistCommonFactor_Add_AddN is missing output properties at position :0 (num_outputs=0) AP_VOC07/mAP[4.259524845988075e-05] AP_VOC12/mAP[2.8691111635281741e-05]

summerrr commented 5 years ago

I have the same problems, do you solved it? and my mAP is only 59% and 60%

YJLCV commented 5 years ago

I have the same problem. Have you solved it?@shenmayufei

Sulince commented 5 years ago

look like you have run eval_ssd_network.py on VOC07test successfully,but i got an TypeError like this: File "/home/sulince/anaconda3/lib/python3.6/site-packages/tensorflow/python/ops/variables.py", line 185, in call return cls._variable_v2_call(*args, **kwargs) TypeError: _variable_v2_call() got an unexpected keyword argument 'collections' How can i solve it ??? @sibangde @shenmayufei Thank you very much!