LWT3437 / LANet

Source Code for “LANet: A Luminance Attentive Network with Scale Invariance for HDR Image Reconstruction” (PG 2021)
16 stars 3 forks source link

Versioning issues with tensorflow #1

Closed TIM-ysh closed 2 years ago

TIM-ysh commented 2 years ago

WARNING:tensorflow:From j:\TIM\HDR\ITM_method\LANET\LANet-main\LANet-main\LANet\src\model.py:161: start_queue_runners (from tensorflow.python.training.queue_runner_impl) is deprecated and will be removed in a future version.

Because this function was deprecated it caused the program to hang and not run. Is there any way to fix this? If you can answer this, thank you for your answer.

LWT3437 commented 2 years ago

@godnessTIM Thank you for taking an interest in our work. The warning wouldn’t cause running error, it should be caused by other reasons.

In addition, if my memory is correct, the 'start_queue_runners' function will only run in training mode. Are you trying to use training mode? If so, I suggest not to do this.

This code was written a long time ago and is now outdated and difficult to maintain, so we didn't provide a guide on how to retrain. If you intend to train your own model, we recommend re-implementing it with a more advanced framework.

TIM-ysh commented 2 years ago

Thank you for your answer.