diff options
author | jvech <jmvalenciae@unal.edu.co> | 2024-07-26 09:47:52 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2024-07-26 09:47:52 -0500 |
commit | ce0001538820d819bf965a24ffbb6f6e6269859c (patch) | |
tree | 4ae4de19596d8771ac0b4757f285e4f11fd94519 /doc/ml.1 | |
parent | d45581c0b067b9526ce88ba9d3a1bd861f4ff7cc (diff) |
add: file_write() implemented
things implemented:
- CLI option --only-out added
- CLI option --format works more intuitively
- csv tsv and json output support
Diffstat (limited to 'doc/ml.1')
-rw-r--r-- | doc/ml.1 | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -7,7 +7,7 @@ ml \- manual page for ml 0.1 \fI\,train \/\fR[\fI\,Options\/\fR] \fI\,FILE\/\fR .br .B ml -\fI\,predict \/\fR[\fI\,-o FILE\/\fR] \fI\,FILE\/\fR +\fI\,predict \/\fR[\fI\,-Ohv\/\fR] [\fI\,-f FORMAT\/\fR] [\fI\,-o FILE\/\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. @@ -17,7 +17,7 @@ it is suitable to work on classification problems. Show this message .TP \fB\-f\fR, \fB\-\-format\fR=\fI\,FORMAT\/\fR -File input and/or output format +Define input or output FILE format if needed .TP \fB\-a\fR, \fB\-\-alpha\fR=\fI\,ALPHA\/\fR Learning rate (only works with train) @@ -28,6 +28,9 @@ Epochs to train the model (only works with train) \fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR Output file (only works with predict) .TP +\fB\-O\fR, \fB\-\-only\-out\fR +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] .SH FILES |