SYMBOL INDEX (50 symbols across 10 files) FILE: converter.py function weight_assign (line 11) | def weight_assign(lua, pth, maps): function photo_wct_loader (line 17) | def photo_wct_loader(p_wct): FILE: demo_with_ade20k_ssn.py function segment_this_img (line 83) | def segment_this_img(f): FILE: download_models.py function download_file_from_google_drive (line 4) | def download_file_from_google_drive(id, destination): function get_confirm_token (line 18) | def get_confirm_token(response): function save_response_content (line 25) | def save_response_content(response, destination): FILE: models.py class VGGEncoder (line 8) | class VGGEncoder(nn.Module): method __init__ (line 9) | def __init__(self, level): method forward (line 76) | def forward(self, x): method forward_multiple (line 131) | def forward_multiple(self, x): class VGGDecoder (line 190) | class VGGDecoder(nn.Module): method __init__ (line 191) | def __init__(self, level): method forward (line 251) | def forward(self, x, pool1_idx=None, pool1_size=None, pool2_idx=None, ... FILE: photo_gif.py class GIFSmoothing (line 13) | class GIFSmoothing(nn.Module): method forward (line 14) | def forward(self, *input): method __init__ (line 17) | def __init__(self, r, eps): method process (line 22) | def process(self, initImg, contentImg): method process_opencv (line 25) | def process_opencv(self, initImg, contentImg): FILE: photo_smooth.py class Propagator (line 15) | class Propagator(nn.Module): method __init__ (line 16) | def __init__(self, beta=0.9999): method process (line 20) | def process(self, initImg, contentImg): method __compute_laplacian (line 68) | def __compute_laplacian(self, img, eps=10**(-7), win_rad=1): method __replication_padding (line 89) | def __replication_padding(self, arr,pad): method __rolling_block (line 96) | def __rolling_block(self, A, block=(3, 3)): FILE: photo_wct.py class PhotoWCT (line 13) | class PhotoWCT(nn.Module): method __init__ (line 14) | def __init__(self): method transform (line 25) | def transform(self, cont_img, styl_img, cont_seg, styl_seg): method __compute_label_info (line 56) | def __compute_label_info(self, cont_seg, styl_seg): method __feature_wct (line 70) | def __feature_wct(self, cont_feat, styl_feat, cont_seg, styl_seg): method __wct_core (line 122) | def __wct_core(self, cont_feat, styl_feat): method is_cuda (line 167) | def is_cuda(self): method forward (line 170) | def forward(self, *input): FILE: process_stylization.py class ReMapping (line 17) | class ReMapping: method __init__ (line 18) | def __init__(self): method process (line 21) | def process(self, seg): class Timer (line 28) | class Timer: method __init__ (line 29) | def __init__(self, msg): method __enter__ (line 33) | def __enter__(self): method __exit__ (line 36) | def __exit__(self, exc_type, exc_value, exc_tb): function memory_limit_image_resize (line 40) | def memory_limit_image_resize(cont_img): function stylization (line 60) | def stylization(stylization_module, smoothing_module, content_image_path... FILE: process_stylization_ade20k_ssn.py function overlay (line 20) | def overlay(img, pred_color, blend_factor=0.4): function visualize_result (line 34) | def visualize_result(label_map): class SegReMapping (line 43) | class SegReMapping: method __init__ (line 44) | def __init__(self, mapping_name, min_ratio=0.02): method cross_remapping (line 48) | def cross_remapping(self, cont_seg, styl_seg): method self_remapping (line 94) | def self_remapping(self, seg): function stylization (line 124) | def stylization(stylization_module, smoothing_module, content_image_path... FILE: smooth_filter.py function smooth_local_affine (line 332) | def smooth_local_affine(output_cpu, input_cpu, epsilon, patch, h, w, f_r... function smooth_filter (line 380) | def smooth_filter(initImg, contentImg, f_radius=15,f_edge=1e-1):