Created
November 8, 2018 18:46
-
-
Save mbednarski/576ed496810c9d9fe084623099519c81 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""MLP - machine-learning-production | |
Usage: | |
mlp.py train <dataset-dir> <model-file> [--vocab-size=<vocab-size>] | |
mlp.py ask <model-file> <question> | |
mlp.py (-h | --help) | |
Arguments: | |
<dataset-dir> Directory with dataset. | |
<model-file> Serialized model file. | |
<question> Text to be classified. | |
Options: | |
--vocab-size=<vocab-size> Vocabulary size. [default: 10000] | |
-h --help Show this screen. | |
""" | |
from docopt import docopt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment