Skip to content
View a-canela's full-sized avatar
Block or Report

Block or report a-canela

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Directory download (sync) through bo... Directory download (sync) through boto3 supporting include-only pattern
    1
    import os
    2
    import boto3
    3
    from fnmatch import fnmatch
    4
    from botocore.config import Config
    5
    from traceback import format_exc
  2. 2D / 3D Cubic (bicubic / tricubic) i... 2D / 3D Cubic (bicubic / tricubic) interpolations implemented with torch
    1
    import torch
    2
    
    
    3
    
    
    4
    def spline_2d_torch(points, Z):
    5
        K = 4