Download the pre-trained weights of vgg16 and vgg16_places365_weights
Download the training data of HDR-Synth and HDR-Real
Training of the Dequantization-Net
python train_dequantization_net.py --logdir_path [output_deq_ckpt_path] --hdr_prefix [hdr_synth_training_data_path]
Training of the Linearization-Net
python train_linearization_net.py --logdir_path [output_lin_ckpt_path] --hdr_prefix [hdr_synth_training_data_path]
Training of the Hallucination-Net
python train_hallucination_net.py --logdir_path [output_hal_ckpt_path] --hdr_prefix [hdr_synth_training_data_path]
Joint training of the entire pipeline and Refinement-Net
Convert the real HDR-jpg paired data into tfrecords for training.
python convert_to_tf_record.py
Joint training of the entire pipeline and Refinement-Net
python finetune_real_dataset.py --logdir_path [output_hal_ckpt_path] --tfrecords_path [converted_tfrecords_path] --deq_ckpt [pretrained_deq_ckpt] --lin_ckpt [pretrained_lin_ckpt] --deq_ckpt [pretrained_hal_ckpt]