diff options
author | jvech <jmvalenciae@unal.edu.co> | 2023-08-23 12:25:46 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2023-08-23 12:25:46 -0500 |
commit | ca92314f00cb41c3d9d2976cfc819b359d53cda1 (patch) | |
tree | 7489a3b7c477809ed6db310a499d5545118efe10 /Makefile | |
parent | 23e665000e876f9ff8b521a060b0cdb7e58287cb (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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |