def main()

in recommended-item-search/softmax_main.py [0:0]


def main(_):
  remove_artifacts()
  estimator = tf.estimator.Estimator(
      model_fn=softmax_model.model_fn,
      params=get_hyperparams(),
      config=get_run_config())
  tf.estimator.train_and_evaluate(
      estimator=estimator,
      train_spec=get_train_spec(),
      eval_spec=get_eval_spec())