We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The version are wrong in the mmcv you give torch 1.5 but you conda install 1.6
conda create -n open-mmlab python=3.7 -y conda activate open-mmlab conda install pytorch=1.6.0 torchvision cudatoolkit=10.1 -c pytorch pip install mmcv-full==latest+torch1.5.0+cu101 -f https://download.openmmlab.com/mmcv/dist/index.html git clone https://github.com/open-mmlab/mmsegmentation.git cd mmsegmentation pip install -e . # or "python setup.py develop" mkdir data ln -s $DATA_ROOT data
instead should be
conda create -n open-mmlab python=3.7 -y conda activate open-mmlab conda install pytorch=1.6.0 torchvision cudatoolkit=10.1 -c pytorch pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu101/torch1.6.0/index.html git clone https://github.com/open-mmlab/mmsegmentation.git cd mmsegmentation pip install -e . # or "python setup.py develop" mkdir data ln -s $DATA_ROOT data
The text was updated successfully, but these errors were encountered:
Hi @zactodd Thanks for your issue and sorry for the late reply. We will fix it ASAP and also welcome your PR!
Sorry, something went wrong.
[Tests] Upload custom test artifacts (open-mmlab#572)
0a2c42f
* make_reports * add test utils * style * style
[Docs] Add inheritance design explanation to Config Tutorial (open-mm…
e77eb68
…lab#572) * add config docs * polish * fix typo * polish
xiexinch
Junjun2016
Successfully merging a pull request may close this issue.
The version are wrong in the mmcv you give torch 1.5 but you conda install 1.6
instead should be
The text was updated successfully, but these errors were encountered: