aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjvech <jmvalenciae@unal.edu.co>2023-08-23 12:25:46 -0500
committerjvech <jmvalenciae@unal.edu.co>2023-08-23 12:25:46 -0500
commitca92314f00cb41c3d9d2976cfc819b359d53cda1 (patch)
tree7489a3b7c477809ed6db310a499d5545118efe10 /Makefile
parent23e665000e876f9ff8b521a060b0cdb7e58287cb (diff)
add: basic configuration parsing implemented
parameters implemented: - input_keys - label_keys - epochs - labels - weights_path Network weights and architecture loading is not implemented yet.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6434770..7be8d60 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC = clang
-CFLAGS = -std=c11 -Wall -g
+CFLAGS = -std=gnu11 -Wall -g
BIN = ml
OBJDIR = objs
SRC = $(wildcard src/*.c)
@@ -22,7 +22,7 @@ build: $(OBJS)
${CC} ${DLIBS} -o ${BIN} ${OBJS}
run: build
- ./${BIN}
+ ./${BIN} train -a 230 test.json -e 150
debug: build
gdb -x utils/commands.gdb --tui --args ${BIN} train -a 230 test.json -e 150
Feel free to download, copy and edit any repo