Skip to content

Instantly share code, notes, and snippets.

@hellock
hellock / CONTRIBUTOR_LICENSE_AGREEMENT.md
Last active May 5, 2020 09:42
CLA for OpenMMLab Projects

OpenMMLab Contributor License Agreement

In order to clarify the intellectual property license granted with Contributions from any person or entity, the open source project OpenMMLab ("OpenMMLab") must have a Contributor License Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of OpenMMLab and its users; it does not change your rights to use your own Contributions for any other purpose.

You accept and agree to the following terms and conditions for Your present and future Contributions submitted to OpenMMLab. Except for the license granted herein to OpenMMLab and recipients of software distributed by OpenMMLab, You reserve all right, title, and interest in and to Your Contributions.

  1. Definitions.

"You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with OpenMMLab. For legal entitie

@hellock
hellock / mmdetection_env.sh
Last active December 20, 2020 22:58
Setup mmdetection with conda
conda create -n open-mmlab python=3.7 -y
source activate open-mmlab
conda install -c pytorch pytorch torchvision -y
conda install cython -y
git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection
pip install -v -e .
mkdir data