Installation - IceVision
# 1. git clone 代码
# pip 换源: ~/.pip/pip.conf 隐藏文件
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com
pip install -e .[all,dev]
ImportError: cannot import name 'MultiScaleDeformableAttention' from 'mmcv.cnn.bricks.transformer' #1399\ mmcv就是有这样的问题
- ImportError: cannot import name 'MultiScaleDeformableAttention' from 'mmcv.cnn.bricks.transformer' · Issue #1399 · open-mmlab/mmcv · GitHub
- solution:Compatibility to mmdet has been removed · Issue #1071 · airctic/icevision · GitHub 源头问题在这里。 mmcv的torch和cuda环境本来就不好配,可以说是notorious,按照下面配置,就解决了这个问题。
So run the following
pip install torch==1.10.0+cu111 torchvision==0.11.1+cu111 -f https://download.pytorch.org/whl/torch_stable.html
Next, update mmdet to more recent version. I tried with
pip install mmdet==2.17.0
I no longer face any of the errors. Let us know if it works for you :)
icevision介绍:GitHub - airctic/icevision: An Agnostic Computer Vision Framework - Pluggable to any Training Library: Fastai, Pytorch-Lightning with more to come
fastai forum中对icevision的介绍:faridFarid Hassainia
- https://forums.fast.ai/t/icevision-an-agnostic-object-detection-framework/82255
- 非常感谢这个框架!我认为这是第一个包含 fastai 所有优点的对象检测框架,太棒了!非常感谢这个框架!我认为这是第一个包含 fastai 所有优点的对象检测框架,太棒了!
- 在Twitter上也有详细的图文介绍,之前见到过,现在来仔细阅读一下。
- fastai中做目标检测,基础设施不够完善,Muller建议使用icevision,所以可能也会有一定道理。 OD在fastai框架中会更容易。
https://forums.fast.ai/t/tipps-for-getting-started-with-object-keypoint-detection/102238/4
这个里面有一些链接和资料:@Chris-休斯已经对 Yolo7 进行了很好的深入研究,值得一读以更深入地了解它的所有部分。
YOLOv7:深入探讨当前最先进的目标检测技术 8个
Tipps for getting started with object/keypoint detection - #7 by johnrobinsn - Part 2 2022/23 - fast.ai Course Forums 这个链接中有我想要的SSD的东西,链接如下:
https://github.com/johnrobinsn/ObjectDetectionNotebooks/blob/main/nbs/05_ssd_final.ipynbGitHub - EmbraceLife/My_Journey_on_Kaggle: Learn from amazing Kagglers on Kaggle
找到了深度碎片的内容,github;以及tw留言。可以一起。