├── CLIC_auto_dataset.py ├── CLIC_dataset.py ├── Images ├── Curve.png ├── Flowchart.png ├── Mode_sele.png ├── Opti_vis.png ├── Vis.png └── stitching.png ├── Kodak_testin_auto_encoder.py ├── LICENSE ├── Meter.py ├── Optical_flow_master └── a.txt ├── RAFT_test.py ├── README.md ├── Testing.py ├── Testing_new.py ├── VTL_gain_unit.py ├── VTL_testing_detector.py ├── VTL_unchanged_blocks.py ├── __pycache__ ├── CLIC_dataset.cpython-38.pyc ├── Meter.cpython-38.pyc ├── RAFT_test.cpython-38.pyc ├── datasets.cpython-38.pyc ├── model_convlstm.cpython-38.pyc └── model_rev_raft_new_mod.cpython-38.pyc ├── configs ├── a.txt ├── config_raft_convLSTM.json ├── pixelcnn_1conv.json └── pixelsnail_1conv.json ├── convert_to_png.py ├── datasets.py ├── metric.py ├── model_auto_encoder.py ├── model_org_raft_new_mod.py ├── model_org_sim_entr.py ├── model_org_sim_entr_detector.py ├── model_org_sim_entr_gain.py ├── model_rev_raft.py ├── model_rev_raft_new_mod.py ├── model_rev_raft_sim_entr.py ├── models ├── GDN.py ├── __init__.py ├── __pycache__ │ ├── GDN.cpython-36.pyc │ ├── GDN.cpython-37.pyc │ ├── GDN.cpython-38.pyc │ ├── PixelCNN.cpython-36.pyc │ ├── PixelCNN.cpython-37.pyc │ ├── PixelCNN.cpython-38.pyc │ ├── PixelSNAIL.cpython-36.pyc │ ├── PixelSNAIL.cpython-37.pyc │ ├── PixelSNAIL.cpython-38.pyc │ ├── Scales_decoder.cpython-37.pyc │ ├── Scales_encoder.cpython-37.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── a.txt │ ├── analysis_prior.cpython-36.pyc │ ├── analysis_prior.cpython-37.pyc │ ├── analysis_prior.cpython-38.pyc │ ├── bit_estimator.cpython-36.pyc │ ├── bit_estimator.cpython-37.pyc │ ├── bit_estimator.cpython-38.pyc │ ├── common.cpython-37.pyc │ ├── common.cpython-38.pyc │ ├── context_model.cpython-36.pyc │ ├── context_model.cpython-37.pyc │ ├── context_model.cpython-38.pyc │ ├── entropy_parameters.cpython-36.pyc │ ├── entropy_parameters.cpython-37.pyc │ ├── entropy_parameters.cpython-38.pyc │ ├── feature_decoder.cpython-36.pyc │ ├── feature_decoder.cpython-37.pyc │ ├── feature_decoder.cpython-38.pyc │ ├── feature_decoder_ResNGDN.cpython-37.pyc │ ├── feature_decoder_attention.cpython-37.pyc │ ├── feature_decoder_attention.cpython-38.pyc │ ├── feature_decoder_deep_attention.cpython-37.pyc │ ├── feature_deep_decoder.cpython-37.pyc │ ├── feature_deep_decoder.cpython-38.pyc │ ├── feature_deep_decoder_res.cpython-37.pyc │ ├── feature_deep_decoder_res.cpython-38.pyc │ ├── feature_deep_encoder.cpython-37.pyc │ ├── feature_deep_encoder.cpython-38.pyc │ ├── feature_deep_encoder_res.cpython-37.pyc │ ├── feature_deep_encoder_res.cpython-38.pyc │ ├── feature_encoder.cpython-36.pyc │ ├── feature_encoder.cpython-37.pyc │ ├── feature_encoder.cpython-38.pyc │ ├── feature_encoder_ResNGDN.cpython-37.pyc │ ├── feature_encoder_attention.cpython-37.pyc │ ├── feature_encoder_attention.cpython-38.pyc │ ├── feature_encoder_deep_attention.cpython-37.pyc │ ├── ms_ssim_torch.cpython-36.pyc │ ├── ms_ssim_torch.cpython-37.pyc │ ├── ms_ssim_torch.cpython-38.pyc │ ├── spatial_pred.cpython-36.pyc │ ├── spatial_pred.cpython-37.pyc │ ├── spatial_pred.cpython-38.pyc │ ├── synthesis_prior.cpython-36.pyc │ ├── synthesis_prior.cpython-37.pyc │ ├── synthesis_prior.cpython-38.pyc │ ├── temp_raft_pred.cpython-37.pyc │ ├── temp_raft_pred.cpython-38.pyc │ ├── temp_res_convlstm_pred.cpython-37.pyc │ ├── temporal_pred.cpython-36.pyc │ ├── temporal_pred.cpython-37.pyc │ └── temporal_pred.cpython-38.pyc ├── a.txt ├── analysis_prior.py ├── bit_estimator.py ├── common.py ├── context_model.py ├── entropy_parameters.py ├── feature_deep_decoder.py ├── feature_deep_decoder_res.py ├── feature_deep_encoder.py ├── feature_deep_encoder_res.py ├── ms_ssim_torch.py ├── synthesis_prior.py ├── temp_raft_pred.py ├── temp_res_convlstm_pred.py ├── temporal_pred.py └── vit.py ├── nohup.out ├── readme.txt ├── train_new_model.py ├── train_new_model_auto_encoder.py └── train_rev.py /CLIC_auto_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/CLIC_auto_dataset.py -------------------------------------------------------------------------------- /CLIC_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/CLIC_dataset.py -------------------------------------------------------------------------------- /Images/Curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Images/Curve.png -------------------------------------------------------------------------------- /Images/Flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Images/Flowchart.png -------------------------------------------------------------------------------- /Images/Mode_sele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Images/Mode_sele.png -------------------------------------------------------------------------------- /Images/Opti_vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Images/Opti_vis.png -------------------------------------------------------------------------------- /Images/Vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Images/Vis.png -------------------------------------------------------------------------------- /Images/stitching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Images/stitching.png -------------------------------------------------------------------------------- /Kodak_testin_auto_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Kodak_testin_auto_encoder.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/LICENSE -------------------------------------------------------------------------------- /Meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Meter.py -------------------------------------------------------------------------------- /Optical_flow_master/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /RAFT_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/RAFT_test.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/README.md -------------------------------------------------------------------------------- /Testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Testing.py -------------------------------------------------------------------------------- /Testing_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/Testing_new.py -------------------------------------------------------------------------------- /VTL_gain_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/VTL_gain_unit.py -------------------------------------------------------------------------------- /VTL_testing_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/VTL_testing_detector.py -------------------------------------------------------------------------------- /VTL_unchanged_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/VTL_unchanged_blocks.py -------------------------------------------------------------------------------- /__pycache__/CLIC_dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/__pycache__/CLIC_dataset.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/Meter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/__pycache__/Meter.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/RAFT_test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/__pycache__/RAFT_test.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/datasets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/__pycache__/datasets.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/model_convlstm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/__pycache__/model_convlstm.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/model_rev_raft_new_mod.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/__pycache__/model_rev_raft_new_mod.cpython-38.pyc -------------------------------------------------------------------------------- /configs/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /configs/config_raft_convLSTM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/configs/config_raft_convLSTM.json -------------------------------------------------------------------------------- /configs/pixelcnn_1conv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/configs/pixelcnn_1conv.json -------------------------------------------------------------------------------- /configs/pixelsnail_1conv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/configs/pixelsnail_1conv.json -------------------------------------------------------------------------------- /convert_to_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/convert_to_png.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/datasets.py -------------------------------------------------------------------------------- /metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/metric.py -------------------------------------------------------------------------------- /model_auto_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/model_auto_encoder.py -------------------------------------------------------------------------------- /model_org_raft_new_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/model_org_raft_new_mod.py -------------------------------------------------------------------------------- /model_org_sim_entr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/model_org_sim_entr.py -------------------------------------------------------------------------------- /model_org_sim_entr_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/model_org_sim_entr_detector.py -------------------------------------------------------------------------------- /model_org_sim_entr_gain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/model_org_sim_entr_gain.py -------------------------------------------------------------------------------- /model_rev_raft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/model_rev_raft.py -------------------------------------------------------------------------------- /model_rev_raft_new_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/model_rev_raft_new_mod.py -------------------------------------------------------------------------------- /model_rev_raft_sim_entr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/model_rev_raft_sim_entr.py -------------------------------------------------------------------------------- /models/GDN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/GDN.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/GDN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/GDN.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/GDN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/GDN.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/GDN.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/GDN.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/PixelCNN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/PixelCNN.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/PixelCNN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/PixelCNN.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/PixelCNN.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/PixelCNN.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/PixelSNAIL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/PixelSNAIL.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/PixelSNAIL.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/PixelSNAIL.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/PixelSNAIL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/PixelSNAIL.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/Scales_decoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/Scales_decoder.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/Scales_encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/Scales_encoder.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/__pycache__/analysis_prior.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/analysis_prior.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/analysis_prior.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/analysis_prior.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/analysis_prior.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/analysis_prior.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/bit_estimator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/bit_estimator.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/bit_estimator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/bit_estimator.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/bit_estimator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/bit_estimator.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/common.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/context_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/context_model.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/context_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/context_model.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/context_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/context_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/entropy_parameters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/entropy_parameters.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/entropy_parameters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/entropy_parameters.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/entropy_parameters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/entropy_parameters.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_decoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_decoder.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_decoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_decoder.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_decoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_decoder.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_decoder_ResNGDN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_decoder_ResNGDN.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_decoder_attention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_decoder_attention.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_decoder_attention.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_decoder_attention.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_decoder_deep_attention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_decoder_deep_attention.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_deep_decoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_deep_decoder.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_deep_decoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_deep_decoder.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_deep_decoder_res.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_deep_decoder_res.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_deep_decoder_res.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_deep_decoder_res.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_deep_encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_deep_encoder.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_deep_encoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_deep_encoder.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_deep_encoder_res.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_deep_encoder_res.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_deep_encoder_res.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_deep_encoder_res.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_encoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_encoder.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_encoder.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_encoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_encoder.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_encoder_ResNGDN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_encoder_ResNGDN.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_encoder_attention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_encoder_attention.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_encoder_attention.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_encoder_attention.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/feature_encoder_deep_attention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/feature_encoder_deep_attention.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/ms_ssim_torch.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/ms_ssim_torch.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/ms_ssim_torch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/ms_ssim_torch.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/ms_ssim_torch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/ms_ssim_torch.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/spatial_pred.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/spatial_pred.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/spatial_pred.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/spatial_pred.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/spatial_pred.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/spatial_pred.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/synthesis_prior.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/synthesis_prior.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/synthesis_prior.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/synthesis_prior.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/synthesis_prior.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/synthesis_prior.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/temp_raft_pred.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/temp_raft_pred.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/temp_raft_pred.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/temp_raft_pred.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/temp_res_convlstm_pred.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/temp_res_convlstm_pred.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/temporal_pred.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/temporal_pred.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/temporal_pred.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/temporal_pred.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/temporal_pred.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/__pycache__/temporal_pred.cpython-38.pyc -------------------------------------------------------------------------------- /models/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/analysis_prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/analysis_prior.py -------------------------------------------------------------------------------- /models/bit_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/bit_estimator.py -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/common.py -------------------------------------------------------------------------------- /models/context_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/context_model.py -------------------------------------------------------------------------------- /models/entropy_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/entropy_parameters.py -------------------------------------------------------------------------------- /models/feature_deep_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/feature_deep_decoder.py -------------------------------------------------------------------------------- /models/feature_deep_decoder_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/feature_deep_decoder_res.py -------------------------------------------------------------------------------- /models/feature_deep_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/feature_deep_encoder.py -------------------------------------------------------------------------------- /models/feature_deep_encoder_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/feature_deep_encoder_res.py -------------------------------------------------------------------------------- /models/ms_ssim_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/ms_ssim_torch.py -------------------------------------------------------------------------------- /models/synthesis_prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/synthesis_prior.py -------------------------------------------------------------------------------- /models/temp_raft_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/temp_raft_pred.py -------------------------------------------------------------------------------- /models/temp_res_convlstm_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/temp_res_convlstm_pred.py -------------------------------------------------------------------------------- /models/temporal_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/temporal_pred.py -------------------------------------------------------------------------------- /models/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/models/vit.py -------------------------------------------------------------------------------- /nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/nohup.out -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/readme.txt -------------------------------------------------------------------------------- /train_new_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/train_new_model.py -------------------------------------------------------------------------------- /train_new_model_auto_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/train_new_model_auto_encoder.py -------------------------------------------------------------------------------- /train_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BowenL0218/MMVC_video_codec/HEAD/train_rev.py --------------------------------------------------------------------------------