Update README.md
Browse files
README.md
CHANGED
|
@@ -22,7 +22,6 @@ pip install -U openmim
|
|
| 22 |
mim install mmengine
|
| 23 |
mim install mmcv==2.0.0
|
| 24 |
|
| 25 |
-
pip install -r run/requirements.txt
|
| 26 |
cd mmsegmentation
|
| 27 |
pip install -v -e .
|
| 28 |
```
|
|
@@ -66,6 +65,7 @@ Here is an example if you want to make own dataset.
|
|
| 66 |
***Dataset Configs***
|
| 67 |
|
| 68 |
```bash
|
|
|
|
| 69 |
cd mmsegmentation/mmseg/datasets
|
| 70 |
rm -rf __init__.py # delete original file
|
| 71 |
wget https://huggingface.co/CVRPDataset/Model/resolve/main/dataset_configs/CVRP.py
|
|
@@ -147,8 +147,8 @@ python ../run/test.py -d CVRPDataset/val -m CVRP_configs/CVRP_mask2former.py -pt
|
|
| 147 |
```
|
| 148 |
### UI
|
| 149 |
##### We create a web user interface for annotation based on gradio.
|
| 150 |
-
##### First, make sure you have Mask2Former.pth in mmsegmentation/work_dirs/CVRP_mask2former and CVRP_mask2former.py in mmsegmentation/CVRP_configs according to the above instructions.
|
| 151 |
```bash
|
|
|
|
| 152 |
python app.py
|
| 153 |
```
|
| 154 |
##### The UI :
|
|
|
|
| 22 |
mim install mmengine
|
| 23 |
mim install mmcv==2.0.0
|
| 24 |
|
|
|
|
| 25 |
cd mmsegmentation
|
| 26 |
pip install -v -e .
|
| 27 |
```
|
|
|
|
| 65 |
***Dataset Configs***
|
| 66 |
|
| 67 |
```bash
|
| 68 |
+
pip install -r run/requirements.txt
|
| 69 |
cd mmsegmentation/mmseg/datasets
|
| 70 |
rm -rf __init__.py # delete original file
|
| 71 |
wget https://huggingface.co/CVRPDataset/Model/resolve/main/dataset_configs/CVRP.py
|
|
|
|
| 147 |
```
|
| 148 |
### UI
|
| 149 |
##### We create a web user interface for annotation based on gradio.
|
|
|
|
| 150 |
```bash
|
| 151 |
+
pip install gradio
|
| 152 |
python app.py
|
| 153 |
```
|
| 154 |
##### The UI :
|