#!/opt/local/Library/Frameworks/Python.framework/Versions/3.9/bin/python3.9
"""t2t-exporter."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

from tensor2tensor.serving import export

import tensorflow as tf

def main(argv):
  export.main(argv)


if __name__ == "__main__":
  tf.logging.set_verbosity(tf.logging.INFO)
  tf.app.run()
