Sense-GVT / Fast-BEV

Fast-BEV: A Fast and Strong Bird’s-Eye View Perception Baseline
Other
567 stars 85 forks source link

Running Evaluations #61

Open Snow-Sven opened 1 year ago

Snow-Sven commented 1 year ago

I have been working on running this line of code: python tools/eval.py paper/fastbev_m0_r18_s256x704_v200x200x4_c192_d2_f4

After submitting this line of code, I get the following error message: AssertionError: MMCV==1.4.0 is used but incompatible. Please install mmcv>=2.0.0rc4, <2.1.0.

After review, all the packages I have installed build off mmcv 1.3.8 (this is the minimum version required for FastBEV to build). After reviewing the code where this error originated, I found the following: The issue stems from line 23.

image

These are my installations:

image

The minimum version is defined as 1.3.8, the version I have installed. However, I am still getting the error message. Additionally, the error message is inconsistent with the above screenshot from the FastBEV github. The min version is defined as 1.3.8, but the AssersionError identifies the min version as mmcv>=2.0.0rc4. I assumed that this was because a package I had installed needed a newer version of mmcv but I cannot identify what package would be causing this issue. Do you have any suggestions for getting around this issue?

Mandylove1993 commented 1 year ago

image 直接把mmdet下面的mmcv最高版本改成1.5.0,就可以了