Lloyd-Pottiger

Results 19 comments of Lloyd-Pottiger

The Pytorch offical tutorials may can help you https://pytorch.org/tutorials/beginner/basics/saveloadrun_tutorial.html, and you can just change the unet_path with '.pth'.

For input image size is 224x224?, you can check this https://news.ycombinator.com/item?id=12509852, The output channel number is usually 1 in order to get better performance The batch size can change as...

According to the offical code of the paper: https://github.com/ozan-oktay/Attention-Gated-Networks the gating signal is mainly: ``` nn.Sequential(nn.Conv3d(in_size, out_size, kernel_size, (1,1,1), (0,0,0)), nn.BatchNorm3d(out_size), nn.ReLU(inplace=True), ) ``` And then input into Attention Gate,...

> but it has issues with index-out-of-range and having other side-effects Could you please give some examples about that? IMO, when the query like ```mysql select ... from github_events WHERE...

> Say that there would be an `index (type, ...)` then removing the `type = 'WatchEvent` condition would mean that the index would not be considered It only happen when...

> @mjonss @Lloyd-Pottiger How about this? When the partition is list partition, filter is on partition key with eq condition, when there is only 1 condition, or there are multiple...