Morteza Milani

Results 8 issues of Morteza Milani

Hi, I created a new color theme named mytheme for javascript terminal vim. maybe others want to try it;)

The benchmark does not include results for Resnet-200 with GTX 1080 Ti (11GB). Can anyone manage to add it?

Rails counters support record disassociation via `collection.delete`: https://github.com/rails/rails/blob/main/activerecord/lib/active_record/associations/has_many_association.rb#L125 This is not supported by counter_culture. Example: ``` class Product < ActiveRecord::Base belongs_to :category counter_culture :category end class Category < ActiveRecord::Base has_many...

I run tests on Ubuntu 17.04, Python 3.5.3, numpy 1.14.0, tensorflow-gpu 1.4.1 (GTX 1070). Here you can find a log of only backend tests: https://gist.github.com/milani/f90e448388440a3897d9aee1c3023c30

I think, in L*a*b color space, L is between [0,100]. So the line below should divide by 100 rather than 255. https://github.com/abhishekvahadane/CodeRelease_ColorNormalization/blob/fc05020830eff1d4d3babfd654518618294334e8/SNMF%20stain%20separation%20and%20color%20normalization/BLtrans.m#L12

I have the following network: ```python class Model(nn.Module): def __init__(self): super(Model, self).__init__() self.conv1 = nn.Conv2d(1,8,3,padding=1,bias=False) self.batch1 = nn.BatchNorm2d(8,affine=False) #self.conv2 = nn.Conv2d(8,16,3,padding=0,bias=False) self.conv2offset = nn.Conv2d(8,2*3*3,3,padding=0,bias=False) self.deform_conv2 = ConvOffset2d(8,16,3,padding=0,num_deformable_groups=1) self.batch2 = nn.BatchNorm2d(16,affine=False)...

I am running the following code: ```python from ptpy import PTPy from ptpy.transports.ip import IPTransport camera = PTPy(transport=IPTransport,device="192.168.156.1") ``` I get this error: ```shell D 19 ptpy[MainThread:__new__:99] New PTPy D...

How should I handle recurring payments using SimplePurchase?