stock-trading-ml
stock-trading-ml copied to clipboard
Tensorflow 'set_random_seed' issue : SOLVED
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)