(argv=None)
| 189 | print("Saved model checkpoint to {}\n".format(path)) |
| 190 | |
| 191 | def main(argv=None): |
| 192 | x_train, y_train, vocab_processor, x_dev, y_dev = preprocess() |
| 193 | train(x_train, y_train, vocab_processor, x_dev, y_dev) |
| 194 | |
| 195 | if __name__ == '__main__': |
| 196 | tf.app.run() |
nothing calls this directly
no test coverage detected