double-fire-0
double-fire-0
same problem, one subfloder can't be found while the other smaller can be found
I didn't have this problem at runtime the other day, but now I'm having this problem. it's so wired Does anyone have any ideas?
Is it because one image in the dataset corresponds to multiple texts?
I have the same problem. But for me, it is because I use it in a wrapped framework, and the framework will call model.generate multi-processing. I solved it by adding...
@Ericoool9614 lock = threading.Lock() with lock: outputs = self.model.generate(...your code here...) For me, it doesn't affect the performance