Seppo Enarvi

Results 88 comments of Seppo Enarvi

I did still some minor refactoring, but otherwise this pull request is pretty stable already. I think there was interest in merging this. @luca-medeiros do you have time to look...

> Maybe we can consider moving with #817 too. @luca-medeiros I'm the author of that update. I'm sorry I didn't notice this pull request earlier. This PR seems to mostly...

> However, if I can ask for a bit more careful review of `yolo_module.py` file? First of all, I'd like to avoid using mutable objects as default arguments to methods...

> @senarvi that is great to hear! If you could please merge your PR into this branch, that would be great! @otaj sure, I can try to do that. But...

@otaj I merged the changes, but as I guessed, I couldn't push them into this branch. I pushed them into my branch. So the merged changes appear now in [this...

@heimish-kyma should `self.log(..., batch_size=images.size(0))` be used in `test_step()` too?

For me, switching to http doesn't help. This is my Dockerfile: FROM alpine:3.14 RUN sed -i 's/https\:\/\//http\:\/\//g' /etc/apk/repositories RUN apk update This is what happens: ``` Sending build context to...

A quick update. I tried to debug this by running commands in the Dockerfile. It seems that the DNS resolver doesn't work at all. This Dockerfile: FROM alpine:3.14 RUN nslookup...

A solution was pointed out to me in another thread. For me, it was enough to install libseccomp2 in the host OS: sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 04EE7237B7D453EC 648ACFD622F3D138...

I created a subclass of the [YOLO](https://github.com/groke-technologies/pytorch-lightning-bolts/blob/yolo-update/pl_bolts/models/detection/yolo/yolo_module.py) model, but I quess you could subclass any model in the same way. I used proprietary data, but you could use any data....