1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3.
.TH ML "1" "October 2023" "ml 0.1" "User Commands"
.SH NAME
ml \- manual page for ml 0.1
.SH SYNOPSIS
.B ml
\fI\,train \/\fR[\fI\,Options\/\fR] \fI\,JSON_FILE\/\fR
.br
.B ml
\fI\,predict \/\fR[\fI\,-o FILE\/\fR] \fI\,FILE\/\fR
.SH DESCRIPTION
Train and predict json data
.SH OPTIONS
.TP
\fB\-h\fR, \fB\-\-help\fR
Show this message
.TP
\fB\-a\fR, \fB\-\-alpha\fR=\fI\,ALPHA\/\fR
Learning rate (only works with train)
.TP
\fB\-e\fR, \fB\-\-epochs\fR=\fI\,EPOCHS\/\fR
Epochs to train the model (only works with train)
.TP
\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
Output file (only works with predict)
.SH EXAMPLES
.IP
\f(CW$ ml train -e 150 -a 1e-4 housing.json\fR
.br
\f(CW$ ml predict housing.json -o predictions.json\fR
.SH AUTHOR
Written by vech
.SH COPYRIGHT
Copyright \(co 2023 jvech
.PP
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
|