dangnh0611 / kaggle_rsna_breast_cancer

1st place solution of RSNA Screening Mammography Breast Cancer Detection competition on Kaggle: https://www.kaggle.com/competitions/rsna-breast-cancer-detection
MIT License
75 stars 25 forks source link

Change dockerfile image #6

Closed Kaschi14 closed 10 months ago

Kaschi14 commented 11 months ago

Hi ultralytics/yolov5 docker image just got an update two days ago and is now running with Python 3.10 This results in an error "AttributeError: module 'collections' has no attribute 'Sequence'". Fix it by changing the first row in the dockerfile as follows:

#FROM ultralytics/yolov5:latest
FROM ultralytics/yolov5:v7.0
dangnh0611 commented 10 months ago

Many thanks, updated !