Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ We need to provide the appropriate version of the `mmcv-full` package as well as
#### CUDA-Version Installation Example
<div class="termy">
```console
$ pip install mmcv-full=="1.3.3" -f https://download.openmmlab.com/mmcv/dist/CUDA_VERSION/TORCH_VERSION/index.html --upgrade
$ pip install mmcv-full=="1.3.8" -f https://download.openmmlab.com/mmcv/dist/CUDA_VERSION/TORCH_VERSION/index.html --upgrade
$ pip install mmdet
```
</div>

#### CPU-Version Installation
<div class="termy">
```console
$ pip install mmcv-full=="1.3.3+torch.1.8.0+cpu" -f https://download.openmmlab.com/mmcv/dist/index.html --upgrade
$ pip install mmcv-full=="1.3.8+torch.1.8.0+cpu" -f https://download.openmmlab.com/mmcv/dist/index.html --upgrade
$ pip install mmdet
```
</div>
Expand Down
2 changes: 1 addition & 1 deletion icevision/visualize/draw_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def draw_label(
caption = str(label)
if prettify:
# We could introduce a callback here for more complex label renaming
caption = prefix + caption
caption = str(prefix) + str(caption)
caption = prettify_func(caption)

# Append label confidence to caption if applicable
Expand Down