Sean Mann

Results 12 comments of Sean Mann

https://github.com/ultralytics/yolov5/issues/6948#issuecomment-1075548218 Find `E:\condaaa\Lib\site-packages\torch\nn\modules\upsampling.py` and change to this: ``` def forward(self, input: Tensor) -> Tensor: return F.interpolate(input, self.size, self.scale_factor, self.mode, self.align_corners, #recompute_scale_factor=self.recompute_scale_factor ) ``` Commenting out this optional parameter was a...

I must be doing something wrong. Installed this, react-native-web-webview, and react-native-webview. Compiler failures. Without web-webview and webview it will compile, but the iframe doesn't render. Is there a clear guide...

Thanks, will try that

:+1: This would be very helpful. We have lots of PSD files well under 50mb, but would like to not have to manually lfs track every one that eventually ends...

SourceTree sort of does this. If you have a file over 2MB it warns you pre commit. It doesn't let you set a size filter or automate adding them to...

Not sure how to get this to work, Testing on Pixel 4 with Android 11. ``` flutter_icons: android: "launcher_icon" ios: true image_path: "assets/icon.png" icon_adaptive_foreground: "assets/icon.png" icon_adaptive_background: "#000000" ``` ![Screenshot_20210214-200022](https://user-images.githubusercontent.com/10132540/107894957-7a26a180-6eff-11eb-9939-c12cdc0e7c9c.png)

https://github.com/openai/DALL-E/blob/master/notebooks/usage.ipynb it's in the notebook example.

Object pooling is a good one to add. I'm not sure why/how it didn't make the list. The original plan was to do tutorials on these. I'd likely skip object...

Not a dumb question at all. This could certainly be an interface in this example. However, the only reason to do so would be if we had a class that...

You are correct, in most cases an interface may be most appropriate. I guess I just always feel like they are going to limit me too much, but that's me...