ShenZheng2000

Results 30 comments of ShenZheng2000

我遇到同样的问题。答主知道怎么做吗

When you increase the batch size, you are training more images in each iteration. Therefore, you spend more time in each iteration. It is true that you can increase the...

I appreciate your inquiry. Currently, I'm occupied with another project deadline, but I plan to go through and tidy up the old code repository within the next 2 weeks. As...

I met the same problem. Have u managed to solve this problem?

I found a solution by modifying [train.py](https://github.com/sapphire497/query-selected-attention/blob/main/train.py#L46). Replace this ``` model.optimize_parameters() # calculate loss functions, get gradients, update network weights ``` with this ``` model.set_input(data) model.optimize_parameters() # calculate loss functions,...

I'm also training BDD100K Day2Night. It takes about 16 hours on four 4090 GPUs to complete 25,000 training steps.

@tfriedel No, training with 512x512 resolution doesn't fit into 24GB of memory; it may require 48GB or more. However, I experimented with `resize_286_randomcrop_256x256_hflip` and found that: * it fits within...

我debug了好几天才发现,是因为新版的mmengine的问题。Try this: ``` mim install mmengine==0.10.2 ```