mirror of https://github.com/open-mmlab/mmocr.git
[Fix] upgrade version requirement of mmdet to 2.14.0 to avoid known bugs (#382)
parent
969c65165f
commit
02d657d141
|
@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y git ninja-build libglib2.0-0 libsm6 lib
|
|||
RUN conda clean --all
|
||||
RUN pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu101/torch1.6.0/index.html
|
||||
|
||||
RUN pip install mmdet==2.13.0
|
||||
RUN pip install mmdet==2.14.0
|
||||
|
||||
RUN git clone https://github.com/open-mmlab/mmocr.git /mmocr
|
||||
WORKDIR /mmocr
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
- NCCL 2
|
||||
- GCC 5.4.0 or higher
|
||||
- [MMCV](https://mmcv.readthedocs.io/en/latest/#installation) >= 1.3.8
|
||||
- [MMDetection](https://mmdetection.readthedocs.io/en/latest/#installation) >= 2.13.0
|
||||
- [MMDetection](https://mmdetection.readthedocs.io/en/latest/#installation) >= 2.14.0
|
||||
|
||||
We have tested the following versions of OS and softwares:
|
||||
|
||||
|
@ -18,7 +18,7 @@ We have tested the following versions of OS and softwares:
|
|||
- CUDA: 10.1
|
||||
- GCC(G++): 5.4.0
|
||||
- MMCV 1.3.8
|
||||
- MMDetection 2.13.0
|
||||
- MMDetection 2.14.0
|
||||
- PyTorch 1.6.0
|
||||
- torchvision 0.7.0
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
- NCCL 2
|
||||
- GCC 5.4.0 or higher
|
||||
- [MMCV](https://mmcv.readthedocs.io/en/latest/#installation) >= 1.3.8
|
||||
- [MMDetection](https://mmdetection.readthedocs.io/en/latest/#installation) >= 2.13.0
|
||||
- [MMDetection](https://mmdetection.readthedocs.io/en/latest/#installation) >= 2.14.0
|
||||
|
||||
We have tested the following versions of OS and softwares:
|
||||
|
||||
|
@ -18,7 +18,7 @@ We have tested the following versions of OS and softwares:
|
|||
- CUDA: 10.1
|
||||
- GCC(G++): 5.4.0
|
||||
- MMCV 1.3.8
|
||||
- MMDetection 2.13.0
|
||||
- MMDetection 2.14.0
|
||||
- PyTorch 1.6.0
|
||||
- torchvision 0.7.0
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ assert (mmcv_version >= digit_version(mmcv_minimum_version)
|
|||
f'Please use MMCV >= {mmcv_minimum_version}, ' \
|
||||
f'<= {mmcv_maximum_version} instead.'
|
||||
|
||||
mmdet_minimum_version = '2.13.0'
|
||||
mmdet_minimum_version = '2.14.0'
|
||||
mmdet_maximum_version = '2.20.0'
|
||||
mmdet_version = digit_version(mmdet.__version__)
|
||||
|
||||
|
|
Loading…
Reference in New Issue