It worked in the beginning, but did not reproduce the results you said it is.
Can you fix it ?
Currently I cant run imports:
from mmcv import collect_env
collect_env()
# Check MMRotate installation
import mmrotate
Hi,
We were unable to reproduce your error.
Can you please send us (via email) your submission?
Shai,
MAFAT Challenge Team
Hi, I have the same issue, sent you emaill, thanks
Posted by: GA @ April 11, 2023, 10:28 a.m.Hi, Mafat team,
For this cell:
################
from mmcv import collect_env
collect_env()
# Check MMRotate installation
import mmrotate
print(mmrotate.__version__)
# Check MMDetection installation
import mmdet
print(mmdet.__version__)
# Check mmcv installation
from mmcv.ops import get_compiling_cuda_version, get_compiler_version
print(get_compiling_cuda_version())
print(get_compiler_version())
###############
I get this error:
ImportError Traceback (most recent call last)
<ipython-input-29-f1ca9e5d2a56> in <cell line: 1>()
----> 1 from mmcv import collect_env
2 collect_env()
3
4 # Check MMRotate installation
5 import mmrotate
ImportError: cannot import name 'collect_env' from 'mmcv' (/usr/local/lib/python3.9/dist-packages/mmcv/__init__.py)
---------------------------------------------------------------------------
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
Hi,
The baseline notebook didn't work due to packages versions updates.
We fixed the versions installations of the packages: mmcv-full and mmdet, and now the notebook is running without errors.
MAFAT Challenge Team