Open osuossu8 opened 1 year ago
keroppi-sensei のコード
def dilate_predict_mask(out_mask):
for i in range(len(out_mask)):
kernel = np.ones(shape=(3, 3), dtype=np.uint8)
out_mask[i] = cv2.dilate(out_mask[i], kernel, 3)
return out_mask
from https://www.kaggle.com/code/hengck23/lb4-09-baseline-yolov7
(exp 021) 0.449 → 0.409
一旦 close
public 0.449 を dilation なしで投げて差分見る https://www.kaggle.com/code/itsuki9180/hubmap-inference/notebook
patriot-san の post
dilation は iterations を変えて試す
https://www.kaggle.com/competitions/hubmap-hacking-the-human-vasculature/discussion/416901#2322028
ds1 only で erosion もいいかも https://scikit-image.org/docs/stable/api/skimage.morphology.html#skimage.morphology.binary_erosion
ds1 と ds2 の shuffle で成功!
0.318 → 0.451
https://www.kaggle.com/code/kaerunantoka/hubmap-infer-exp034-dilate-iter3?scriptVersionId=135495448
mmdet 2.0系の推論 notebook で kaeru の weight でサブしてみる https://www.kaggle.com/code/harshitsheoran/hubmap-mmdet-2-26-public-inference?scriptVersionId=137179547
config を mmdet2.x 用に convert する parser が必要
うまくいかなかったやつ
https://www.kaggle.com/code/kaerunantoka/hubmap-infer-mmdet-exp006-dilation-pp?scriptVersionId=133985837
追記 : ds1 のみで学習したものだった