├── .gitattributes ├── CLAM ├── LICENSE.md ├── build_preset.py ├── create_patches.py ├── create_patches_fp.py ├── create_splits_seq.py ├── dataset_csv │ ├── wsi-report-data.csv │ └── wsi-report-data_no_duplicate.csv ├── datasets │ ├── __init__.py │ ├── dataset_generic.py │ ├── dataset_h5.py │ └── wsi_dataset.py ├── extract_features.py ├── extract_features_fp.py ├── extract_scripts │ └── tcga-wsi-report.sh ├── models │ ├── __init__.py │ ├── ckpts │ │ ├── ctranspath.pth │ │ ├── dinov2_cpath_v1.pth │ │ ├── timm-0.5.4.tar │ │ └── timm-0.5.4 │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── PKG-INFO │ │ │ ├── README.md │ │ │ ├── build │ │ │ └── lib │ │ │ │ └── timm │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── auto_augment.py │ │ │ │ ├── config.py │ │ │ │ ├── constants.py │ │ │ │ ├── dataset.py │ │ │ │ ├── dataset_factory.py │ │ │ │ ├── distributed_sampler.py │ │ │ │ ├── loader.py │ │ │ │ ├── mixup.py │ │ │ │ ├── parsers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── class_map.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── parser_factory.py │ │ │ │ │ ├── parser_image_folder.py │ │ │ │ │ ├── parser_image_in_tar.py │ │ │ │ │ ├── parser_image_tar.py │ │ │ │ │ └── parser_tfds.py │ │ │ │ ├── random_erasing.py │ │ │ │ ├── real_labels.py │ │ │ │ ├── tf_preprocessing.py │ │ │ │ ├── transforms.py │ │ │ │ └── transforms_factory.py │ │ │ │ ├── loss │ │ │ │ ├── __init__.py │ │ │ │ ├── asymmetric_loss.py │ │ │ │ ├── binary_cross_entropy.py │ │ │ │ ├── cross_entropy.py │ │ │ │ └── jsd.py │ │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── beit.py │ │ │ │ ├── byoanet.py │ │ │ │ ├── byobnet.py │ │ │ │ ├── cait.py │ │ │ │ ├── coat.py │ │ │ │ ├── convit.py │ │ │ │ ├── convmixer.py │ │ │ │ ├── convnext.py │ │ │ │ ├── crossvit.py │ │ │ │ ├── cspnet.py │ │ │ │ ├── densenet.py │ │ │ │ ├── dla.py │ │ │ │ ├── dpn.py │ │ │ │ ├── efficientnet.py │ │ │ │ ├── efficientnet_blocks.py │ │ │ │ ├── efficientnet_builder.py │ │ │ │ ├── factory.py │ │ │ │ ├── features.py │ │ │ │ ├── fx_features.py │ │ │ │ ├── ghostnet.py │ │ │ │ ├── gluon_resnet.py │ │ │ │ ├── gluon_xception.py │ │ │ │ ├── hardcorenas.py │ │ │ │ ├── helpers.py │ │ │ │ ├── hrnet.py │ │ │ │ ├── hub.py │ │ │ │ ├── inception_resnet_v2.py │ │ │ │ ├── inception_v3.py │ │ │ │ ├── inception_v4.py │ │ │ │ ├── layers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activations.py │ │ │ │ │ ├── activations_jit.py │ │ │ │ │ ├── activations_me.py │ │ │ │ │ ├── adaptive_avgmax_pool.py │ │ │ │ │ ├── attention_pool2d.py │ │ │ │ │ ├── blur_pool.py │ │ │ │ │ ├── bottleneck_attn.py │ │ │ │ │ ├── cbam.py │ │ │ │ │ ├── classifier.py │ │ │ │ │ ├── cond_conv2d.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── conv2d_same.py │ │ │ │ │ ├── conv_bn_act.py │ │ │ │ │ ├── create_act.py │ │ │ │ │ ├── create_attn.py │ │ │ │ │ ├── create_conv2d.py │ │ │ │ │ ├── create_norm_act.py │ │ │ │ │ ├── drop.py │ │ │ │ │ ├── eca.py │ │ │ │ │ ├── evo_norm.py │ │ │ │ │ ├── gather_excite.py │ │ │ │ │ ├── global_context.py │ │ │ │ │ ├── halo_attn.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ ├── inplace_abn.py │ │ │ │ │ ├── lambda_layer.py │ │ │ │ │ ├── linear.py │ │ │ │ │ ├── median_pool.py │ │ │ │ │ ├── mixed_conv2d.py │ │ │ │ │ ├── mlp.py │ │ │ │ │ ├── non_local_attn.py │ │ │ │ │ ├── norm.py │ │ │ │ │ ├── norm_act.py │ │ │ │ │ ├── padding.py │ │ │ │ │ ├── patch_embed.py │ │ │ │ │ ├── pool2d_same.py │ │ │ │ │ ├── selective_kernel.py │ │ │ │ │ ├── separable_conv.py │ │ │ │ │ ├── space_to_depth.py │ │ │ │ │ ├── split_attn.py │ │ │ │ │ ├── split_batchnorm.py │ │ │ │ │ ├── squeeze_excite.py │ │ │ │ │ ├── std_conv.py │ │ │ │ │ ├── test_time_pool.py │ │ │ │ │ ├── trace_utils.py │ │ │ │ │ └── weight_init.py │ │ │ │ ├── levit.py │ │ │ │ ├── mlp_mixer.py │ │ │ │ ├── mobilenetv3.py │ │ │ │ ├── nasnet.py │ │ │ │ ├── nest.py │ │ │ │ ├── nfnet.py │ │ │ │ ├── pit.py │ │ │ │ ├── pnasnet.py │ │ │ │ ├── pruned │ │ │ │ │ ├── ecaresnet101d_pruned.txt │ │ │ │ │ ├── ecaresnet50d_pruned.txt │ │ │ │ │ ├── efficientnet_b1_pruned.txt │ │ │ │ │ ├── efficientnet_b2_pruned.txt │ │ │ │ │ └── efficientnet_b3_pruned.txt │ │ │ │ ├── registry.py │ │ │ │ ├── regnet.py │ │ │ │ ├── res2net.py │ │ │ │ ├── resnest.py │ │ │ │ ├── resnet.py │ │ │ │ ├── resnetv2.py │ │ │ │ ├── rexnet.py │ │ │ │ ├── selecsls.py │ │ │ │ ├── senet.py │ │ │ │ ├── sknet.py │ │ │ │ ├── swin_transformer.py │ │ │ │ ├── tnt.py │ │ │ │ ├── tresnet.py │ │ │ │ ├── twins.py │ │ │ │ ├── vgg.py │ │ │ │ ├── visformer.py │ │ │ │ ├── vision_transformer.py │ │ │ │ ├── vision_transformer_hybrid.py │ │ │ │ ├── vovnet.py │ │ │ │ ├── xception.py │ │ │ │ ├── xception_aligned.py │ │ │ │ └── xcit.py │ │ │ │ ├── optim │ │ │ │ ├── __init__.py │ │ │ │ ├── adabelief.py │ │ │ │ ├── adafactor.py │ │ │ │ ├── adahessian.py │ │ │ │ ├── adamp.py │ │ │ │ ├── adamw.py │ │ │ │ ├── lamb.py │ │ │ │ ├── lars.py │ │ │ │ ├── lookahead.py │ │ │ │ ├── madgrad.py │ │ │ │ ├── nadam.py │ │ │ │ ├── nvnovograd.py │ │ │ │ ├── optim_factory.py │ │ │ │ ├── radam.py │ │ │ │ ├── rmsprop_tf.py │ │ │ │ └── sgdp.py │ │ │ │ ├── scheduler │ │ │ │ ├── __init__.py │ │ │ │ ├── cosine_lr.py │ │ │ │ ├── multistep_lr.py │ │ │ │ ├── plateau_lr.py │ │ │ │ ├── poly_lr.py │ │ │ │ ├── scheduler.py │ │ │ │ ├── scheduler_factory.py │ │ │ │ ├── step_lr.py │ │ │ │ └── tanh_lr.py │ │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── agc.py │ │ │ │ ├── checkpoint_saver.py │ │ │ │ ├── clip_grad.py │ │ │ │ ├── cuda.py │ │ │ │ ├── distributed.py │ │ │ │ ├── jit.py │ │ │ │ ├── log.py │ │ │ │ ├── metrics.py │ │ │ │ ├── misc.py │ │ │ │ ├── model.py │ │ │ │ ├── model_ema.py │ │ │ │ ├── random.py │ │ │ │ └── summary.py │ │ │ │ └── version.py │ │ │ ├── dist │ │ │ └── timm-0.5.4-py3.10.egg │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── timm.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ │ └── timm │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── auto_augment.py │ │ │ ├── config.py │ │ │ ├── constants.py │ │ │ ├── dataset.py │ │ │ ├── dataset_factory.py │ │ │ ├── distributed_sampler.py │ │ │ ├── loader.py │ │ │ ├── mixup.py │ │ │ ├── parsers │ │ │ │ ├── __init__.py │ │ │ │ ├── class_map.py │ │ │ │ ├── constants.py │ │ │ │ ├── parser.py │ │ │ │ ├── parser_factory.py │ │ │ │ ├── parser_image_folder.py │ │ │ │ ├── parser_image_in_tar.py │ │ │ │ ├── parser_image_tar.py │ │ │ │ └── parser_tfds.py │ │ │ ├── random_erasing.py │ │ │ ├── real_labels.py │ │ │ ├── tf_preprocessing.py │ │ │ ├── transforms.py │ │ │ └── transforms_factory.py │ │ │ ├── loss │ │ │ ├── __init__.py │ │ │ ├── asymmetric_loss.py │ │ │ ├── binary_cross_entropy.py │ │ │ ├── cross_entropy.py │ │ │ └── jsd.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── beit.py │ │ │ ├── byoanet.py │ │ │ ├── byobnet.py │ │ │ ├── cait.py │ │ │ ├── coat.py │ │ │ ├── convit.py │ │ │ ├── convmixer.py │ │ │ ├── convnext.py │ │ │ ├── crossvit.py │ │ │ ├── cspnet.py │ │ │ ├── densenet.py │ │ │ ├── dla.py │ │ │ ├── dpn.py │ │ │ ├── efficientnet.py │ │ │ ├── efficientnet_blocks.py │ │ │ ├── efficientnet_builder.py │ │ │ ├── factory.py │ │ │ ├── features.py │ │ │ ├── fx_features.py │ │ │ ├── ghostnet.py │ │ │ ├── gluon_resnet.py │ │ │ ├── gluon_xception.py │ │ │ ├── hardcorenas.py │ │ │ ├── helpers.py │ │ │ ├── hrnet.py │ │ │ ├── hub.py │ │ │ ├── inception_resnet_v2.py │ │ │ ├── inception_v3.py │ │ │ ├── inception_v4.py │ │ │ ├── layers │ │ │ │ ├── __init__.py │ │ │ │ ├── activations.py │ │ │ │ ├── activations_jit.py │ │ │ │ ├── activations_me.py │ │ │ │ ├── adaptive_avgmax_pool.py │ │ │ │ ├── attention_pool2d.py │ │ │ │ ├── blur_pool.py │ │ │ │ ├── bottleneck_attn.py │ │ │ │ ├── cbam.py │ │ │ │ ├── classifier.py │ │ │ │ ├── cond_conv2d.py │ │ │ │ ├── config.py │ │ │ │ ├── conv2d_same.py │ │ │ │ ├── conv_bn_act.py │ │ │ │ ├── create_act.py │ │ │ │ ├── create_attn.py │ │ │ │ ├── create_conv2d.py │ │ │ │ ├── create_norm_act.py │ │ │ │ ├── drop.py │ │ │ │ ├── eca.py │ │ │ │ ├── evo_norm.py │ │ │ │ ├── gather_excite.py │ │ │ │ ├── global_context.py │ │ │ │ ├── halo_attn.py │ │ │ │ ├── helpers.py │ │ │ │ ├── inplace_abn.py │ │ │ │ ├── lambda_layer.py │ │ │ │ ├── linear.py │ │ │ │ ├── median_pool.py │ │ │ │ ├── mixed_conv2d.py │ │ │ │ ├── mlp.py │ │ │ │ ├── non_local_attn.py │ │ │ │ ├── norm.py │ │ │ │ ├── norm_act.py │ │ │ │ ├── padding.py │ │ │ │ ├── patch_embed.py │ │ │ │ ├── pool2d_same.py │ │ │ │ ├── selective_kernel.py │ │ │ │ ├── separable_conv.py │ │ │ │ ├── space_to_depth.py │ │ │ │ ├── split_attn.py │ │ │ │ ├── split_batchnorm.py │ │ │ │ ├── squeeze_excite.py │ │ │ │ ├── std_conv.py │ │ │ │ ├── test_time_pool.py │ │ │ │ ├── trace_utils.py │ │ │ │ └── weight_init.py │ │ │ ├── levit.py │ │ │ ├── mlp_mixer.py │ │ │ ├── mobilenetv3.py │ │ │ ├── nasnet.py │ │ │ ├── nest.py │ │ │ ├── nfnet.py │ │ │ ├── pit.py │ │ │ ├── pnasnet.py │ │ │ ├── pruned │ │ │ │ ├── ecaresnet101d_pruned.txt │ │ │ │ ├── ecaresnet50d_pruned.txt │ │ │ │ ├── efficientnet_b1_pruned.txt │ │ │ │ ├── efficientnet_b2_pruned.txt │ │ │ │ └── efficientnet_b3_pruned.txt │ │ │ ├── registry.py │ │ │ ├── regnet.py │ │ │ ├── res2net.py │ │ │ ├── resnest.py │ │ │ ├── resnet.py │ │ │ ├── resnetv2.py │ │ │ ├── rexnet.py │ │ │ ├── selecsls.py │ │ │ ├── senet.py │ │ │ ├── sknet.py │ │ │ ├── swin_transformer.py │ │ │ ├── tnt.py │ │ │ ├── tresnet.py │ │ │ ├── twins.py │ │ │ ├── vgg.py │ │ │ ├── visformer.py │ │ │ ├── vision_transformer.py │ │ │ ├── vision_transformer_hybrid.py │ │ │ ├── vovnet.py │ │ │ ├── xception.py │ │ │ ├── xception_aligned.py │ │ │ └── xcit.py │ │ │ ├── optim │ │ │ ├── __init__.py │ │ │ ├── adabelief.py │ │ │ ├── adafactor.py │ │ │ ├── adahessian.py │ │ │ ├── adamp.py │ │ │ ├── adamw.py │ │ │ ├── lamb.py │ │ │ ├── lars.py │ │ │ ├── lookahead.py │ │ │ ├── madgrad.py │ │ │ ├── nadam.py │ │ │ ├── nvnovograd.py │ │ │ ├── optim_factory.py │ │ │ ├── radam.py │ │ │ ├── rmsprop_tf.py │ │ │ └── sgdp.py │ │ │ ├── scheduler │ │ │ ├── __init__.py │ │ │ ├── cosine_lr.py │ │ │ ├── multistep_lr.py │ │ │ ├── plateau_lr.py │ │ │ ├── poly_lr.py │ │ │ ├── scheduler.py │ │ │ ├── scheduler_factory.py │ │ │ ├── step_lr.py │ │ │ └── tanh_lr.py │ │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── agc.py │ │ │ ├── checkpoint_saver.py │ │ │ ├── clip_grad.py │ │ │ ├── cuda.py │ │ │ ├── distributed.py │ │ │ ├── jit.py │ │ │ ├── log.py │ │ │ ├── metrics.py │ │ │ ├── misc.py │ │ │ ├── model.py │ │ │ ├── model_ema.py │ │ │ ├── random.py │ │ │ └── summary.py │ │ │ └── version.py │ └── dinov2 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── vision_transformer.cpython-310.pyc │ │ ├── layers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── attention.cpython-310.pyc │ │ │ ├── attention.cpython-39.pyc │ │ │ ├── block.cpython-310.pyc │ │ │ ├── block.cpython-39.pyc │ │ │ ├── dino_head.cpython-310.pyc │ │ │ ├── dino_head.cpython-39.pyc │ │ │ ├── drop_path.cpython-310.pyc │ │ │ ├── drop_path.cpython-39.pyc │ │ │ ├── layer_scale.cpython-310.pyc │ │ │ ├── layer_scale.cpython-39.pyc │ │ │ ├── mlp.cpython-310.pyc │ │ │ ├── mlp.cpython-39.pyc │ │ │ ├── patch_embed.cpython-310.pyc │ │ │ ├── patch_embed.cpython-39.pyc │ │ │ ├── swiglu_ffn.cpython-310.pyc │ │ │ └── swiglu_ffn.cpython-39.pyc │ │ ├── attention.py │ │ ├── block.py │ │ ├── dino_head.py │ │ ├── drop_path.py │ │ ├── layer_scale.py │ │ ├── mlp.py │ │ ├── patch_embed.py │ │ └── swiglu_ffn.py │ │ └── vision_transformer.py ├── patching_scripts │ └── tcga-wsi-report.sh ├── presets │ ├── bwh_biopsy.csv │ ├── bwh_resection.csv │ └── tcga.csv ├── utils │ ├── __init__.py │ ├── comm_utils.py │ ├── file_utils.py │ ├── hit_cache.py │ ├── pos_embed.py │ └── utils.py └── wsi_core │ ├── WholeSlideImage.py │ ├── batch_process_utils.py │ ├── util_classes.py │ └── wsi_utils.py ├── LICENSE ├── README.md ├── main_test_AllinOne.py ├── main_train_AllinOne.py ├── methodology.png ├── models ├── M2T_modules │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── att_model_r2gen.cpython-38.pyc │ │ ├── caption_model_r2gen.cpython-38.pyc │ │ ├── captioning_model.cpython-38.pyc │ │ ├── containers.cpython-38.pyc │ │ └── utils_r2gen.cpython-38.pyc │ ├── att_model_r2gen.py │ ├── beam_search │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── beam_search.cpython-38.pyc │ │ └── beam_search.py │ ├── caption_model_r2gen.py │ ├── captioning_model.py │ ├── containers.py │ ├── transformer │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── attention.cpython-38.pyc │ │ │ ├── decoders.cpython-38.pyc │ │ │ ├── encoders.cpython-38.pyc │ │ │ ├── transformer.cpython-38.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── attention.py │ │ ├── decoders.py │ │ ├── encoders.py │ │ ├── transformer.py │ │ └── utils.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── typing.cpython-38.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── typing.py │ │ └── utils.py │ └── utils_r2gen.py ├── M2Transformer.py ├── PlainTransformer.py ├── PlainTransformer_Modules.py ├── ShowTellModel.py ├── ShowTellModel_Modules.py ├── UpDownAttn.py ├── __pycache__ │ └── histgen_model.cpython-310.pyc ├── histgen_model.py ├── r2gen.py └── r2gen_cmn.py ├── modules ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── att_model.cpython-310.pyc │ ├── caption_model.cpython-310.pyc │ ├── dataloaders.cpython-310.pyc │ ├── datasets.cpython-310.pyc │ ├── histgen_module.cpython-310.pyc │ ├── loss.cpython-310.pyc │ ├── metrics.cpython-310.pyc │ ├── optimizers.cpython-310.pyc │ ├── tokenizers.cpython-310.pyc │ ├── trainer_AllinOne.cpython-310.pyc │ ├── utils.cpython-310.pyc │ └── visual_extractor.cpython-310.pyc ├── att_model.py ├── att_model_r2gen.py ├── caption_model.py ├── dataloaders.py ├── datasets.py ├── encoder_decoder.py ├── fc_model.py ├── histgen_module.py ├── loss.py ├── metrics.py ├── optimizers.py ├── tester_AllinOne.py ├── tokenizers.py ├── trainer_AllinOne.py ├── utils.py ├── visual_extractor.py └── wsi_token_select.py ├── modules_cmn ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── att_model.cpython-38.pyc │ ├── base_cmn.cpython-38.pyc │ ├── caption_model.cpython-38.pyc │ ├── dataloaders.cpython-38.pyc │ ├── datasets.cpython-38.pyc │ ├── encoder_decoder.cpython-38.pyc │ ├── loss.cpython-38.pyc │ ├── metrics.cpython-38.pyc │ ├── optimizers.cpython-38.pyc │ ├── tokenizers.cpython-38.pyc │ ├── trainer.cpython-38.pyc │ ├── trainer_r2gen.cpython-38.pyc │ ├── utils.cpython-38.pyc │ └── visual_extractor.cpython-38.pyc ├── att_model.py ├── base_cmn.py ├── caption_model.py ├── dataloaders.py ├── datasets.py ├── encoder_decoder.py ├── loss.py ├── metrics.py ├── optimizers.py ├── tester.py ├── tokenizers.py ├── trainer.py ├── trainer_r2gen.py ├── utils.py └── visual_extractor.py ├── pycocoevalcap ├── README.md ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ └── __init__.cpython-38.pyc ├── bleu │ ├── LICENSE │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── bleu.cpython-310.pyc │ │ ├── bleu.cpython-38.pyc │ │ ├── bleu_scorer.cpython-310.pyc │ │ └── bleu_scorer.cpython-38.pyc │ ├── bleu.py │ └── bleu_scorer.py ├── cider │ ├── __init__.py │ ├── cider.py │ └── cider_scorer.py ├── eval.py ├── license.txt ├── meteor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── meteor.cpython-310.pyc │ │ └── meteor.cpython-38.pyc │ ├── data │ │ └── paraphrase-en.gz │ ├── meteor-1.5.jar │ └── meteor.py ├── rouge │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── rouge.cpython-310.pyc │ │ └── rouge.cpython-38.pyc │ └── rouge.py └── tokenizer │ ├── __init__.py │ ├── ptbtokenizer.py │ └── stanford-corenlp-3.4.1.jar ├── records └── wsi_report.csv ├── replace_pt_path.py ├── requirements.yml ├── test_wsi_report.sh ├── train_wsi_report.sh └── train_wsi_report_baselines.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/.gitattributes -------------------------------------------------------------------------------- /CLAM/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/LICENSE.md -------------------------------------------------------------------------------- /CLAM/build_preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/build_preset.py -------------------------------------------------------------------------------- /CLAM/create_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/create_patches.py -------------------------------------------------------------------------------- /CLAM/create_patches_fp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/create_patches_fp.py -------------------------------------------------------------------------------- /CLAM/create_splits_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/create_splits_seq.py -------------------------------------------------------------------------------- /CLAM/dataset_csv/wsi-report-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/dataset_csv/wsi-report-data.csv -------------------------------------------------------------------------------- /CLAM/dataset_csv/wsi-report-data_no_duplicate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/dataset_csv/wsi-report-data_no_duplicate.csv -------------------------------------------------------------------------------- /CLAM/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLAM/datasets/dataset_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/datasets/dataset_generic.py -------------------------------------------------------------------------------- /CLAM/datasets/dataset_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/datasets/dataset_h5.py -------------------------------------------------------------------------------- /CLAM/datasets/wsi_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/datasets/wsi_dataset.py -------------------------------------------------------------------------------- /CLAM/extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/extract_features.py -------------------------------------------------------------------------------- /CLAM/extract_features_fp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/extract_features_fp.py -------------------------------------------------------------------------------- /CLAM/extract_scripts/tcga-wsi-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/extract_scripts/tcga-wsi-report.sh -------------------------------------------------------------------------------- /CLAM/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/ctranspath.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/ctranspath.pth -------------------------------------------------------------------------------- /CLAM/models/ckpts/dinov2_cpath_v1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/dinov2_cpath_v1.pth -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4.tar -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/LICENSE -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include timm/models/pruned/*.txt 2 | 3 | -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/PKG-INFO -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/README.md -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/auto_augment.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/config.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/constants.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/dataset.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/dataset_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/dataset_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/distributed_sampler.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/loader.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/mixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/mixup.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/class_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/class_map.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/constants.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_image_folder.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_image_in_tar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_image_in_tar.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_image_tar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_image_tar.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_tfds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/parsers/parser_tfds.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/random_erasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/random_erasing.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/real_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/real_labels.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/tf_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/tf_preprocessing.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/transforms.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/transforms_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/data/transforms_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/asymmetric_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/asymmetric_loss.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/binary_cross_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/binary_cross_entropy.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/cross_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/cross_entropy.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/jsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/loss/jsd.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/beit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/beit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/byoanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/byoanet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/byobnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/byobnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/cait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/cait.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/coat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/coat.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/convit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/convit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/convmixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/convmixer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/convnext.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/crossvit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/crossvit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/cspnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/cspnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/densenet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/dla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/dla.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/dpn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/efficientnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/efficientnet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/efficientnet_blocks.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/efficientnet_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/efficientnet_builder.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/features.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/fx_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/fx_features.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/ghostnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/ghostnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/gluon_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/gluon_resnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/gluon_xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/gluon_xception.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/hardcorenas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/hardcorenas.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/helpers.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/hrnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/hub.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/inception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/inception_resnet_v2.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/inception_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/inception_v3.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/inception_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/inception_v4.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/activations.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/activations_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/activations_jit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/activations_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/activations_me.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/adaptive_avgmax_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/adaptive_avgmax_pool.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/attention_pool2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/attention_pool2d.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/blur_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/blur_pool.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/bottleneck_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/bottleneck_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/cbam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/cbam.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/classifier.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/cond_conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/cond_conv2d.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/config.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/conv2d_same.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/conv2d_same.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/conv_bn_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/conv_bn_act.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/create_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/create_act.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/create_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/create_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/create_conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/create_conv2d.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/create_norm_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/create_norm_act.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/drop.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/eca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/eca.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/evo_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/evo_norm.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/gather_excite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/gather_excite.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/global_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/global_context.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/halo_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/halo_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/helpers.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/inplace_abn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/inplace_abn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/lambda_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/lambda_layer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/linear.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/median_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/median_pool.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/mixed_conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/mixed_conv2d.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/mlp.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/non_local_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/non_local_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/norm.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/norm_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/norm_act.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/padding.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/patch_embed.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/pool2d_same.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/pool2d_same.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/selective_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/selective_kernel.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/separable_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/separable_conv.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/space_to_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/space_to_depth.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/split_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/split_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/split_batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/split_batchnorm.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/squeeze_excite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/squeeze_excite.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/std_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/std_conv.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/test_time_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/test_time_pool.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/trace_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/trace_utils.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/layers/weight_init.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/levit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/levit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/mlp_mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/mlp_mixer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/mobilenetv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/mobilenetv3.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/nasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/nasnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/nest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/nest.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/nfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/nfnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pnasnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/ecaresnet101d_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/ecaresnet101d_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/ecaresnet50d_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/ecaresnet50d_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/efficientnet_b1_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/efficientnet_b1_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/efficientnet_b2_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/efficientnet_b2_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/efficientnet_b3_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/pruned/efficientnet_b3_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/registry.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/regnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/res2net.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/resnest.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/resnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/resnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/resnetv2.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/rexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/rexnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/selecsls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/selecsls.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/senet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/sknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/sknet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/swin_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/swin_transformer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/tnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/tnt.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/tresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/tresnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/twins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/twins.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/vgg.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/visformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/visformer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/vision_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/vision_transformer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/vision_transformer_hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/vision_transformer_hybrid.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/vovnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/vovnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/xception.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/xception_aligned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/xception_aligned.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/xcit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/models/xcit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adabelief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adabelief.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adafactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adafactor.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adahessian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adahessian.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adamp.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adamw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/adamw.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/lamb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/lamb.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/lars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/lars.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/lookahead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/lookahead.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/madgrad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/madgrad.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/nadam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/nadam.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/nvnovograd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/nvnovograd.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/optim_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/optim_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/radam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/radam.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/rmsprop_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/rmsprop_tf.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/sgdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/optim/sgdp.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/cosine_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/cosine_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/multistep_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/multistep_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/plateau_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/plateau_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/poly_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/poly_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/scheduler.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/scheduler_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/scheduler_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/step_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/step_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/tanh_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/scheduler/tanh_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/agc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/agc.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/checkpoint_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/checkpoint_saver.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/clip_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/clip_grad.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/cuda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/cuda.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/distributed.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/jit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/log.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/metrics.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/misc.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/model.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/model_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/model_ema.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/random.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/build/lib/timm/utils/summary.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/build/lib/timm/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.5.4' 2 | -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/dist/timm-0.5.4-py3.10.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/dist/timm-0.5.4-py3.10.egg -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/setup.cfg -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/setup.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm.egg-info/PKG-INFO -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm.egg-info/requires.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | timm 2 | -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/auto_augment.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/config.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/constants.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/dataset.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/dataset_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/dataset_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/distributed_sampler.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/loader.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/mixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/mixup.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/class_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/class_map.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/constants.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_image_folder.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_image_in_tar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_image_in_tar.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_image_tar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_image_tar.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_tfds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/parsers/parser_tfds.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/random_erasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/random_erasing.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/real_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/real_labels.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/tf_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/tf_preprocessing.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/transforms.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/data/transforms_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/data/transforms_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/loss/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/loss/asymmetric_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/loss/asymmetric_loss.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/loss/binary_cross_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/loss/binary_cross_entropy.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/loss/cross_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/loss/cross_entropy.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/loss/jsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/loss/jsd.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/beit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/beit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/byoanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/byoanet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/byobnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/byobnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/cait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/cait.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/coat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/coat.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/convit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/convit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/convmixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/convmixer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/convnext.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/crossvit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/crossvit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/cspnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/cspnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/densenet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/dla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/dla.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/dpn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/efficientnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/efficientnet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/efficientnet_blocks.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/efficientnet_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/efficientnet_builder.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/features.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/fx_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/fx_features.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/ghostnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/ghostnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/gluon_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/gluon_resnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/gluon_xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/gluon_xception.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/hardcorenas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/hardcorenas.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/helpers.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/hrnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/hub.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/inception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/inception_resnet_v2.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/inception_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/inception_v3.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/inception_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/inception_v4.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/activations.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/activations_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/activations_jit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/activations_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/activations_me.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/adaptive_avgmax_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/adaptive_avgmax_pool.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/attention_pool2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/attention_pool2d.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/blur_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/blur_pool.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/bottleneck_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/bottleneck_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/cbam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/cbam.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/classifier.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/cond_conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/cond_conv2d.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/config.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/conv2d_same.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/conv2d_same.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/conv_bn_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/conv_bn_act.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/create_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/create_act.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/create_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/create_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/create_conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/create_conv2d.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/create_norm_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/create_norm_act.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/drop.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/eca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/eca.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/evo_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/evo_norm.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/gather_excite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/gather_excite.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/global_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/global_context.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/halo_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/halo_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/helpers.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/inplace_abn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/inplace_abn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/lambda_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/lambda_layer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/linear.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/median_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/median_pool.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/mixed_conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/mixed_conv2d.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/mlp.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/non_local_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/non_local_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/norm.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/norm_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/norm_act.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/padding.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/patch_embed.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/pool2d_same.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/pool2d_same.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/selective_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/selective_kernel.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/separable_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/separable_conv.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/space_to_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/space_to_depth.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/split_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/split_attn.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/split_batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/split_batchnorm.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/squeeze_excite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/squeeze_excite.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/std_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/std_conv.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/test_time_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/test_time_pool.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/trace_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/trace_utils.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/layers/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/layers/weight_init.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/levit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/levit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/mlp_mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/mlp_mixer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/mobilenetv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/mobilenetv3.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/nasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/nasnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/nest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/nest.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/nfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/nfnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/pit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/pit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/pnasnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/ecaresnet101d_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/ecaresnet101d_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/ecaresnet50d_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/ecaresnet50d_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/efficientnet_b1_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/efficientnet_b1_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/efficientnet_b2_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/efficientnet_b2_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/efficientnet_b3_pruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/pruned/efficientnet_b3_pruned.txt -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/registry.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/regnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/res2net.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/resnest.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/resnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/resnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/resnetv2.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/rexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/rexnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/selecsls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/selecsls.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/senet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/sknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/sknet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/swin_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/swin_transformer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/tnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/tnt.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/tresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/tresnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/twins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/twins.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/vgg.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/visformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/visformer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/vision_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/vision_transformer.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/vision_transformer_hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/vision_transformer_hybrid.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/vovnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/vovnet.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/xception.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/xception_aligned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/xception_aligned.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/models/xcit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/models/xcit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/adabelief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/adabelief.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/adafactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/adafactor.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/adahessian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/adahessian.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/adamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/adamp.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/adamw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/adamw.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/lamb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/lamb.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/lars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/lars.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/lookahead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/lookahead.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/madgrad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/madgrad.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/nadam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/nadam.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/nvnovograd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/nvnovograd.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/optim_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/optim_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/radam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/radam.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/rmsprop_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/rmsprop_tf.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/optim/sgdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/optim/sgdp.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/cosine_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/cosine_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/multistep_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/multistep_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/plateau_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/plateau_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/poly_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/poly_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/scheduler.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/scheduler_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/scheduler_factory.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/step_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/step_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/scheduler/tanh_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/scheduler/tanh_lr.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/__init__.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/agc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/agc.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/checkpoint_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/checkpoint_saver.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/clip_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/clip_grad.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/cuda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/cuda.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/distributed.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/jit.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/log.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/metrics.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/misc.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/model.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/model_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/model_ema.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/random.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/utils/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/ckpts/timm-0.5.4/timm/utils/summary.py -------------------------------------------------------------------------------- /CLAM/models/ckpts/timm-0.5.4/timm/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.5.4' 2 | -------------------------------------------------------------------------------- /CLAM/models/dinov2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/__init__.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/__pycache__/vision_transformer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/__pycache__/vision_transformer.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__init__.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/attention.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/attention.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/attention.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/attention.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/block.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/block.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/block.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/block.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/dino_head.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/dino_head.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/dino_head.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/dino_head.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/drop_path.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/drop_path.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/drop_path.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/drop_path.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/layer_scale.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/layer_scale.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/layer_scale.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/layer_scale.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/mlp.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/mlp.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/mlp.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/mlp.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/patch_embed.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/patch_embed.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/patch_embed.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/patch_embed.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/swiglu_ffn.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/swiglu_ffn.cpython-310.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/__pycache__/swiglu_ffn.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/__pycache__/swiglu_ffn.cpython-39.pyc -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/attention.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/block.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/dino_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/dino_head.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/drop_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/drop_path.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/layer_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/layer_scale.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/mlp.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/patch_embed.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/layers/swiglu_ffn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/layers/swiglu_ffn.py -------------------------------------------------------------------------------- /CLAM/models/dinov2/vision_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/models/dinov2/vision_transformer.py -------------------------------------------------------------------------------- /CLAM/patching_scripts/tcga-wsi-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/patching_scripts/tcga-wsi-report.sh -------------------------------------------------------------------------------- /CLAM/presets/bwh_biopsy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/presets/bwh_biopsy.csv -------------------------------------------------------------------------------- /CLAM/presets/bwh_resection.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/presets/bwh_resection.csv -------------------------------------------------------------------------------- /CLAM/presets/tcga.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/presets/tcga.csv -------------------------------------------------------------------------------- /CLAM/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/utils/__init__.py -------------------------------------------------------------------------------- /CLAM/utils/comm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/utils/comm_utils.py -------------------------------------------------------------------------------- /CLAM/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/utils/file_utils.py -------------------------------------------------------------------------------- /CLAM/utils/hit_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/utils/hit_cache.py -------------------------------------------------------------------------------- /CLAM/utils/pos_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/utils/pos_embed.py -------------------------------------------------------------------------------- /CLAM/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/utils/utils.py -------------------------------------------------------------------------------- /CLAM/wsi_core/WholeSlideImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/wsi_core/WholeSlideImage.py -------------------------------------------------------------------------------- /CLAM/wsi_core/batch_process_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/wsi_core/batch_process_utils.py -------------------------------------------------------------------------------- /CLAM/wsi_core/util_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/wsi_core/util_classes.py -------------------------------------------------------------------------------- /CLAM/wsi_core/wsi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/CLAM/wsi_core/wsi_utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/README.md -------------------------------------------------------------------------------- /main_test_AllinOne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/main_test_AllinOne.py -------------------------------------------------------------------------------- /main_train_AllinOne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/main_train_AllinOne.py -------------------------------------------------------------------------------- /methodology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/methodology.png -------------------------------------------------------------------------------- /models/M2T_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/__init__.py -------------------------------------------------------------------------------- /models/M2T_modules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/__pycache__/att_model_r2gen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/__pycache__/att_model_r2gen.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/__pycache__/caption_model_r2gen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/__pycache__/caption_model_r2gen.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/__pycache__/captioning_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/__pycache__/captioning_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/__pycache__/containers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/__pycache__/containers.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/__pycache__/utils_r2gen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/__pycache__/utils_r2gen.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/att_model_r2gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/att_model_r2gen.py -------------------------------------------------------------------------------- /models/M2T_modules/beam_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/beam_search/__init__.py -------------------------------------------------------------------------------- /models/M2T_modules/beam_search/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/beam_search/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/beam_search/__pycache__/beam_search.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/beam_search/__pycache__/beam_search.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/beam_search/beam_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/beam_search/beam_search.py -------------------------------------------------------------------------------- /models/M2T_modules/caption_model_r2gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/caption_model_r2gen.py -------------------------------------------------------------------------------- /models/M2T_modules/captioning_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/captioning_model.py -------------------------------------------------------------------------------- /models/M2T_modules/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/containers.py -------------------------------------------------------------------------------- /models/M2T_modules/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/__init__.py -------------------------------------------------------------------------------- /models/M2T_modules/transformer/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/transformer/__pycache__/attention.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/__pycache__/attention.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/transformer/__pycache__/decoders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/__pycache__/decoders.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/transformer/__pycache__/encoders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/__pycache__/encoders.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/transformer/__pycache__/transformer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/__pycache__/transformer.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/transformer/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/transformer/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/attention.py -------------------------------------------------------------------------------- /models/M2T_modules/transformer/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/decoders.py -------------------------------------------------------------------------------- /models/M2T_modules/transformer/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/encoders.py -------------------------------------------------------------------------------- /models/M2T_modules/transformer/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/transformer.py -------------------------------------------------------------------------------- /models/M2T_modules/transformer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/transformer/utils.py -------------------------------------------------------------------------------- /models/M2T_modules/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/utils/__init__.py -------------------------------------------------------------------------------- /models/M2T_modules/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/utils/__pycache__/typing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/utils/__pycache__/typing.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/utils/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/utils/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /models/M2T_modules/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/utils/typing.py -------------------------------------------------------------------------------- /models/M2T_modules/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/utils/utils.py -------------------------------------------------------------------------------- /models/M2T_modules/utils_r2gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2T_modules/utils_r2gen.py -------------------------------------------------------------------------------- /models/M2Transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/M2Transformer.py -------------------------------------------------------------------------------- /models/PlainTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/PlainTransformer.py -------------------------------------------------------------------------------- /models/PlainTransformer_Modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/PlainTransformer_Modules.py -------------------------------------------------------------------------------- /models/ShowTellModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/ShowTellModel.py -------------------------------------------------------------------------------- /models/ShowTellModel_Modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/ShowTellModel_Modules.py -------------------------------------------------------------------------------- /models/UpDownAttn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/UpDownAttn.py -------------------------------------------------------------------------------- /models/__pycache__/histgen_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/__pycache__/histgen_model.cpython-310.pyc -------------------------------------------------------------------------------- /models/histgen_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/histgen_model.py -------------------------------------------------------------------------------- /models/r2gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/r2gen.py -------------------------------------------------------------------------------- /models/r2gen_cmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/models/r2gen_cmn.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/att_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/att_model.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/caption_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/caption_model.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/dataloaders.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/dataloaders.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/datasets.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/datasets.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/histgen_module.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/histgen_module.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/loss.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/loss.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/metrics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/metrics.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/optimizers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/optimizers.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/tokenizers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/tokenizers.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/trainer_AllinOne.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/trainer_AllinOne.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/visual_extractor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/__pycache__/visual_extractor.cpython-310.pyc -------------------------------------------------------------------------------- /modules/att_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/att_model.py -------------------------------------------------------------------------------- /modules/att_model_r2gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/att_model_r2gen.py -------------------------------------------------------------------------------- /modules/caption_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/caption_model.py -------------------------------------------------------------------------------- /modules/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/dataloaders.py -------------------------------------------------------------------------------- /modules/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/datasets.py -------------------------------------------------------------------------------- /modules/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/encoder_decoder.py -------------------------------------------------------------------------------- /modules/fc_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/fc_model.py -------------------------------------------------------------------------------- /modules/histgen_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/histgen_module.py -------------------------------------------------------------------------------- /modules/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/loss.py -------------------------------------------------------------------------------- /modules/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/metrics.py -------------------------------------------------------------------------------- /modules/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/optimizers.py -------------------------------------------------------------------------------- /modules/tester_AllinOne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/tester_AllinOne.py -------------------------------------------------------------------------------- /modules/tokenizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/tokenizers.py -------------------------------------------------------------------------------- /modules/trainer_AllinOne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/trainer_AllinOne.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/utils.py -------------------------------------------------------------------------------- /modules/visual_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/visual_extractor.py -------------------------------------------------------------------------------- /modules/wsi_token_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules/wsi_token_select.py -------------------------------------------------------------------------------- /modules_cmn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules_cmn/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/att_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/att_model.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/base_cmn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/base_cmn.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/caption_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/caption_model.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/dataloaders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/dataloaders.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/datasets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/datasets.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/encoder_decoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/encoder_decoder.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/optimizers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/optimizers.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/tokenizers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/tokenizers.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/trainer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/trainer.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/trainer_r2gen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/trainer_r2gen.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/__pycache__/visual_extractor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/__pycache__/visual_extractor.cpython-38.pyc -------------------------------------------------------------------------------- /modules_cmn/att_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/att_model.py -------------------------------------------------------------------------------- /modules_cmn/base_cmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/base_cmn.py -------------------------------------------------------------------------------- /modules_cmn/caption_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/caption_model.py -------------------------------------------------------------------------------- /modules_cmn/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/dataloaders.py -------------------------------------------------------------------------------- /modules_cmn/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/datasets.py -------------------------------------------------------------------------------- /modules_cmn/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/encoder_decoder.py -------------------------------------------------------------------------------- /modules_cmn/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/loss.py -------------------------------------------------------------------------------- /modules_cmn/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/metrics.py -------------------------------------------------------------------------------- /modules_cmn/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/optimizers.py -------------------------------------------------------------------------------- /modules_cmn/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/tester.py -------------------------------------------------------------------------------- /modules_cmn/tokenizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/tokenizers.py -------------------------------------------------------------------------------- /modules_cmn/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/trainer.py -------------------------------------------------------------------------------- /modules_cmn/trainer_r2gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/trainer_r2gen.py -------------------------------------------------------------------------------- /modules_cmn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/utils.py -------------------------------------------------------------------------------- /modules_cmn/visual_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/modules_cmn/visual_extractor.py -------------------------------------------------------------------------------- /pycocoevalcap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/README.md -------------------------------------------------------------------------------- /pycocoevalcap/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' -------------------------------------------------------------------------------- /pycocoevalcap/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /pycocoevalcap/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pycocoevalcap/bleu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/LICENSE -------------------------------------------------------------------------------- /pycocoevalcap/bleu/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' -------------------------------------------------------------------------------- /pycocoevalcap/bleu/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /pycocoevalcap/bleu/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pycocoevalcap/bleu/__pycache__/bleu.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/__pycache__/bleu.cpython-310.pyc -------------------------------------------------------------------------------- /pycocoevalcap/bleu/__pycache__/bleu.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/__pycache__/bleu.cpython-38.pyc -------------------------------------------------------------------------------- /pycocoevalcap/bleu/__pycache__/bleu_scorer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/__pycache__/bleu_scorer.cpython-310.pyc -------------------------------------------------------------------------------- /pycocoevalcap/bleu/__pycache__/bleu_scorer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/__pycache__/bleu_scorer.cpython-38.pyc -------------------------------------------------------------------------------- /pycocoevalcap/bleu/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/bleu.py -------------------------------------------------------------------------------- /pycocoevalcap/bleu/bleu_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/bleu/bleu_scorer.py -------------------------------------------------------------------------------- /pycocoevalcap/cider/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /pycocoevalcap/cider/cider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/cider/cider.py -------------------------------------------------------------------------------- /pycocoevalcap/cider/cider_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/cider/cider_scorer.py -------------------------------------------------------------------------------- /pycocoevalcap/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/eval.py -------------------------------------------------------------------------------- /pycocoevalcap/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/license.txt -------------------------------------------------------------------------------- /pycocoevalcap/meteor/__init__.py: -------------------------------------------------------------------------------- 1 | from .meteor import * -------------------------------------------------------------------------------- /pycocoevalcap/meteor/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/meteor/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /pycocoevalcap/meteor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/meteor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pycocoevalcap/meteor/__pycache__/meteor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/meteor/__pycache__/meteor.cpython-310.pyc -------------------------------------------------------------------------------- /pycocoevalcap/meteor/__pycache__/meteor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/meteor/__pycache__/meteor.cpython-38.pyc -------------------------------------------------------------------------------- /pycocoevalcap/meteor/data/paraphrase-en.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/meteor/data/paraphrase-en.gz -------------------------------------------------------------------------------- /pycocoevalcap/meteor/meteor-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/meteor/meteor-1.5.jar -------------------------------------------------------------------------------- /pycocoevalcap/meteor/meteor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/meteor/meteor.py -------------------------------------------------------------------------------- /pycocoevalcap/rouge/__init__.py: -------------------------------------------------------------------------------- 1 | from .rouge import * -------------------------------------------------------------------------------- /pycocoevalcap/rouge/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/rouge/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /pycocoevalcap/rouge/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/rouge/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pycocoevalcap/rouge/__pycache__/rouge.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/rouge/__pycache__/rouge.cpython-310.pyc -------------------------------------------------------------------------------- /pycocoevalcap/rouge/__pycache__/rouge.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/rouge/__pycache__/rouge.cpython-38.pyc -------------------------------------------------------------------------------- /pycocoevalcap/rouge/rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/rouge/rouge.py -------------------------------------------------------------------------------- /pycocoevalcap/tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'hfang' 2 | -------------------------------------------------------------------------------- /pycocoevalcap/tokenizer/ptbtokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/tokenizer/ptbtokenizer.py -------------------------------------------------------------------------------- /pycocoevalcap/tokenizer/stanford-corenlp-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/pycocoevalcap/tokenizer/stanford-corenlp-3.4.1.jar -------------------------------------------------------------------------------- /records/wsi_report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/records/wsi_report.csv -------------------------------------------------------------------------------- /replace_pt_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/replace_pt_path.py -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/requirements.yml -------------------------------------------------------------------------------- /test_wsi_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/test_wsi_report.sh -------------------------------------------------------------------------------- /train_wsi_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/train_wsi_report.sh -------------------------------------------------------------------------------- /train_wsi_report_baselines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddavid4real/HistGen/HEAD/train_wsi_report_baselines.sh --------------------------------------------------------------------------------