From 75523a75312a7c8a9a007f75375f6310b8d37ad9 Mon Sep 17 00:00:00 2001 From: Cheng-Yang Fu Date: Thu, 28 Feb 2019 04:33:09 -0500 Subject: [PATCH] Update the installation process. (#502) * Add new section "Projects using maskrcnn-benchmark". * Update README.md update the format. * Update README.md * Add coco_2017_train and coco_2017_val * Update README.md Add the instructions about COCO_2017 * Update the pip install. Adding tqdm which is used in engine/inference.py --- INSTALL.md | 2 +- requirements.txt | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/INSTALL.md b/INSTALL.md index 31d23b5b..67c2dee6 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -24,7 +24,7 @@ conda activate maskrcnn_benchmark conda install ipython # maskrcnn_benchmark and coco api dependencies -pip install ninja yacs cython matplotlib +pip install -r requirements.txt # follow PyTorch installation in https://pytorch.org/get-started/locally/ # we give the instructions for CUDA 9.0 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..a67b697b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +ninja +yacs +cython +matplotlib +tqdm