diff options
author | jvech <jmvalenciae@unal.edu.co> | 2024-08-06 14:29:42 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2024-08-06 14:29:42 -0500 |
commit | ebd66e65bf18574fa8905d7b0ae3fbb85bfc9e06 (patch) | |
tree | da128cfa54b20abbff670c89278f0005b0f128cb /doc/ml.1 | |
parent | ce0001538820d819bf965a24ffbb6f6e6269859c (diff) |
add: file parsing improved
Things implemented:
* json_read() must die if the key does not exist or the value type is wrong.
* on predict command input should be shown exactly the same
* float precision CLI option should be added.
Diffstat (limited to 'doc/ml.1')
-rw-r--r-- | doc/ml.1 | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,13 +1,13 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3. -.TH ML "1" "July 2024" "ml 0.1" "User Commands" +.TH ML "1" "August 2024" "ml 0.2.0" "User Commands" .SH NAME -ml \- manual page for ml 0.1 +ml \- manual page for ml 0.2.0 .SH SYNOPSIS .B ml \fI\,train \/\fR[\fI\,Options\/\fR] \fI\,FILE\/\fR .br .B ml -\fI\,predict \/\fR[\fI\,-Ohv\/\fR] [\fI\,-f FORMAT\/\fR] [\fI\,-o FILE\/\fR] \fI\,FILE\/\fR +\fI\,predict \/\fR[\fI\,-Ohv\/\fR] [\fI\,-f FORMAT\/\fR] [\fI\,-o FILE\/\fR] [\fI\,-p INT\/\fR] \fI\,FILE\/\fR .SH DESCRIPTION ml is a simple neural network maker made to train and predict JSON data, it is suitable to work on classification problems. @@ -33,6 +33,10 @@ Don't show input fields (only works with predict) .TP \fB\-c\fR, \fB\-\-config\fR=\fI\,FILE\/\fR Configuration filepath [default=~/.config/ml/ml.cfg] +.TP +\fB\-p\fR, \fB\-\-precision\fR=\fI\,INT\/\fR +Decimals output precision (only works with predict) +[default=auto] .SH FILES ~/.config/ml/ml.cfg File path for network configuration, here you can setup the network |