aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjvech <jmvalenciae@unal.edu.co>2023-10-18 22:14:52 -0500
committerjvech <jmvalenciae@unal.edu.co>2023-10-18 22:14:52 -0500
commit5e7240fbe867e1dd3008e737995cda45d63c5083 (patch)
treecb8ba6715ac4d029f201d235b3da9040cfbcc3d6 /README.md
parent7c75037ec80efc01fe842ccca05fec304bb49741 (diff)
doc: README added
Installation and uninstallation rules must be added on Makefile
Diffstat (limited to 'README.md')
-rw-r--r--README.md39
1 files changed, 38 insertions, 1 deletions
diff --git a/README.md b/README.md
index e11a0b9..9baa0ac 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,39 @@
-# A neural network built from scratch
+# ML
+A simple neural network maker developed to train json data
+
+## Requirements
+
+* [openblas](https://www.openblas.net)
+* [json-c](https://github.com/json-c/json-c)
+
+## Installation
+
+```
+git clone https://git.juanvalencia.xyz/ml
+cd ml
+sudo make install
+```
+
+## Uninstall
+
+```
+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)
+
+Examples:
+ $ ml train -e 150 -a 1e-4 housing.json
+ $ ml predict housing.json -o predictions.json
+```
Feel free to download, copy and edit any repo