diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -12,7 +12,9 @@ A simple neural network maker developed to train json data ``` git clone https://git.juanvalencia.xyz/ml cd ml +make sudo make install +make install_config ``` ## Uninstall @@ -22,16 +24,18 @@ sudo make uninstall ``` ## Usage + ``` Usage: ml train [Options] JSON_FILE or: ml predict [-o FILE] FILE -Train and predict json data Options: -h, --help Show this message -a, --alpha=ALPHA Learning rate (only works with train) -e, --epochs=EPOCHS Epochs to train the model (only works with train) -o, --output=FILE Output file (only works with predict) + -c, --config=FILE Configuration filepath [default=~/.config/ml/ml.cfg] + Examples: $ ml train -e 150 -a 1e-4 housing.json |