xichen98cn commited on
Commit
62a5d90
·
verified ·
1 Parent(s): c7bebac

Delete INSTALL.md

Browse files
Files changed (1) hide show
  1. INSTALL.md +0 -24
INSTALL.md DELETED
@@ -1,24 +0,0 @@
1
- ## Installation
2
- The codebases are built on top of [Detectron2](https://detectron2.readthedocs.io/tutorials/install.html).
3
-
4
-
5
- ### Dependencies and Installation
6
- ```bash
7
- conda create --name frozenseg python=3.10 -y
8
- conda activate frozenseg
9
- conda install pytorch==2.3.1 torchvision==0.18.1 -c pytorch -c nvidia
10
-
11
- # under your working directory
12
- python -m pip install 'git+https://github.com/facebookresearch/detectron2.git'
13
- pip install git+https://github.com/cocodataset/panopticapi.git
14
- pip install git+https://github.com/mcordts/cityscapesScripts.git
15
-
16
- git clone https://github.com/chenxi52/FrozenSeg.git
17
- cd FrozenSeg
18
- pip install -r requirements.txt
19
-
20
- # compile CUDA kernel for MSDeformAttn
21
- cd frozenseg/modeling/pixel_decoder/ops
22
- sh make.sh
23
- cd ../../../..
24
- ```