From ca92314f00cb41c3d9d2976cfc819b359d53cda1 Mon Sep 17 00:00:00 2001 From: jvech Date: Wed, 23 Aug 2023 12:25:46 -0500 Subject: add: basic configuration parsing implemented parameters implemented: - input_keys - label_keys - epochs - labels - weights_path Network weights and architecture loading is not implemented yet. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3-70-g09d2