yustiks
yustiks
added different coloured background generator: data_generator.py: ``` elif background_type == 4: background_img = background_generator.random_background( background_height, background_width ) ``` background_generator.py: ``` def random_background(height, width): """ Create a random background """ r...
Hello! Thank you for the amazing work done! I would like to calculate MaP for object detection model and experiencing some problems. First, I couldn't find the link in the...
Hello! I am trying to use the library in order to apply GSVD++ model with items side information, and after some time of training, I have the following prediction on...
I try to run script 'predict.py' and I have this error. What should I do?
I try to run training, but I have an issue: ``` Traceback (most recent call last): File "train.py", line 15, in from deep_text_recognition_benchmark.utils import CTCLabelConverter, CTCLabelConverterForBaiduWarpctc, AttnLabelConverter, Averager ModuleNotFoundError: No...
Hello! I am trying to implement SVD++, and I have an issue. I would like to add parameter reg (as regularization penalty), but I couldn't find any examples. Would be...
Hello! I have found an example on how to use side information for YouTubeRanking, and I have a question whether we have to use the same method for SVD++? does...
Hello! Is there any examples how to run training on 3 channels frames sequence?
I saw that in the code, hidden_state is not implemented: ``` def forward(self, input_tensor, hidden_state=None): """ Parameters ---------- input_tensor: todo 5-D Tensor either of shape (t, b, c, h, w)...
Hello! How to run the code for motion deblurring? Namely, I try to find the weight for the model and example about how to test the model on a custom...