Question on Tensorflow Estimator practices, should Tensorflow Operations be conducted in `my_model`, or elsewhere?
问题 I am getting an error when I try to convert my model to use a Tensorflow Estimator, and it think it's due to my_model not having an active session in place. So should Tensorflow operations be conducted outside of my_model ? For example, I am getting an error by the way I currently define it: def my_model( features, labels, mode, params): train_dataset = features train_labels = labels batch_sizeE=params["batch_size"] embedding_sizeE=params["embedding_size"] num_inputsE=params["num_inputs"] num