hkchengrex / Mask-Propagation

[CVPR 2021] MiVOS - Mask Propagation module. Reproduced STM (and better) with training code :star2:. Semi-supervised video object segmentation evaluation.
https://hkchengrex.github.io/MiVOS/
MIT License
127 stars 22 forks source link

How to run two copies of your code at the same time? #21

Closed longmalongma closed 3 years ago

longmalongma commented 3 years ago

image

I have duplicated two copies of your code and made small changes in the duplicated code respectively. When one is being trained, the other one cannot be trained. If the two codes are trained at the same time, what parameters need to be changed?One of my computers has 4 2080ti, the memory is enough.

hkchengrex commented 3 years ago

Change the port number in --master_port 9842. They cannot use the same port.

longmalongma commented 3 years ago

Change the port number in --master_port 9842. They cannot use the same port.

OK,thanks. Can I change 9842 to any number?What does 9842 mean? @hkchengrex

hkchengrex commented 3 years ago

It is a port number. As long as that port is not used.

longmalongma commented 3 years ago

It is a port number. As long as that port is not used.

Ok, I got it, thanks!