I'd like to discuss about changing name of functions and variables related to the upscaling process.
expand_image method in Painting class.
- I think
expand_image is a good to describe the behavior,
- but the
upscale_image looks better to express Upscaling Process.
target_size parameter in expand_image method.
- it can be mislead users think that they are changing image size as fixed size.
- since we're scaling the image,
upscaling_ratio seems right. and its type should be float.
blurring method in Painting Class.
- A function's name should clearly descible its behavior and its target.
- I think
blurring should include the target, so **blur_image is more correct.**
what do you think about those? I'd like to hear.
I'd like to discuss about changing name of functions and variables related to the upscaling process.
expand_imagemethod inPaintingclass.expand_imageis a good to describe the behavior,upscale_imagelooks better to express Upscaling Process.target_sizeparameter inexpand_imagemethod.upscaling_ratioseems right. and its type should befloat.blurringmethod inPaintingClass.blurringshould include the target, so**blur_imageis more correct.**what do you think about those? I'd like to hear.