stock-trading-ml icon indicating copy to clipboard operation
stock-trading-ml copied to clipboard

Tensorflow 'set_random_seed' issue : SOLVED

Open linuxdebian opened this issue 4 years ago • 0 comments

Make the following changes in "basic_model.py" and "tech_ind_model.py" :

FROM

from tensorflow import set_random_seed set_random_seed(4)

TO

import tensorflow tensorflow.random.set_seed(4)

linuxdebian avatar Feb 13 '21 11:02 linuxdebian