yijingru / BBAVectors-Oriented-Object-Detection

[WACV2021] Oriented Object Detection in Aerial Images with Box Boundary-Aware Vectors
MIT License
469 stars 88 forks source link

ModuleNotFoundError #9

Open wennzheng opened 4 years ago

wennzheng commented 4 years ago

I have install the all environment and download and install the DOTA_devkit,but when I run python main.py --data_dir dataPath --epochs 80 --batch_size 16 --dataset dota --phase train 。This error happend:“ModuleNotFoundError: No module named 'datasets.DOTA_devikit' ”. could you ask me how to solve this question?

yijingru commented 4 years ago

You may put DOTA_devkit under the folder datasets

wennzheng commented 4 years ago

Thanks for your answer, I have forget change the name of DOTA_devkit folder.

But there is another mistake that " No module named 'dota_kit'". May I not install DOTA_devkit correctly?

Moonquakesss commented 4 years ago

Thanks for your answer, I have forget change the name of DOTA_devkit folder.

But there is another mistake that " No module named 'dota_kit'". May I not install DOTA_devkit correctly?

I have the same problem. Have you solved it

yijingru commented 4 years ago

You can comment on the lines in ResultMerge_multi_process.py, I don't know why the authors for DOTA_devkit do not provide the dota_kit folder. # try: from . import dota_utils as util # except: # from .dota_kit import dota_utils as util

Moonquakesss commented 4 years ago

You can comment on the lines in ResultMerge_multi_process.py, I don't know why the authors for DOTA_devkit do not provide the dota_kit folder. # try: from . import dota_utils as util # except: # from .dota_kit import dota_utils as util

Thank you very much.